@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');

@import url('https://fonts.googleapis.com/css?family=Product+Sans');

/* purgecss start ignore */

.react-phone-number-input__row
{
  /* This is done to stretch the contents of this component */
  display     : flex;
  align-items : center;
}

.react-phone-number-input__phone
{
  /* The phone number input stretches to fill all empty space */
  flex : 1;
  /* The phone number input should shrink
	   to make room for the extension input */
  min-width : 0;
}

.react-phone-number-input__icon
{
  /* The flag icon size is 4x3 hence the exact `width` and `height` values */
  width      : calc(0.31em * 4);
  height     : calc(0.31em * 3);
  /* `1px` is still too much for a "retina" screen but there's no way in CSS to specify "hairline" border width. */
  border     : 1px solid rgba(0, 0, 0, 0.5);
  /* Makes sure `width`x`height` is exactly `4x3` and `border` width is not included in it */
  box-sizing : content-box;
}

.react-phone-number-input__icon--international
{
  /* The international icon size is square */
  /* and also has no border hence the `2 * 1px` `width` and `height` compensation */
  width  : calc(0.31em * 3 + 2 * 1px);
  height : calc(0.31em * 3 + 2 * 1px);
  /* The international icon size is square, hence the exact `padding` value */
  /* for precise alignment with `4x3` sized country flags. */
  padding-left  : calc(0.31em / 2);
  padding-right : calc(0.31em / 2);
  border : none;
}

.react-phone-number-input__error
{
  margin-left : calc(0.31em * 4 + 2 * 1px + 0.3em + 0.35em + 0.5em);
  margin-top  : calc(0.3rem);
  color       : #D30F00;
}

.react-phone-number-input__icon-image
{
  max-width  : 100%;
  max-height : 100%;
}

/* Removes `<input type="number"/>` up/down arrows in Webkit browsers. */

.react-phone-number-input__ext-input::-webkit-inner-spin-button,
.react-phone-number-input__ext-input::-webkit-outer-spin-button
{
  margin             : 0 !important;
  -webkit-appearance : none !important;
  -moz-appearance    : textfield !important;
}

.react-phone-number-input__ext-input
{
  width : 3em;
}

.react-phone-number-input__ext
{
  white-space: nowrap;
}

.react-phone-number-input__ext,
.react-phone-number-input__ext-input
{
  margin-left : 0.5em;
}

/* Styling native country `<select/>`. */

.react-phone-number-input__country--native
{
  position     : relative;
  align-self   : stretch;
  display      : flex;
  align-items  : center;
  margin-right : 0.5em;
}

.react-phone-number-input__country-select
{
  position : absolute;
  top      : 0;
  left     : 0;
  height   : 100%;
  width    : 100%;
  z-index  : 1;
  border   : 0;
  opacity  : 0;
  cursor   : pointer;
}

.react-phone-number-input__country-select-arrow
{
  display            : block;
  content            : '';
  width              : 0;
  height             : 0;
  margin-bottom      : 0.1em;
  margin-top         : 0.3em;
  margin-left        : 0.3em;
  border-width       : 0.35em 0.2em 0 0.2em;
  border-style       : solid;
  border-left-color  : transparent;
  border-right-color : transparent;
  color              : #B8BDC4;
  opacity            : 0.7;
  transition         : color 0.1s;
}

/* A "divider" `<option/>` for a native `<select/>`. */

.react-phone-number-input__country-select-divider
{
  font-size: 1px;
  background: black;
}

.react-phone-number-input__country-select:focus + .react-phone-number-input__country-select-arrow,
.react-phone-number-input__country.rrui__select--focus .rrui__select__arrow
{
  color : #03B2CB;
}

/* Styling phone number input */

.react-phone-number-input__input--style {
  height        : calc(0.3rem * 6);
  outline       : none;
  border-radius : 0;
  padding       : 0;
  -webkit-appearance    : none;
     -moz-appearance    : none;
          appearance    : none;
  border        : none;
  border-bottom : 1px solid #C5D2E0;
  transition    : border 0.1s;
  font-size     : inherit;
}

.react-phone-number-input__input--style:focus {
  border-color: #03B2CB;
}

.react-phone-number-input__input--style--disabled {
  cursor: default;
}

.react-phone-number-input__input--style--invalid,
.react-phone-number-input__input--style--invalid:focus {
  border-color: #EB2010;
}

/* Overrides Chrome autofill yellow background color */

.react-phone-number-input__input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

/* A small fix for `react-responsive-ui` */

.react-phone-number-input__country .rrui__select__button {
  border-bottom: none;
}

.rc-time-picker {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}

.rc-time-picker * {
  box-sizing: border-box;
}

.rc-time-picker-clear {
  position: absolute;
  right: 6px;
  cursor: pointer;
  overflow: hidden;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  top: 3px;
  margin: 0;
}

.rc-time-picker-clear-icon:after {
  content: "x";
  font-size: 12px;
  font-style: normal;
  color: #aaa;
  display: inline-block;
  line-height: 1;
  height: 20px;
  width: 20px;
  transition: color 0.3s ease;
}

.rc-time-picker-clear-icon:hover:after {
  color: #666;
}

.rc-time-picker-input {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 4px 7px;
  height: 28px;
  cursor: text;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.rc-time-picker-input[disabled] {
  color: #ccc;
  background: #f7f7f7;
  cursor: not-allowed;
}

.rc-time-picker-panel {
  z-index: 1070;
  width: 170px;
  position: absolute;
  box-sizing: border-box;
}

.rc-time-picker-panel * {
  box-sizing: border-box;
}

.rc-time-picker-panel-inner {
  display: inline-block;
  position: relative;
  outline: none;
  list-style: none;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
  line-height: 1.5;
}

.rc-time-picker-panel-narrow {
  max-width: 113px;
}

.rc-time-picker-panel-input {
  margin: 0;
  padding: 0;
  width: 100%;
  cursor: auto;
  line-height: 1.5;
  outline: 0;
  border: 1px solid transparent;
}

.rc-time-picker-panel-input-wrap {
  box-sizing: border-box;
  position: relative;
  padding: 6px;
  border-bottom: 1px solid #e9e9e9;
}

.rc-time-picker-panel-input-invalid {
  border-color: red;
}

.rc-time-picker-panel-select {
  float: left;
  font-size: 12px;
  border: 1px solid #e9e9e9;
  border-width: 0 1px;
  margin-left: -1px;
  box-sizing: border-box;
  width: 56px;
  max-height: 144px;
  overflow-y: auto;
  position: relative;
}

.rc-time-picker-panel-select-active {
  overflow-y: auto;
}

.rc-time-picker-panel-select:first-child {
  border-left: 0;
  margin-left: 0;
}

.rc-time-picker-panel-select:last-child {
  border-right: 0;
}

.rc-time-picker-panel-select ul {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}

.rc-time-picker-panel-select li {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  width: 100%;
  height: 24px;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rc-time-picker-panel-select li:hover {
  background: #edfaff;
}

li.rc-time-picker-panel-select-option-selected {
  background: #f7f7f7;
  font-weight: bold;
}

li.rc-time-picker-panel-select-option-disabled {
  color: #ccc;
}

li.rc-time-picker-panel-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}

html, body {
  height: 100%;
  font-family: 'Roboto', serif;
  overflow-x: hidden;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: none !important;
}

.-ml-06 {
  margin-left: -0.6rem;
}

.m-t-md {
  margin-top: 25px;
}

.m-b-md {
  margin-bottom: 25px;
}

.m-r-md {
  margin-right: 25px;
}

.flbx.col.v-middle {
  justify-content: center;
}

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

.flbx.flex-grow {
  flex-grow: 1;
}

.flbx.row.v-middle {
  align-items: center;
}

.flbx.v-middle {
  align-items: center;
  display: flex;
}

.flbx.row.h-middle {
  justify-content: center;
}

.flbx.col.h-middle {
  align-items: center;
}

.flbx.col.v-middle {
  justify-content: center;
}

.c-middle {
  align-content: center;
}

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

.full-height {
  height: 100%;
}

.min-full-height {
  min-height: 100%;
}

.full-width {
  width: 100%;
}

.space-around {
  align-content: space-around;
}

.row.space-around {
  justify-content: space-around;
}

.user-profile-icon:hover {
  opacity: 0.95;
}

.user-profile-icon {
  cursor: pointer;
}

.user-profile-icon img {
  border-radius: 4px;
  border-color: lightgray;
  border: 1px solid;
}

.user-profile-icon .profile-block {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.user-profile-icon .profile-name {
  padding-left: 10px;
  display: block;
}

.user-profile-icon .team-name {
  padding-left: 10px;
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  margin: 3px 10px 0;
  border: 4px solid;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.container:before, .container:after, .row.flbx:before, .row.flbx:after {
  content: none;
  display: none;
}

footer a {
  color: #767676;
  font: inherit !important;
  font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif !important;
  text-decoration: none;
  padding: 10px 0;
}

footer a:hover {
  text-decoration: underline;
}

footer li {
  list-style: none;
}

footer ul {
  padding: 10px 0;
}

footer {
  background: #fdfdfd;
  border-top: 1px solid #ededed;
  padding: 30px 0 0;
}

C footer h3 {
  font-weight: 700 !important;
  color: #484848 !important;
  margin: 0px !important;
  word-wrap: break-word !important;
  font-size: 15px !important;
  line-height: 18px !important;
  letter-spacing: 0.2px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

footer .links-row {
  width: 60%;
  padding: 10px 0;
}

.footer-links-wrap {
  position: relative;
  margin: 0 auto;
}

footer .copyright-row .container {
  padding: 10px 0;
  margin-bottom: 30px;
  text-align: center;
  color: #ccc;
}

.container.layout-padded {
  padding: 10px 70px;
}

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

.cron-builder {
  min-height: 200px;
  padding: 15px;
  width: 100%;
}

.cron-builder fieldset {
  border-color: #767676;
  border-style: solid;
  -webkit-margin-start: 2px;
  -webkit-margin-end: 2px;
  -webkit-padding-before: 0.35em;
  -webkit-padding-start: 0.75em;
  -webkit-padding-end: 0.75em;
  -webkit-padding-after: 0.625em;
  border-width: 2px;
}

.cron-builder legend {
  padding: 0 5px;
  border: 0;
}

.cron-builder .tab {
  height: 36px;
  border: 0;
  margin: .5px;
  padding: 5px 7px 5px 7px;
}

hr {
  margin-top: 5px;
  margin-bottom: 10px;
}

.title:hover {
  text-decoration: none;
}

.team-card .info-card {
  height: 239px;
}

.team-card .card {
  height: 240px;
}

.team-card .card .title {
  font-size: 30px;
  font-weight: 300;
}

.team-card .card.SLACK {
  background: url("/static/site/img/slack-connect.png");
}

.team-card .card.SLACK .title {
  color: #E7F2FA;
}

.team-card .card.EMAIL {
  background: url("/static/site/img/email-connect.png");
}

.team-card .card.EMAIL .title {
  color: #E7F2FA;
}

.team-card .card.MSTEAMS {
  background: url("/static/site/img/msteams-connect.png");
}

.team-card .card.MSTEAMS .title {
  color: #E7F2FA;
}

.team-card .card.SPARK {
  background: url("/static/site/img/spark-connect.png");
}

.team-card .card.SPARK .title {
  color: #E7F2FA;
}

.signup .controls div {
  width: 300px !important;
}

.signup .msg {
  padding: 5px;
  border-radius: 3px;
}

.heatmap-card {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.report-dashboard-viz .recharts-wrapper {
  margin: auto;
}

.report-card.report-border {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 17px;
}

.report-card > div {
  padding: 0;
}

.report-card > .col-md-7 {
  border-right: 1px solid #ccc;
}

.report-card > .col-md-5 {
  text-align: center;
  padding-left: 10px;
  padding-top: 5px;
}

.report-card > .col-md-5 div {
  margin: auto;
  padding-top: 15px;
}

.report-card > .col-md-5 small {
  font-size: 16px;
  font-weight: 300;
}

.report-card .sample.card:hover {
  box-shadow: rgba(33,150,243,0.56) 0px 1px 6px, #E0F7FA 0px 1px 4px !important;
  cursor: pointer;
  transform: scale(1.05);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.report-card .card:hover {
  box-shadow: rgba(33,150,243,0.56) 0px 1px 6px, #E0F7FA 0px 1px 4px !important;
  cursor: pointer;
}

.report-card .sample .icon svg {
  float: left;
  margin: 10px;
  border: 3px dashed #ccc;
  color: #37474F !important;
}

.report-card .content {
  padding: 10px;
}

.report-card .content p {
  color: #424242;
  font-size: 18px;
  margin-bottom: 2px;
}

.report-card .content .title {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 300;
}

.report-card .content small {
  color: #9E9E9E;
}

.report-card .settings {
  background-color: #ECEDED;
}

.report-card hr {
  border-top: 1px solid #ccc;
  margin-top: 2px;
  margin-bottom: 2px;
}

.report-card .schedule, .report-card .questions, .report-card .enabled {
  margin: 5px;
  color: #546E7A;
}

.report-card .schedule svg, .report-card .questions svg, .report-card .enabled svg {
  color: #37474F !important;
}

.report-card .schedule > div span, .report-card .questions > div span, .report-card .enabled > div span {
  padding-left: 5px;
}

.custom-report .header {
  width: 100%;
}

.custom-report .header input, .custom-report .header .name-field {
  color: #546E7A !important;
  font-size: 23px !important;
  margin-bottom: 10px;
  float: left;
  width: 50% !important;
}

.custom-report .header .btn {
  float: right;
}

.custom-report .members {
  width: 45%;
  margin-top: 30px;
}

.container h1 {
  color: #546E7A;
}

.help-content-block img {
  max-width: 900px;
}

.stripe .Checkout {
  margin: 0 auto;
  max-width: 800px;
  box-sizing: border-box;
  padding: 0 5px;
}

.stripe label {
  color: #6b7c93;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.stripe button {
  white-space: nowrap;
  border: 0;
  outline: 0;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background-color: #6772e5;
  text-decoration: none;
  transition: all 150ms ease;
  margin-top: 10px;
}

.stripe button:hover {
  color: #fff;
  cursor: pointer;
  background-color: #7795f8;
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50,50,93,0.1), 0 3px 6px rgba(0,0,0,0.08);
}

.stripe .StripeElement {
  display: block;
  margin: 10px 0 20px 0;
  width: 250px;
  padding: 10px 14px;
  box-shadow: rgba(50,50,93,0.14902) 0px 1px 3px, rgba(0,0,0,0.0196078) 0px 1px 0px;
  border-radius: 4px;
  background: white;
}

.stripe .StripeElement--focus {
  box-shadow: rgba(50,50,93,0.109804) 0px 4px 6px, rgba(0,0,0,0.0784314) 0px 1px 3px;
  transition: all 150ms ease;
}

.stripe .StripeElement--invalid {
  box-shadow: rgba(206,23,20,0.11) 0px 4px 6px, rgba(214,37,37,0.078) 0px 1px 3px;
  transition: all 150ms ease;
}

.stripe .StripeElement.PaymentRequestButton {
  padding: 0;
}

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

.trial-over p {
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 5px;
  margin: 0;
  background-color: #B5E6B6;
  color: #596275;
}

.UserAvatar {
  display: inline-block;
  color: white;
  font-weight: 400;
  font-size: 19px;
}

.UserAvatar--inner {
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.UserAvatar--light {
  color: gray;
}

.UserAvatar--light .UserAvatar--inner {
  border: 1px solid lightgray;
}

.classy-tooltip {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
}

.classy-tooltip.place-bottom:after {
  border-bottom-color: rgba(0,0,0,0.2) !important;
  border-bottom-style: solid !important;
  border-bottom-width: 6px !important;
}

.arrow-menu {
  bottom: 6px;
}

.arrow-menu .icon {
  border: 1px solid #dee1e3;
  padding: 0.25rem 0.5rem;
  border-radius: 0.2rem;
}

.arrow-menu-disabled {
  bottom: 6px;
  opacity: 0.5;
}

.arrow-menu-disabled .icon {
  border: 1px solid #dee1e3;
  padding: 0.25rem 0.5rem;
  border-radius: 0.2rem;
}

.switcher-container .title {
  position: relative;
  bottom: 8px;
  padding-left: 15px;
}

.switcher-container .date {
  bottom: 0;
  position: relative;
  padding-left: 0px;
}

.switcher-container .checkin {
  bottom: 0;
  position: relative;
  padding-left: 0px;
  margin: '0 10px';
}

.tag-container .status-name {
  text-align: center;
  overflow: hidden;
  line-height: 1.5em;
  text-overflow: ellipsis;
  height: 3em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 450;
  color: #7f8c8d;
}

.tag-container .status-date {
  text-align: center;
  overflow: hidden;
  line-height: 1.5em;
  text-overflow: ellipsis;
  height: 3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 450;
  color: #7f8c8d;
}

.user-photo {
  display: inline-block;
  line-height: 64px;
  border-radius: 100%;
  max-width: 64px;
  width: 64px;
  max-height: 64px;
  height: 64px;
  margin-bottom: 5px;
  vertical-align: bottom;
}

.user-photo:hover {
  box-shadow: rgba(33,150,243,0.56) 0px 1px 6px, #E0F7FA 0px 1px 3px !important;
  cursor: pointer;
  transform: scale(1.05);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.status-container {
  display: flex;
  flex-wrap: wrap;
}

.status-container.flex-override {
  display: block !important;
}

.status-container.flex-override .date {
  display: inline-block;
}

.status-container .status-entry .UserAvatar--inner:hover {
  box-shadow: rgba(33,150,243,0.56) 0px 1px 6px, #E0F7FA 0px 1px 3px !important;
  cursor: pointer;
  transform: scale(1.05);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.status-container .status-entry .date {
  padding-left: 15px;
}

.status-container .status-entry .date .text {
  bottom: 6px;
  font-size: 16px;
  padding-right: 10px;
  position: relative;
}

.status-container .status-entry .date .question-text {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 450;
}

.status-container .status-entry.border-bottom {
  border-bottom-color: rgba(0,0,0,0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.status-container .status-entry.compact-layout {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 100px;
}

.status-container .status-entry.compact-layout .status-avatar {
  width: 25%;
  text-align: center;
}

.status-container .status-entry.compact-layout .status-avatar .status-name {
  text-align: center;
  overflow: hidden;
  line-height: 1.5em;
  text-overflow: ellipsis;
  height: 3em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 450;
  color: #7f8c8d;
}

.status-container .status-entry.compact-layout .status-avatar .goal_icon {
  margin: 20px;
}

.status-container .status-entry.compact-layout .status-avatar .blocked_icon {
  margin: 20px;
}

.status-container .status-entry.large-layout {
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 100px;
}

.status-container .status-entry.large-layout .status-avatar {
  padding-left: 35px;
}

.status-container .status-entry.large-layout .status-avatar .goal_icon {
  margin: 20px;
}

.status-container .status-entry.large-layout .status-avatar .blocked_icon {
  margin: 20px;
}

.status-container .status-entry .question-layout {
  max-width: 100%;
  min-height: 80px;
  display: flex;
}

.status-container .status-entry .question-layout .status-avatar {
  padding-right: 35px;
}

.status-container .status-entry .question-layout .status-avatar .goal_icon {
  margin: 20px;
}

.status-container .status-entry .question-layout .status-avatar .blocked_icon {
  margin: 20px;
}

.status-container .status-entry .activity {
  border-top: 1px solid #dee1e3;
  margin-bottom: 20px;
}

.status-container .status-entry .activity > div {
  margin-top: 10px;
}

.status-container .status-entry .activity .panel-body p {
  margin-left: 5px;
}

.status-container .status-entry .activity p {
  margin: 0 0 3px;
}

.status-container .status-entry .activity .logo img {
  width: 20px;
  margin-right: 5px;
  vertical-align: text-bottom !important;
}

.status-container .status-entry .panel a:hover {
  text-decoration: none;
}

.status-container .status-entry .panel .panel-heading {
  cursor: pointer;
}

.status-container .status-entry .panel .panel-collapse {
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.status-container .status-entry .panel .panel-body {
  border: none !important;
}

.status-container .status-entry .panel h2 {
  margin-top: 5px !important;
}

.status-container .status-entry .status-card-body label {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 450;
  color: #7f8c8d;
}

.status-card-body-empty label {
  color: #7f8c8d;
}

.status-card-body-empty .status-empty-blocks {
  display: block;
  background-color: #dee1e3;
  height: 1.1rem;
}

.border-bottom {
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 100px;
  border-bottom-color: rgba(0,0,0,0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.setup .button {
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
}

.setup .label {
  font-size: 30px !important;
  font-weight: 330 !important;
  padding-left: 18px !important;
}

.setup .content {
  font-size: 17px;
  font-weight: 250;
}

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

.setup .header .text-1 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300;
}

.setup .header .team {
  color: #2196f3;
  margin-bottom: 20px;
}

.summary-dashboard .dashboard-link {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
}

.summary-dashboard .header {
  border-bottom-color: rgba(0,0,0,0.2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  font-size: 30px;
  font-weight: 300;
  margin-left: 15px;
}

.summary-dashboard .header .header-right-link {
  float: right;
  font-size: 18px;
  position: absolute;
  bottom: 3px;
  right: 15px;
}

.summary-dashboard .title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 300;
}

.summary-dashboard .title .small {
  line-height: 18px;
  vertical-align: middle;
  font-size: 20px;
  text-align: left;
  display: inline-block;
  font-weight: 300;
}

.summary-dashboard .chart-container .graph-stats-container {
  display: none;
}

.summary-dashboard .chart-container .graph-svg-tip {
  display: none;
}

.summary-dashboard .chart-container .frappe-chart {
  margin-top: 0px !important;
}

.summary-dashboard .chart-container .title {
  display: none;
}

.summary-dashboard .chart-container .sub-title {
  text-align: center;
  font-weight: 300;
  font-size: 21px;
}

.report-viz {
  padding-top: 30px;
}

.report-viz .chart-container .sub-title {
  text-align: center;
  font-weight: 300;
  font-size: 28px;
}

.report-viz .title {
  margin-bottom: 0px !important;
  font-size: 28px !important;
  font-weight: 300 !important;
}

.current-plan, .upgrade-plan {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.current-plan .header, .upgrade-plan .header {
  color: #2196f3;
  margin-bottom: 20px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .25em;
}

.current-plan .text-block, .upgrade-plan .text-block {
  display: block;
}

.current-plan .text-1, .upgrade-plan .text-1 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 300;
}

.current-plan .text-1 .small, .upgrade-plan .text-1 .small {
  line-height: 18px;
  vertical-align: middle;
  font-size: 20px;
  text-align: left;
  display: inline-block;
  font-weight: 300;
}

.current-plan .text-2, .current-plan .text-3, .upgrade-plan .text-2, .upgrade-plan .text-3 {
  font-size: 20px;
  font-weight: 300;
}

.current-plan .text-4, .upgrade-plan .text-4 {
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center;
}

.current-plan .form-text, .upgrade-plan .form-text {
  position: relative;
  width: 200px;
  margin: auto;
}

.current-plan .static-value, .upgrade-plan .static-value {
  position: absolute;
  right: 40px;
  font-size: 16px;
  color: #606f7b;
  top: 8px;
}

.current-plan .count-field, .upgrade-plan .count-field {
  width: 160px;
  color: #606f7b;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  padding-left: .75rem;
  padding-right: .75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  line-height: 1.25;
  border-width: 1px;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: visible;
  margin: auto;
  border: 0 solid #dae1e7;
  font-size: 20px;
  outline: 0;
}

.current-plan .plans, .upgrade-plan .plans {
  margin: auto;
  width: 500px !important;
  margin-bottom: 30px;
  margin-top: 10px;
}

.breakdown-header {
  color: #2196f3;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .25em;
  text-align: center;
}

.refer-box {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.refer-box .header {
  color: #2196f3;
  margin-bottom: 5px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .25em;
}

.refer-box .small {
  margin-top: 3px;
  font-size: 16px;
  text-align: center;
  color: #9f9d9d;
}

.refer-box .text-1 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 300;
}

.refer-box .text-1 .small {
  line-height: 18px;
  vertical-align: middle;
  font-size: 20px;
  text-align: left;
  display: inline-block;
  font-weight: 300;
}

.refer-box .text-2, .refer-box .text-3 {
  font-size: 20px;
  font-weight: 300;
}

.refer-box .plans {
  width: 200px !important;
  margin-bottom: 20px;
  margin-left: 20px;
}

.trial-usage-bar {
  width: 35px;
  transform: rotate(-90deg);
  float: left;
  border: 1px solid #546e79;
  background: #b9dcfc;
  border-radius: 0;
  height: 22px;
  margin-bottom: 3px;
  margin-left: -1px;
  margin-top: 6px;
}

.trial-usage-bar .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #9f9d9d;
  text-align: center;
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: width .6s ease;
}

.upgrade-button {
  padding: 5px;
  border-radius: 3px;
  margin-right: 10px;
  border: 1px solid #b9dcfc;
  color: #b9dcfc;
}

.upgrade-button:hover {
  border: 1px solid #E0F7FA;
  background: #E0F7FA;
  text-decoration: none;
}

.checkin-button {
  padding: 6px;
  border-radius: 3px;
  margin: 0 10px;
  border: 1px solid #596275;
  text-decoration: none;
  color: #596275;
  top: 10px;
  position: relative;
  text-transform: uppercase;
}

.checkin-button:hover {
  border: 1px solid #10669C;
  text-decoration: none;
  background-color: #E7F2FA;
}

.tooltip div > span {
  white-space: 'pre-wrap' !important;
}

.ql-container {
  min-height: 6em;
  border-bottom-left-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
  background: #F7FAFC;
}

.ql-toolbar {
  background: #F7FAFC;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  border-bottom: none;
}

.rc-time-picker .rc-time-picker-input {
  height: 38px;
  width: 110px;
  font-size: 22px;
}

.rc-time-picker-panel-inner {
  font-size: 22px !important;
}

.schedule-days-selector button {
  border-color: #7f8c8d;
  color: #7f8c8d;
  margin: 0;
  margin-bottom: 0.25rem;
  margin-right: 0.7rem;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-left: 0;
  padding-right: 0;
  width: 12%;
  box-shadow: none;
  -webkit-appearance: button;
  padding: 0.375rem 0.75rem;
  font-size: 22px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.schedule-days-selector button:focus {
  outline: 0;
}

.schedule-days-selector button.active {
  background: #2196f3 linear-gradient(180deg,#188AF3,#2196f3) repeat-x;
  border-color: #2196f3;
  color: white;
}

.table-center .table-center-reset {
  text-align: left !important;
}

.table-center th {
  text-align: center !important;
}

.table-center td {
  text-align: center !important;
}

.display-entry h1 {
  color: #333;
  font-size: 18px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.display-entry h2 {
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.display-entry h3 {
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.display-entry blockquote {
  font-size: 14px;
  margin-bottom: 0;
}

.display-entry code, .display-entry pre {
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 3px;
  background-color: #f3f7fd;
  border: 1px dashed #c9d0da;
}

.display-entry.SLACK img {
  width: 75%;
  border: 1px solid #F1F5F8;
  border-radius: 3px;
}

.display-entry.SLACK p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.display-entry.SLACK p img + a {
  display: block;
  font-size: 0.75rem;
}

.display-entry.SLACK p .attachment {
  display: flex;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-top: .25rem;
  margin-bottom: .25rem;
  border-radius: .25rem;
  background-color: #f1f5f8;
}

.display-entry.SLACK ul {
  padding: 0;
}

.display-entry.SLACK ul > li:before {
  content: "- ";
}

.display-entry.SLACK li {
  list-style: none;
  padding: 0;
}

.display-entry.SLACK.smaller-images img {
  width: 50%;
  border: 1px solid #F1F5F8;
  border-radius: 3px;
}

.schedule-button {
  border-color: #7f8c8d;
  color: #7f8c8d;
  margin-right: 0.6rem;
  font-weight: 700;
  width: 2.7rem;
  font-size: 1.07rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0.45rem 0.5rem;
  letter-spacing: -0.05em;
  line-height: 1.5;
  cursor: pointer;
  border-width: 1px;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.schedule-button:hover {
  text-decoration: none;
}

.schedule-button.active {
  background: #2196f3 linear-gradient(180deg,#188AF3,#2196f3) repeat-x;
  border-color: #2196f3;
  color: white;
}

.schedule-button-long {
  border-color: #7f8c8d;
  color: #7f8c8d;
  margin-right: 0.6rem;
  font-weight: 700;
  width: 6rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0.45rem 0.5rem;
  letter-spacing: -0.05em;
  line-height: 1.5;
  cursor: pointer;
  border-width: 1px;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.schedule-button-long:hover {
  text-decoration: none;
}

.schedule-button-long.active {
  background: #2196f3 linear-gradient(180deg,#188AF3,#2196f3) repeat-x;
  border-color: #2196f3;
  color: white;
}

.parent:hover .parent-hover\:text-red-500 {
  color: #be1919;
}

.shadow-outline-green {
  box-shadow: 0 0 0 3px rgba(5,202,160,0.8) !important;
}

.react-phone-number-input__row {
  line-height: 0;
}

.react-phone-number-input__icon--international {
  width: 1.054em;
  height: 1.054em;
}

.emoji-mart,
.emoji-mart * {
  box-sizing: border-box;
  line-height: 1.15;
}

.emoji-mart {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 16px;
  display: inline-block;
  color: #222427;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
}

.emoji-mart .emoji-mart-emoji {
  padding: 6px;
}

.emoji-mart-bar {
  border: 0 solid #d9d9d9;
}

.emoji-mart-bar:first-child {
  border-bottom-width: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.emoji-mart-bar:last-child {
  border-top-width: 1px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.emoji-mart-anchors {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 6px;
  line-height: 0;
}

.emoji-mart-anchor {
  position: relative;
  display: block;
  flex: 1 1 auto;
  color: #858585;
  text-align: center;
  padding: 12px 4px;
  overflow: hidden;
  transition: color .1s ease-out;
  margin: 0;
  box-shadow: none;
  background: none;
  border: none;
}

.emoji-mart-anchor:focus { outline: 0
}

.emoji-mart-anchor:hover,
.emoji-mart-anchor:focus,
.emoji-mart-anchor-selected {
  color: #464646;
}

.emoji-mart-anchor-selected .emoji-mart-anchor-bar {
  bottom: 0;
}

.emoji-mart-anchor-bar {
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background-color: #464646;
}

.emoji-mart-anchors i {
  display: inline-block;
  width: 100%;
  max-width: 22px;
}

.emoji-mart-anchors svg,
.emoji-mart-anchors img {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.emoji-mart-scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 270px;
  padding: 0 6px 6px 6px;
  will-change: transform; /* avoids "repaints on scroll" in mobile Chrome */
}

.emoji-mart-search {
  margin-top: 6px;
  padding: 0 6px;
  position: relative;
}

.emoji-mart-search input {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 5px 25px 6px 10px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  outline: 0;
}

.emoji-mart-search input,
.emoji-mart-search input::-webkit-search-decoration,
.emoji-mart-search input::-webkit-search-cancel-button,
.emoji-mart-search input::-webkit-search-results-button,
.emoji-mart-search input::-webkit-search-results-decoration {
  /* remove webkit/blink styles for <input type="search">
   * via https://stackoverflow.com/a/9422689 */
  -webkit-appearance: none;
}

.emoji-mart-search-icon {
  position: absolute;
  top: 7px;
  right: 11px;
  z-index: 2;
  padding: 2px 5px 1px;
  border: none;
  background: none;
}

.emoji-mart-category .emoji-mart-emoji span {
  z-index: 1;
  position: relative;
  text-align: center;
  cursor: default;
}

.emoji-mart-category .emoji-mart-emoji:hover:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #f4f4f4;
  border-radius: 100%;
}

.emoji-mart-category-label {
  z-index: 2;
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.emoji-mart-category-label span {
  display: block;
  width: 100%;
  font-weight: 500;
  padding: 5px 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .95);
}

.emoji-mart-category-list {
  margin: 0;
  padding: 0;
}

.emoji-mart-category-list li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.emoji-mart-emoji {
  position: relative;
  display: inline-block;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.emoji-mart-emoji-native {
  font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "Android Emoji";
}

.emoji-mart-no-results {
  font-size: 14px;
  text-align: center;
  padding-top: 70px;
  color: #858585;
}

.emoji-mart-no-results-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.emoji-mart-no-results .emoji-mart-category-label {
  display: none;
}

.emoji-mart-no-results .emoji-mart-no-results-label {
  margin-top: .2em;
}

.emoji-mart-no-results .emoji-mart-emoji:hover:before {
  content: none;
}

.emoji-mart-preview {
  position: relative;
  height: 70px;
}

.emoji-mart-preview-emoji,
.emoji-mart-preview-data,
.emoji-mart-preview-skins {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.emoji-mart-preview-emoji {
  left: 12px;
}

.emoji-mart-preview-data {
  left: 68px; right: 12px;
  word-break: break-all;
}

.emoji-mart-preview-skins {
  right: 30px;
  text-align: right;
}

.emoji-mart-preview-skins.custom {
  right: 10px;
  text-align: right;
}

.emoji-mart-preview-name {
  font-size: 14px;
}

.emoji-mart-preview-shortname {
  font-size: 12px;
  color: #888;
}

.emoji-mart-preview-shortname + .emoji-mart-preview-shortname,
.emoji-mart-preview-shortname + .emoji-mart-preview-emoticon,
.emoji-mart-preview-emoticon + .emoji-mart-preview-emoticon {
  margin-left: .5em;
}

.emoji-mart-preview-emoticon {
  font-size: 11px;
  color: #bbb;
}

.emoji-mart-title span {
  display: inline-block;
  vertical-align: middle;
}

.emoji-mart-title .emoji-mart-emoji {
  padding: 0;
}

.emoji-mart-title-label {
  color: #999A9C;
  font-size: 26px;
  font-weight: 300;
}

.emoji-mart-skin-swatches {
  font-size: 0;
  padding: 2px 0;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background-color: #fff;
}

.emoji-mart-skin-swatches.custom {
  font-size: 0;
  border: none;
  background-color: #fff;
}

.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch {
  width: 16px;
  padding: 0 2px;
}

.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch.selected:after {
  opacity: .75;
}

.emoji-mart-skin-swatch {
  display: inline-block;
  width: 0;
  vertical-align: middle;
  transition-property: width, padding;
  transition-duration: .125s;
  transition-timing-function: ease-out;
}

.emoji-mart-skin-swatch:nth-child(1) { transition-delay: 0s
}

.emoji-mart-skin-swatch:nth-child(2) { transition-delay: .03s
}

.emoji-mart-skin-swatch:nth-child(3) { transition-delay: .06s
}

.emoji-mart-skin-swatch:nth-child(4) { transition-delay: .09s
}

.emoji-mart-skin-swatch:nth-child(5) { transition-delay: .12s
}

.emoji-mart-skin-swatch:nth-child(6) { transition-delay: .15s
}

.emoji-mart-skin-swatch.selected {
  position: relative;
  width: 16px;
  padding: 0 2px;
}

.emoji-mart-skin-swatch.selected:after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  background-color: #fff;
  border-radius: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease-out;
}

.emoji-mart-skin-swatch.custom {
  display: inline-block;
  width: 0;
  height: 38px;
  overflow: hidden;
  vertical-align: middle;
  transition-property: width, height;
  transition-duration: .125s;
  transition-timing-function: ease-out;
  cursor: default;
}

.emoji-mart-skin-swatch.custom.selected {
  position: relative;
  width: 36px;
  height: 38px;
  padding: 0 2px 0 0;
}

.emoji-mart-skin-swatch.custom.selected:after {
  content: "";
  width: 0;
  height: 0;
}

.emoji-mart-skin-swatches.custom .emoji-mart-skin-swatch.custom:hover {
  background-color: #f4f4f4;
  border-radius: 10%;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom {
  width: 36px;
  height: 38px;
  padding: 0 2px 0 0;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom.selected:after {
  opacity: .75;
}

.emoji-mart-skin-text.opened {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  color: #888;
  font-size: 11px;
  padding: 5px 2px;
  width: 95px;
  height: 40px;
  border-radius: 10%;
  background-color: #fff;
}

.emoji-mart-skin {
  display: inline-block;
  width: 100%;
  padding-top: 100%;
  max-width: 12px;
  border-radius: 100%;
}

.emoji-mart-skin-tone-1 { background-color: #ffc93a
}

.emoji-mart-skin-tone-2 { background-color: #fadcbc
}

.emoji-mart-skin-tone-3 { background-color: #e0bb95
}

.emoji-mart-skin-tone-4 { background-color: #bf8f68
}

.emoji-mart-skin-tone-5 { background-color: #9b643d
}

.emoji-mart-skin-tone-6 { background-color: #594539
}

/* For screenreaders only, via https://stackoverflow.com/a/19758620 */

.emoji-mart-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*
 * Dark mode styles
 */

.emoji-mart-dark {
  color: #fff;
  border-color: #555453;
  background-color: #222;
}

.emoji-mart-dark .emoji-mart-bar {
  border-color: #555453;
}

.emoji-mart-dark .emoji-mart-search input {
  color: #fff;
  border-color: #555453;
  background-color: #2f2f2f;
}

.emoji-mart-dark .emoji-mart-search-icon svg {
  fill: #fff;
}

.emoji-mart-dark .emoji-mart-category .emoji-mart-emoji:hover:before {
  background-color: #444;
}

.emoji-mart-dark .emoji-mart-category-label span {
  background-color: #222;
  color: #fff;
}

.emoji-mart-dark .emoji-mart-skin-swatches {
  border-color: #555453;
  background-color: #222;
}

.emoji-mart-dark .emoji-mart-anchor:hover,
.emoji-mart-dark .emoji-mart-anchor:focus,
.emoji-mart-dark .emoji-mart-anchor-selected {
  color: #bfbfbf;
}

/**
 * Draft v0.10.5
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */

.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{
  height:inherit;
  text-align:initial
}

.public-DraftEditor-content[contenteditable=true]{
  -webkit-user-modify:read-write-plaintext-only
}

.DraftEditor-root{
  position:relative
}

.DraftEditor-editorContainer{
  background-color:rgba(255,255,255,0);
  border-left:.1px solid transparent;
  position:relative;
  z-index:1
}

.public-DraftEditor-block{
  position:relative
}

.DraftEditor-alignLeft .public-DraftStyleDefault-block{
  text-align:left
}

.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{
  left:0;
  text-align:left
}

.DraftEditor-alignCenter .public-DraftStyleDefault-block{
  text-align:center
}

.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{
  margin:0 auto;
  text-align:center;
  width:100%
}

.DraftEditor-alignRight .public-DraftStyleDefault-block{
  text-align:right
}

.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{
  right:0;
  text-align:right
}

.public-DraftEditorPlaceholder-root{
  color:#9197a3;
  position:absolute;
  z-index:1
}

.public-DraftEditorPlaceholder-hasFocus{
  color:#bdc1c9
}

.DraftEditorPlaceholder-hidden{
  display:none
}

.public-DraftStyleDefault-block{
  position:relative;
  white-space:pre-wrap
}

.public-DraftStyleDefault-ltr{
  direction:ltr;
  text-align:left
}

.public-DraftStyleDefault-rtl{
  direction:rtl;
  text-align:right
}

.public-DraftStyleDefault-listLTR{
  direction:ltr
}

.public-DraftStyleDefault-listRTL{
  direction:rtl
}

.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{
  margin:16px 0;
  padding:0
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{
  margin-left:1.5em
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{
  margin-right:1.5em
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{
  margin-left:3em
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{
  margin-right:3em
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{
  margin-left:4.5em
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{
  margin-right:4.5em
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{
  margin-left:6em
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{
  margin-right:6em
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{
  margin-left:7.5em
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{
  margin-right:7.5em
}

.public-DraftStyleDefault-unorderedListItem{
  list-style-type:square;
  position:relative
}

.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{
  list-style-type:disc
}

.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{
  list-style-type:circle
}

.public-DraftStyleDefault-orderedListItem{
  list-style-type:none;
  position:relative
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{
  left:-36px;
  position:absolute;
  text-align:right;
  width:30px
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{
  position:absolute;
  right:-36px;
  text-align:left;
  width:30px
}

.public-DraftStyleDefault-orderedListItem:before{
  content:counter(ol0) ". ";
  counter-increment:ol0
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{
  content:counter(ol1) ". ";
  counter-increment:ol1
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{
  content:counter(ol2) ". ";
  counter-increment:ol2
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{
  content:counter(ol3) ". ";
  counter-increment:ol3
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{
  content:counter(ol4) ". ";
  counter-increment:ol4
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{
  counter-reset:ol0
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{
  counter-reset:ol1
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{
  counter-reset:ol2
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{
  counter-reset:ol3
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{
  counter-reset:ol4
}

.Draftail-Icon {
  fill: currentColor;
  pointer-events: none;
  vertical-align: middle;
}

.Draftail-Editor {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.Draftail-Editor--hide-placeholder .public-DraftEditorPlaceholder-root {
  display: none;
}

/* .Draftail-Editor--readonly {
    pointer-events: none;
  }
  .Draftail-Editor--readonly .DraftEditor-editorContainer {
    opacity: 0.5;
  }
  .Draftail-Editor--readonly .DraftEditor-editorContainer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
  } */

/* .Draftail-Editor .DraftEditor-root {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    font-family: sans-serif;
    -webkit-font-variant-ligatures: none;
            font-variant-ligatures: none;
    overflow: auto;
  } */

.Draftail-Editor .public-DraftEditor-content,
  .Draftail-Editor .public-DraftEditorPlaceholder-root {
  padding: 0.75rem;
}

.Draftail-Editor .public-DraftEditor-content > * > figure {
  margin: 0;
}

.Draftail-Editor .public-DraftEditorPlaceholder-inner {
  color: #525760;
}

.Draftail-block--unstyled,
  .Draftail-Editor .public-DraftEditorPlaceholder-inner {
  margin: 0.1rem 0;
}

.Draftail-Toolbar {
  position: relative;
  padding: 0.25rem;
  background-color: #333;
  color: #fff;
  border-radius: 0;
  border-bottom: 1px solid #333;
}

.Draftail-Editor--focus .Draftail-Toolbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 4;
}

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

.Draftail-ToolbarGroup + .Draftail-ToolbarGroup::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2rem;
  vertical-align: text-top;
  margin: 0 0.25rem;
  background-color:#666;
}

.Draftail-Editor--readonly .Draftail-ToolbarGroup {
  opacity: 0.5;
}

.Draftail-ToolbarButton {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.375rem;
  background: transparent;
  color: inherit;
  border: 1px solid transparent;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Draftail-ToolbarButton--active {
  background-color:rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}

.Draftail-ToolbarButton__label {
  display: inline-block;
  vertical-align: top;
  height: 1rem;
}

button[data-draftail-balloon] {
  overflow: visible;
}

[data-draftail-balloon] {
  position: relative;
  cursor: pointer;
}

[data-draftail-balloon]::before, [data-draftail-balloon]::after {
  position: absolute;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

[data-draftail-balloon]::before {
  content: "";
}

[data-draftail-balloon]::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  padding: 0.5em 1em;
  white-space: pre;
  font-size: 0.875em;
}

[data-draftail-balloon]:hover::before, [data-draftail-balloon]:hover::after {
  opacity: 1;
  transition: all 0.1s ease-out 1s;
}

[data-draftail-balloon]::after {
  left: 50%;
  margin-top: 7px;
  top: 100%;
  transform: translate(-50%, -10px);
}

[data-draftail-balloon]::before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 1px;
  top: 100%;
  transform: translate(-50%, -10px);
}

[data-draftail-balloon]:hover::after {
  transform: translate(-50%, 0);
}

[data-draftail-balloon]:hover::before {
  transform: translate(-50%, 0);
}

.Draftail-DividerBlock {
  border: 0;
  background: #ddd;
  height: 1px;
  margin: 10px 0;
}

.LinkSource {
  padding: 1rem;
}

.form-field + .form-field {
  margin-top: 1rem;
}

.form-field + button {
  margin-top: 0.25rem;
  padding: 0.3rem;
  border-radius: 3px;
  border: 1px solid currentColor;
}

.form-field__label {
  display: block;
  margin-bottom: 1rem;
}

.form-field {
  display: block;
  cursor: pointer;
}

.portal .form-field input {
  width: 100%;
  padding: 0.75rem;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid currentColor;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.modal {
  position: absolute;
  left: 50%;
  top: 25vh;
  min-width: 320px;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 31;
  background-color: #fff;
  -webkit-animation: modal-in 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s backwards;
          animation: modal-in 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s backwards;
}

.modal--exit {
  -webkit-animation: modal-out 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s forwards;
          animation: modal-out 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s forwards;
}

.modal--exit .modal__content {
  -webkit-animation: affordance-out 0.2s ease-in 0s forwards;
          animation: affordance-out 0.2s ease-in 0s forwards;
}

.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30;
  cursor: pointer;
}

@-webkit-keyframes modal-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes modal-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes modal-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes modal-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes affordance-in {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes affordance-in {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes affordance-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(5%);
  }
}

@keyframes affordance-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(5%);
  }
}

.Tooltip {
  position: absolute;
  padding: 0.625rem;
  background-color: #333;
  color: #fff;
  z-index: 2;
  border-radius: 5px;
}

.Tooltip::before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
}

.Tooltip--top {
  margin-top: 25px;
  transform: translateX(-50%);
}

.Tooltip--top::before {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #333;
}

.Tooltip--left {
  margin-left: 25px;
  transform: translateY(-50%);
}

.Tooltip--left::before {
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-right-color: #333;
}

.Tooltip--top-left {
  margin-top: 25px;
}

.Tooltip--top-left::before {
  bottom: 100%;
  left: 25px;
  border-bottom-color: #333;
}

.Tooltip__link {
  margin-right: 1rem;
  display: inline-block;
  color: #fff;
}

.Tooltip__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #808080;
  color: #fff;
  padding: 0.5rem 0.25rem;
  border: 0;
  border-radius: 1px;
  cursor: pointer;
}

.Tooltip__button + .Tooltip__button {
  margin-left: 0.5rem;
}

.Draftail-block--action-list-item [type="checkbox"] {
  cursor: pointer;
  z-index: 1;
}

.Draftail-block--action-list-item .public-DraftStyleDefault-block {
  margin-left: 0.5rem !important;
  font-size: 1rem !important
}

.Draftail-Editor--readonly .Draftail-block--action-list-item {
  pointer-events: none !important;
  outline: 0 !important;
  cursor: text !important;
}

.docs-ui-theming .Draftail-Toolbar,
.docs-custom-toolbars .Draftail-Toolbar--bottom {
  border: 0;
  background: transparent;
  color: #6b7280;
}

.docs-ui-theming  .Draftail-ToolbarButton--active {
  color: #000;
}

/*! 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.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* 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;
}

/**
 * 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.
 */

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

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

button {
  background-color: transparent;
  background-image: none;
}

/**
 * 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 user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) 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: 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"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 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 {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #d2d6dc; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * 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: #a0aec0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a0aec0;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

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

body {
  color: #4b5563;
}

a {
  color: #1c64f2;
}

.display-entry ul {
  padding-top     : 0.25rem;
  padding-bottom     : 0.25rem;
  margin-left     : 1rem;
  list-style-type     : disc;
}

.display-entry ol {
  padding-top     : 0.25rem;
  padding-bottom     : 0.25rem;
  margin-left     : 1rem;
  list-style-type     : decimal;
}

.multi-select__placeholder {
  --text-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  font-size     : 0.875rem !important
}

.Draftail-block--header-one {
  font-size     : 1.5rem;
  --text-opacity     : 1;
  color     : #374151;
  color     : rgba(55, 65, 81, var(--text-opacity));
}

.Draftail-block--header-two {
  font-size     : 1.25rem;
  --text-opacity     : 1;
  color     : #374151;
  color     : rgba(55, 65, 81, var(--text-opacity));
}

.Draftail-block--header-three {
  font-size     : 1.125rem;
  --text-opacity     : 1;
  color     : #374151;
  color     : rgba(55, 65, 81, var(--text-opacity));
}

.Draftail-Editor .DraftEditor-root {
  color: #4b5563;
  font-size     : 1.125rem;
  line-height: 1.5;
  font-family     : 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-variant-ligatures: none;
  overflow: auto;
}

.previous-response .Draftail-Editor--readonly {
  border: 0 !important;
}

.previous-response .Draftail-Editor--readonly .public-DraftEditor-content {
  padding: 0 !important;
}

.previous-response .Draftail-Editor--readonly .DraftEditor-editorContainer {
  opacity: 1;
}

/* .previous-response .Draftail-Editor--readonly .DraftEditor-editorContainer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
}  */

.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{
  margin: 4px 0 !important;
  padding:0
}

.container{
  width     : 100%;
}

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

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

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

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

.group:hover .group-hover\:container{
  width     : 100%;
}

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

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

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

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

.hover\:container:hover{
  width     : 100%;
}

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

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

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

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

.focus\:container:focus{
  width     : 100%;
}

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

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

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

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

.form-input{
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
  border-radius     : 0.375rem;
  padding-top     : 0.5rem;
  padding-right     : 0.75rem;
  padding-bottom     : 0.5rem;
  padding-left     : 0.75rem;
  font-size     : 1rem;
  line-height     : 1.5;
}

.form-input::-moz-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-input:-ms-input-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-input::-ms-input-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-input::placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-input:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-textarea{
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
  border-radius     : 0.375rem;
  padding-top     : 0.5rem;
  padding-right     : 0.75rem;
  padding-bottom     : 0.5rem;
  padding-left     : 0.75rem;
  font-size     : 1rem;
  line-height     : 1.5;
}

.form-textarea::-moz-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-textarea:-ms-input-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-textarea::-ms-input-placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-textarea::placeholder{
  color     : #9fa6b2;
  opacity     : 1;
}

.form-textarea:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-multiselect{
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
  border-radius     : 0.375rem;
  padding-top     : 0.5rem;
  padding-right     : 0.75rem;
  padding-bottom     : 0.5rem;
  padding-left     : 0.75rem;
  font-size     : 1rem;
  line-height     : 1.5;
}

.form-multiselect:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-select{
  background-image     : url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  -webkit-print-color-adjust     : exact;
          color-adjust     : exact;
  background-repeat     : no-repeat;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
  border-radius     : 0.375rem;
  padding-top     : 0.5rem;
  padding-right     : 2.5rem;
  padding-bottom     : 0.5rem;
  padding-left     : 0.75rem;
  font-size     : 1rem;
  line-height     : 1.5;
  background-position     : right 0.5rem center;
  background-size     : 1.5em 1.5em;
}

.form-select::-ms-expand{
  color     : #9fa6b2;
  border     : none;
}

@media not print{
  .form-select::-ms-expand{
    display     : none;
  }
}

@media print and (-ms-high-contrast: active), print and (-ms-high-contrast: none){
  .form-select{
    padding-right     : 0.75rem;
  }
}

.form-select:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-checkbox:checked{
  background-image     : url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");
  border-color     : transparent;
  background-color     : currentColor;
  background-size     : 100% 100%;
  background-position     : center;
  background-repeat     : no-repeat;
}

@media not print{
  .form-checkbox::-ms-check{
    border-width     : 1px;
    color     : transparent;
    background     : inherit;
    border-color     : inherit;
    border-radius     : inherit;
  }
}

.form-checkbox{
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  -webkit-print-color-adjust     : exact;
          color-adjust     : exact;
  display     : inline-block;
  vertical-align     : middle;
  background-origin     : border-box;
  -webkit-user-select     : none;
     -moz-user-select     : none;
      -ms-user-select     : none;
          user-select     : none;
  flex-shrink     : 0;
  height     : 1rem;
  width     : 1rem;
  color     : #3f83f8;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
  border-radius     : 0.25rem;
}

.form-checkbox:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-checkbox:checked:focus{
  border-color     : transparent;
}

.form-radio:checked{
  background-image     : url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  border-color     : transparent;
  background-color     : currentColor;
  background-size     : 100% 100%;
  background-position     : center;
  background-repeat     : no-repeat;
}

@media not print{
  .form-radio::-ms-check{
    border-width     : 1px;
    color     : transparent;
    background     : inherit;
    border-color     : inherit;
    border-radius     : inherit;
  }
}

.form-radio{
  -webkit-appearance     : none;
     -moz-appearance     : none;
          appearance     : none;
  -webkit-print-color-adjust     : exact;
          color-adjust     : exact;
  display     : inline-block;
  vertical-align     : middle;
  background-origin     : border-box;
  -webkit-user-select     : none;
     -moz-user-select     : none;
      -ms-user-select     : none;
          user-select     : none;
  flex-shrink     : 0;
  border-radius     : 100%;
  height     : 1rem;
  width     : 1rem;
  color     : #3f83f8;
  background-color     : #ffffff;
  border-color     : #d2d6dc;
  border-width     : 1px;
}

.form-radio:focus{
  outline     : none;
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45);
  border-color     : #a4cafe;
}

.form-radio:checked:focus{
  border-color     : transparent;
}

.prose{
  color     : #374151;
  max-width     : 65ch;
}

.prose [class~="lead"]{
  color     : #4b5563;
  font-size     : 1.25em;
  line-height     : 1.6;
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.prose a{
  color     : #5850ec;
  text-decoration     : none;
  font-weight     : 600;
}

.prose strong{
  color     : #161e2e;
  font-weight     : 600;
}

.prose ol{
  counter-reset     : list-counter;
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.prose ol > li{
  position     : relative;
  counter-increment     : list-counter;
  padding-left     : 1.75em;
}

.prose ol > li::before{
  content     : counter(list-counter) ".";
  position     : absolute;
  font-weight     : 400;
  color     : #6b7280;
}

.prose ul > li{
  position     : relative;
  padding-left     : 1.75em;
}

.prose ul > li::before{
  content     : "";
  position     : absolute;
  background-color     : #d2d6dc;
  border-radius     : 50%;
  width     : 0.375em;
  height     : 0.375em;
  top     : calc(0.875em - 0.1875em);
  left     : 0.25em;
}

.prose hr{
  border-color     : #e5e7eb;
  border-top-width     : 1px;
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.prose blockquote{
  font-weight     : 500;
  font-style     : italic;
  color     : #161e2e;
  border-left-width     : 0.25rem;
  border-left-color     : #e5e7eb;
  quotes     : "\201C""\201D""\2018""\2019";
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1em;
}

.prose blockquote p:first-of-type::before{
  content     : open-quote;
}

.prose blockquote p:last-of-type::after{
  content     : close-quote;
}

.prose h1{
  color     : #1a202c;
  font-weight     : 800;
  font-size     : 2.25em;
  margin-top     : 0;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.prose h2{
  color     : #1a202c;
  font-weight     : 700;
  font-size     : 1.5em;
  margin-top     : 2em;
  margin-bottom     : 1em;
  line-height     : 1.3333333;
}

.prose h3{
  color     : #1a202c;
  font-weight     : 600;
  font-size     : 1.25em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.prose h4{
  color     : #1a202c;
  font-weight     : 600;
  margin-top     : 1.5em;
  margin-bottom     : 0.5em;
  line-height     : 1.5;
}

.prose figure figcaption{
  color     : #6b7280;
  font-size     : 0.875em;
  line-height     : 1.4285714;
  margin-top     : 0.8571429em;
}

.prose code{
  color     : #161e2e;
  font-weight     : 600;
  font-size     : 0.875em;
}

.prose code::before{
  content     : "`";
}

.prose code::after{
  content     : "`";
}

.prose pre{
  color     : #e5e7eb;
  background-color     : #252f3f;
  overflow-x     : auto;
  font-size     : 0.875em;
  line-height     : 1.7142857;
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
  border-radius     : 0.375rem;
  padding-top     : 0.8571429em;
  padding-right     : 1.1428571em;
  padding-bottom     : 0.8571429em;
  padding-left     : 1.1428571em;
}

.prose pre code{
  background-color     : transparent;
  border-width     : 0;
  border-radius     : 0;
  padding     : 0;
  font-weight     : 400;
  color     : inherit;
  font-size     : inherit;
  font-family     : inherit;
  line-height     : inherit;
}

.prose pre code::before{
  content     : "";
}

.prose pre code::after{
  content     : "";
}

.prose table{
  width     : 100%;
  table-layout     : auto;
  text-align     : left;
  margin-top     : 2em;
  margin-bottom     : 2em;
  font-size     : 0.875em;
  line-height     : 1.7142857;
}

.prose thead{
  color     : #161e2e;
  font-weight     : 600;
  border-bottom-width     : 1px;
  border-bottom-color     : #d2d6dc;
}

.prose thead th{
  vertical-align     : bottom;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.prose tbody tr{
  border-bottom-width     : 1px;
  border-bottom-color     : #e5e7eb;
}

.prose tbody tr:last-child{
  border-bottom-width     : 0;
}

.prose tbody td{
  vertical-align     : top;
  padding-top     : 0.5714286em;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.prose{
  font-size     : 1rem;
  line-height     : 1.75;
}

.prose p{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.prose img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.prose h2 code{
  font-size     : 0.875em;
}

.prose h3 code{
  font-size     : 0.9em;
}

.prose ul{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.prose li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.prose ol > li:before{
  left     : 0;
}

.prose > ul > li p{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.prose > ul > li > *:first-child{
  margin-top     : 1.25em;
}

.prose > ul > li > *:last-child{
  margin-bottom     : 1.25em;
}

.prose > ol > li > *:first-child{
  margin-top     : 1.25em;
}

.prose > ol > li > *:last-child{
  margin-bottom     : 1.25em;
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.prose hr + *{
  margin-top     : 0;
}

.prose h2 + *{
  margin-top     : 0;
}

.prose h3 + *{
  margin-top     : 0;
}

.prose h4 + *{
  margin-top     : 0;
}

.prose thead th:first-child{
  padding-left     : 0;
}

.prose thead th:last-child{
  padding-right     : 0;
}

.prose tbody td:first-child{
  padding-left     : 0;
}

.prose tbody td:last-child{
  padding-right     : 0;
}

.prose > :first-child{
  margin-top     : 0;
}

.prose > :last-child{
  margin-bottom     : 0;
}

.prose h1, .prose h2, .prose h3, .prose h4{
  color     : #161e2e;
}

.prose-sm{
  font-size     : 0.875rem;
  line-height     : 1.7142857;
}

.prose-sm p{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.prose-sm [class~="lead"]{
  font-size     : 1.2857143em;
  line-height     : 1.5555556;
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.prose-sm blockquote{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
  padding-left     : 1.1111111em;
}

.prose-sm h1{
  font-size     : 2.1428571em;
  margin-top     : 0;
  margin-bottom     : 0.8em;
  line-height     : 1.2;
}

.prose-sm h2{
  font-size     : 1.4285714em;
  margin-top     : 1.6em;
  margin-bottom     : 0.8em;
  line-height     : 1.4;
}

.prose-sm h3{
  font-size     : 1.2857143em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.prose-sm h4{
  margin-top     : 1.4285714em;
  margin-bottom     : 0.5714286em;
  line-height     : 1.4285714;
}

.prose-sm img{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.prose-sm video{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.prose-sm figure{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.prose-sm figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.prose-sm figure figcaption{
  font-size     : 0.8571429em;
  line-height     : 1.3333333;
  margin-top     : 0.6666667em;
}

.prose-sm code{
  font-size     : 0.8571429em;
}

.prose-sm h2 code{
  font-size     : 0.9em;
}

.prose-sm h3 code{
  font-size     : 0.8888889em;
}

.prose-sm pre{
  font-size     : 0.8571429em;
  line-height     : 1.6666667;
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  border-radius     : 0.25rem;
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.prose-sm ol{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.prose-sm ul{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.prose-sm li{
  margin-top     : 0.2857143em;
  margin-bottom     : 0.2857143em;
}

.prose-sm ol > li{
  padding-left     : 1.5714286em;
}

.prose-sm ol > li:before{
  left     : 0;
}

.prose-sm ul > li{
  padding-left     : 1.5714286em;
}

.prose-sm ul > li::before{
  height     : 0.3571429em;
  width     : 0.3571429em;
  top     : calc(0.8571429em - 0.1785714em);
  left     : 0.2142857em;
}

.prose-sm > ul > li p{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.prose-sm > ul > li > *:first-child{
  margin-top     : 1.1428571em;
}

.prose-sm > ul > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.prose-sm > ol > li > *:first-child{
  margin-top     : 1.1428571em;
}

.prose-sm > ol > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.prose-sm ul ul, .prose-sm ul ol, .prose-sm ol ul, .prose-sm ol ol{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.prose-sm hr{
  margin-top     : 2.8571429em;
  margin-bottom     : 2.8571429em;
}

.prose-sm hr + *{
  margin-top     : 0;
}

.prose-sm h2 + *{
  margin-top     : 0;
}

.prose-sm h3 + *{
  margin-top     : 0;
}

.prose-sm h4 + *{
  margin-top     : 0;
}

.prose-sm table{
  font-size     : 0.8571429em;
  line-height     : 1.5;
}

.prose-sm thead th{
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.prose-sm thead th:first-child{
  padding-left     : 0;
}

.prose-sm thead th:last-child{
  padding-right     : 0;
}

.prose-sm tbody td{
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.prose-sm tbody td:first-child{
  padding-left     : 0;
}

.prose-sm tbody td:last-child{
  padding-right     : 0;
}

.prose-sm > :first-child{
  margin-top     : 0;
}

.prose-sm > :last-child{
  margin-bottom     : 0;
}

.prose-lg{
  font-size     : 1.125rem;
  line-height     : 1.7777778;
}

.prose-lg p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-lg [class~="lead"]{
  font-size     : 1.2222222em;
  line-height     : 1.4545455;
  margin-top     : 1.0909091em;
  margin-bottom     : 1.0909091em;
}

.prose-lg blockquote{
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  padding-left     : 1em;
}

.prose-lg h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.8333333em;
  line-height     : 1;
}

.prose-lg h2{
  font-size     : 1.6666667em;
  margin-top     : 1.8666667em;
  margin-bottom     : 1.0666667em;
  line-height     : 1.3333333;
}

.prose-lg h3{
  font-size     : 1.3333333em;
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.prose-lg h4{
  margin-top     : 1.7777778em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.prose-lg img{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.prose-lg video{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.prose-lg figure{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.prose-lg figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.prose-lg figure figcaption{
  font-size     : 0.8888889em;
  line-height     : 1.5;
  margin-top     : 1em;
}

.prose-lg code{
  font-size     : 0.8888889em;
}

.prose-lg h2 code{
  font-size     : 0.8666667em;
}

.prose-lg h3 code{
  font-size     : 0.875em;
}

.prose-lg pre{
  font-size     : 0.8888889em;
  line-height     : 1.75;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.375rem;
  padding-top     : 1em;
  padding-right     : 1.5em;
  padding-bottom     : 1em;
  padding-left     : 1.5em;
}

.prose-lg ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-lg ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-lg li{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.prose-lg ol > li{
  padding-left     : 1.6666667em;
}

.prose-lg ol > li:before{
  left     : 0;
}

.prose-lg ul > li{
  padding-left     : 1.6666667em;
}

.prose-lg ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8888889em - 0.1666667em);
  left     : 0.2222222em;
}

.prose-lg > ul > li p{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.prose-lg > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.prose-lg > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.prose-lg > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.prose-lg > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.prose-lg ul ul, .prose-lg ul ol, .prose-lg ol ul, .prose-lg ol ol{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.prose-lg hr{
  margin-top     : 3.1111111em;
  margin-bottom     : 3.1111111em;
}

.prose-lg hr + *{
  margin-top     : 0;
}

.prose-lg h2 + *{
  margin-top     : 0;
}

.prose-lg h3 + *{
  margin-top     : 0;
}

.prose-lg h4 + *{
  margin-top     : 0;
}

.prose-lg table{
  font-size     : 0.8888889em;
  line-height     : 1.5;
}

.prose-lg thead th{
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.prose-lg thead th:first-child{
  padding-left     : 0;
}

.prose-lg thead th:last-child{
  padding-right     : 0;
}

.prose-lg tbody td{
  padding-top     : 0.75em;
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.prose-lg tbody td:first-child{
  padding-left     : 0;
}

.prose-lg tbody td:last-child{
  padding-right     : 0;
}

.prose-lg > :first-child{
  margin-top     : 0;
}

.prose-lg > :last-child{
  margin-bottom     : 0;
}

.prose-xl{
  font-size     : 1.25rem;
  line-height     : 1.8;
}

.prose-xl p{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.prose-xl [class~="lead"]{
  font-size     : 1.2em;
  line-height     : 1.5;
  margin-top     : 1em;
  margin-bottom     : 1em;
}

.prose-xl blockquote{
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1.0666667em;
}

.prose-xl h1{
  font-size     : 2.8em;
  margin-top     : 0;
  margin-bottom     : 0.8571429em;
  line-height     : 1;
}

.prose-xl h2{
  font-size     : 1.8em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.prose-xl h3{
  font-size     : 1.5em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.3333333;
}

.prose-xl h4{
  margin-top     : 1.8em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.prose-xl img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-xl video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-xl figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-xl figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.prose-xl figure figcaption{
  font-size     : 0.9em;
  line-height     : 1.5555556;
  margin-top     : 1em;
}

.prose-xl code{
  font-size     : 0.9em;
}

.prose-xl h2 code{
  font-size     : 0.8611111em;
}

.prose-xl h3 code{
  font-size     : 0.9em;
}

.prose-xl pre{
  font-size     : 0.9em;
  line-height     : 1.7777778;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.1111111em;
  padding-right     : 1.3333333em;
  padding-bottom     : 1.1111111em;
  padding-left     : 1.3333333em;
}

.prose-xl ol{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.prose-xl ul{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.prose-xl li{
  margin-top     : 0.6em;
  margin-bottom     : 0.6em;
}

.prose-xl ol > li{
  padding-left     : 1.8em;
}

.prose-xl ol > li:before{
  left     : 0;
}

.prose-xl ul > li{
  padding-left     : 1.8em;
}

.prose-xl ul > li::before{
  width     : 0.35em;
  height     : 0.35em;
  top     : calc(0.9em - 0.175em);
  left     : 0.25em;
}

.prose-xl > ul > li p{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.prose-xl > ul > li > *:first-child{
  margin-top     : 1.2em;
}

.prose-xl > ul > li > *:last-child{
  margin-bottom     : 1.2em;
}

.prose-xl > ol > li > *:first-child{
  margin-top     : 1.2em;
}

.prose-xl > ol > li > *:last-child{
  margin-bottom     : 1.2em;
}

.prose-xl ul ul, .prose-xl ul ol, .prose-xl ol ul, .prose-xl ol ol{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.prose-xl hr{
  margin-top     : 2.8em;
  margin-bottom     : 2.8em;
}

.prose-xl hr + *{
  margin-top     : 0;
}

.prose-xl h2 + *{
  margin-top     : 0;
}

.prose-xl h3 + *{
  margin-top     : 0;
}

.prose-xl h4 + *{
  margin-top     : 0;
}

.prose-xl table{
  font-size     : 0.9em;
  line-height     : 1.5555556;
}

.prose-xl thead th{
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.prose-xl thead th:first-child{
  padding-left     : 0;
}

.prose-xl thead th:last-child{
  padding-right     : 0;
}

.prose-xl tbody td{
  padding-top     : 0.8888889em;
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.prose-xl tbody td:first-child{
  padding-left     : 0;
}

.prose-xl tbody td:last-child{
  padding-right     : 0;
}

.prose-xl > :first-child{
  margin-top     : 0;
}

.prose-xl > :last-child{
  margin-bottom     : 0;
}

.prose-2xl{
  font-size     : 1.5rem;
  line-height     : 1.6666667;
}

.prose-2xl p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-2xl [class~="lead"]{
  font-size     : 1.25em;
  line-height     : 1.4666667;
  margin-top     : 1.0666667em;
  margin-bottom     : 1.0666667em;
}

.prose-2xl blockquote{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
  padding-left     : 1.1111111em;
}

.prose-2xl h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.875em;
  line-height     : 1;
}

.prose-2xl h2{
  font-size     : 2em;
  margin-top     : 1.5em;
  margin-bottom     : 0.8333333em;
  line-height     : 1.0833333;
}

.prose-2xl h3{
  font-size     : 1.5em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.2222222;
}

.prose-2xl h4{
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.prose-2xl img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-2xl video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-2xl figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.prose-2xl figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.prose-2xl figure figcaption{
  font-size     : 0.8333333em;
  line-height     : 1.6;
  margin-top     : 1em;
}

.prose-2xl code{
  font-size     : 0.8333333em;
}

.prose-2xl h2 code{
  font-size     : 0.875em;
}

.prose-2xl h3 code{
  font-size     : 0.8888889em;
}

.prose-2xl pre{
  font-size     : 0.8333333em;
  line-height     : 1.8;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.2em;
  padding-right     : 1.6em;
  padding-bottom     : 1.2em;
  padding-left     : 1.6em;
}

.prose-2xl ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-2xl ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.prose-2xl li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.prose-2xl ol > li{
  padding-left     : 1.6666667em;
}

.prose-2xl ol > li:before{
  left     : 0;
}

.prose-2xl ul > li{
  padding-left     : 1.6666667em;
}

.prose-2xl ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8333333em - 0.1666667em);
  left     : 0.25em;
}

.prose-2xl > ul > li p{
  margin-top     : 0.8333333em;
  margin-bottom     : 0.8333333em;
}

.prose-2xl > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.prose-2xl > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.prose-2xl > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.prose-2xl > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.prose-2xl ul ul, .prose-2xl ul ol, .prose-2xl ol ul, .prose-2xl ol ol{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.prose-2xl hr{
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.prose-2xl hr + *{
  margin-top     : 0;
}

.prose-2xl h2 + *{
  margin-top     : 0;
}

.prose-2xl h3 + *{
  margin-top     : 0;
}

.prose-2xl h4 + *{
  margin-top     : 0;
}

.prose-2xl table{
  font-size     : 0.8333333em;
  line-height     : 1.4;
}

.prose-2xl thead th{
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.prose-2xl thead th:first-child{
  padding-left     : 0;
}

.prose-2xl thead th:last-child{
  padding-right     : 0;
}

.prose-2xl tbody td{
  padding-top     : 0.8em;
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.prose-2xl tbody td:first-child{
  padding-left     : 0;
}

.prose-2xl tbody td:last-child{
  padding-right     : 0;
}

.prose-2xl > :first-child{
  margin-top     : 0;
}

.prose-2xl > :last-child{
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose{
  color     : #374151;
  max-width     : 65ch;
}

.group:hover .group-hover\:prose [class~="lead"]{
  color     : #4b5563;
  font-size     : 1.25em;
  line-height     : 1.6;
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose a{
  color     : #5850ec;
  text-decoration     : none;
  font-weight     : 600;
}

.group:hover .group-hover\:prose strong{
  color     : #161e2e;
  font-weight     : 600;
}

.group:hover .group-hover\:prose ol{
  counter-reset     : list-counter;
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.group:hover .group-hover\:prose ol > li{
  position     : relative;
  counter-increment     : list-counter;
  padding-left     : 1.75em;
}

.group:hover .group-hover\:prose ol > li::before{
  content     : counter(list-counter) ".";
  position     : absolute;
  font-weight     : 400;
  color     : #6b7280;
}

.group:hover .group-hover\:prose ul > li{
  position     : relative;
  padding-left     : 1.75em;
}

.group:hover .group-hover\:prose ul > li::before{
  content     : "";
  position     : absolute;
  background-color     : #d2d6dc;
  border-radius     : 50%;
  width     : 0.375em;
  height     : 0.375em;
  top     : calc(0.875em - 0.1875em);
  left     : 0.25em;
}

.group:hover .group-hover\:prose hr{
  border-color     : #e5e7eb;
  border-top-width     : 1px;
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.group:hover .group-hover\:prose blockquote{
  font-weight     : 500;
  font-style     : italic;
  color     : #161e2e;
  border-left-width     : 0.25rem;
  border-left-color     : #e5e7eb;
  quotes     : "\201C""\201D""\2018""\2019";
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1em;
}

.group:hover .group-hover\:prose blockquote p:first-of-type::before{
  content     : open-quote;
}

.group:hover .group-hover\:prose blockquote p:last-of-type::after{
  content     : close-quote;
}

.group:hover .group-hover\:prose h1{
  color     : #1a202c;
  font-weight     : 800;
  font-size     : 2.25em;
  margin-top     : 0;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.group:hover .group-hover\:prose h2{
  color     : #1a202c;
  font-weight     : 700;
  font-size     : 1.5em;
  margin-top     : 2em;
  margin-bottom     : 1em;
  line-height     : 1.3333333;
}

.group:hover .group-hover\:prose h3{
  color     : #1a202c;
  font-weight     : 600;
  font-size     : 1.25em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.group:hover .group-hover\:prose h4{
  color     : #1a202c;
  font-weight     : 600;
  margin-top     : 1.5em;
  margin-bottom     : 0.5em;
  line-height     : 1.5;
}

.group:hover .group-hover\:prose figure figcaption{
  color     : #6b7280;
  font-size     : 0.875em;
  line-height     : 1.4285714;
  margin-top     : 0.8571429em;
}

.group:hover .group-hover\:prose code{
  color     : #161e2e;
  font-weight     : 600;
  font-size     : 0.875em;
}

.group:hover .group-hover\:prose code::before{
  content     : "`";
}

.group:hover .group-hover\:prose code::after{
  content     : "`";
}

.group:hover .group-hover\:prose pre{
  color     : #e5e7eb;
  background-color     : #252f3f;
  overflow-x     : auto;
  font-size     : 0.875em;
  line-height     : 1.7142857;
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
  border-radius     : 0.375rem;
  padding-top     : 0.8571429em;
  padding-right     : 1.1428571em;
  padding-bottom     : 0.8571429em;
  padding-left     : 1.1428571em;
}

.group:hover .group-hover\:prose pre code{
  background-color     : transparent;
  border-width     : 0;
  border-radius     : 0;
  padding     : 0;
  font-weight     : 400;
  color     : inherit;
  font-size     : inherit;
  font-family     : inherit;
  line-height     : inherit;
}

.group:hover .group-hover\:prose pre code::before{
  content     : "";
}

.group:hover .group-hover\:prose pre code::after{
  content     : "";
}

.group:hover .group-hover\:prose table{
  width     : 100%;
  table-layout     : auto;
  text-align     : left;
  margin-top     : 2em;
  margin-bottom     : 2em;
  font-size     : 0.875em;
  line-height     : 1.7142857;
}

.group:hover .group-hover\:prose thead{
  color     : #161e2e;
  font-weight     : 600;
  border-bottom-width     : 1px;
  border-bottom-color     : #d2d6dc;
}

.group:hover .group-hover\:prose thead th{
  vertical-align     : bottom;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.group:hover .group-hover\:prose tbody tr{
  border-bottom-width     : 1px;
  border-bottom-color     : #e5e7eb;
}

.group:hover .group-hover\:prose tbody tr:last-child{
  border-bottom-width     : 0;
}

.group:hover .group-hover\:prose tbody td{
  vertical-align     : top;
  padding-top     : 0.5714286em;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.group:hover .group-hover\:prose{
  font-size     : 1rem;
  line-height     : 1.75;
}

.group:hover .group-hover\:prose p{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.group:hover .group-hover\:prose img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose h2 code{
  font-size     : 0.875em;
}

.group:hover .group-hover\:prose h3 code{
  font-size     : 0.9em;
}

.group:hover .group-hover\:prose ul{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.group:hover .group-hover\:prose li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.group:hover .group-hover\:prose ol > li:before{
  left     : 0;
}

.group:hover .group-hover\:prose > ul > li p{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.group:hover .group-hover\:prose > ul > li > *:first-child{
  margin-top     : 1.25em;
}

.group:hover .group-hover\:prose > ul > li > *:last-child{
  margin-bottom     : 1.25em;
}

.group:hover .group-hover\:prose > ol > li > *:first-child{
  margin-top     : 1.25em;
}

.group:hover .group-hover\:prose > ol > li > *:last-child{
  margin-bottom     : 1.25em;
}

.group:hover .group-hover\:prose ul ul, .group:hover .group-hover\:prose ul ol, .group:hover .group-hover\:prose ol ul, .group:hover .group-hover\:prose ol ol{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.group:hover .group-hover\:prose hr + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose h2 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose h3 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose h4 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose thead th:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose thead th:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose tbody td:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose tbody td:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose > :first-child{
  margin-top     : 0;
}

.group:hover .group-hover\:prose > :last-child{
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose h1, .group:hover .group-hover\:prose h2, .group:hover .group-hover\:prose h3, .group:hover .group-hover\:prose h4{
  color     : #161e2e;
}

.group:hover .group-hover\:prose-sm{
  font-size     : 0.875rem;
  line-height     : 1.7142857;
}

.group:hover .group-hover\:prose-sm p{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm [class~="lead"]{
  font-size     : 1.2857143em;
  line-height     : 1.5555556;
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.group:hover .group-hover\:prose-sm blockquote{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
  padding-left     : 1.1111111em;
}

.group:hover .group-hover\:prose-sm h1{
  font-size     : 2.1428571em;
  margin-top     : 0;
  margin-bottom     : 0.8em;
  line-height     : 1.2;
}

.group:hover .group-hover\:prose-sm h2{
  font-size     : 1.4285714em;
  margin-top     : 1.6em;
  margin-bottom     : 0.8em;
  line-height     : 1.4;
}

.group:hover .group-hover\:prose-sm h3{
  font-size     : 1.2857143em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.group:hover .group-hover\:prose-sm h4{
  margin-top     : 1.4285714em;
  margin-bottom     : 0.5714286em;
  line-height     : 1.4285714;
}

.group:hover .group-hover\:prose-sm img{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.group:hover .group-hover\:prose-sm video{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.group:hover .group-hover\:prose-sm figure{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.group:hover .group-hover\:prose-sm figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-sm figure figcaption{
  font-size     : 0.8571429em;
  line-height     : 1.3333333;
  margin-top     : 0.6666667em;
}

.group:hover .group-hover\:prose-sm code{
  font-size     : 0.8571429em;
}

.group:hover .group-hover\:prose-sm h2 code{
  font-size     : 0.9em;
}

.group:hover .group-hover\:prose-sm h3 code{
  font-size     : 0.8888889em;
}

.group:hover .group-hover\:prose-sm pre{
  font-size     : 0.8571429em;
  line-height     : 1.6666667;
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  border-radius     : 0.25rem;
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.group:hover .group-hover\:prose-sm ol{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm ul{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm li{
  margin-top     : 0.2857143em;
  margin-bottom     : 0.2857143em;
}

.group:hover .group-hover\:prose-sm ol > li{
  padding-left     : 1.5714286em;
}

.group:hover .group-hover\:prose-sm ol > li:before{
  left     : 0;
}

.group:hover .group-hover\:prose-sm ul > li{
  padding-left     : 1.5714286em;
}

.group:hover .group-hover\:prose-sm ul > li::before{
  height     : 0.3571429em;
  width     : 0.3571429em;
  top     : calc(0.8571429em - 0.1785714em);
  left     : 0.2142857em;
}

.group:hover .group-hover\:prose-sm > ul > li p{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.group:hover .group-hover\:prose-sm > ul > li > *:first-child{
  margin-top     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm > ul > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm > ol > li > *:first-child{
  margin-top     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm > ol > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.group:hover .group-hover\:prose-sm ul ul, .group:hover .group-hover\:prose-sm ul ol, .group:hover .group-hover\:prose-sm ol ul, .group:hover .group-hover\:prose-sm ol ol{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.group:hover .group-hover\:prose-sm hr{
  margin-top     : 2.8571429em;
  margin-bottom     : 2.8571429em;
}

.group:hover .group-hover\:prose-sm hr + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-sm h2 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-sm h3 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-sm h4 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-sm table{
  font-size     : 0.8571429em;
  line-height     : 1.5;
}

.group:hover .group-hover\:prose-sm thead th{
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.group:hover .group-hover\:prose-sm thead th:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-sm thead th:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-sm tbody td{
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.group:hover .group-hover\:prose-sm tbody td:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-sm tbody td:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-sm > :first-child{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-sm > :last-child{
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-lg{
  font-size     : 1.125rem;
  line-height     : 1.7777778;
}

.group:hover .group-hover\:prose-lg p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg [class~="lead"]{
  font-size     : 1.2222222em;
  line-height     : 1.4545455;
  margin-top     : 1.0909091em;
  margin-bottom     : 1.0909091em;
}

.group:hover .group-hover\:prose-lg blockquote{
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  padding-left     : 1em;
}

.group:hover .group-hover\:prose-lg h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.8333333em;
  line-height     : 1;
}

.group:hover .group-hover\:prose-lg h2{
  font-size     : 1.6666667em;
  margin-top     : 1.8666667em;
  margin-bottom     : 1.0666667em;
  line-height     : 1.3333333;
}

.group:hover .group-hover\:prose-lg h3{
  font-size     : 1.3333333em;
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.group:hover .group-hover\:prose-lg h4{
  margin-top     : 1.7777778em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.group:hover .group-hover\:prose-lg img{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.group:hover .group-hover\:prose-lg video{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.group:hover .group-hover\:prose-lg figure{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.group:hover .group-hover\:prose-lg figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-lg figure figcaption{
  font-size     : 0.8888889em;
  line-height     : 1.5;
  margin-top     : 1em;
}

.group:hover .group-hover\:prose-lg code{
  font-size     : 0.8888889em;
}

.group:hover .group-hover\:prose-lg h2 code{
  font-size     : 0.8666667em;
}

.group:hover .group-hover\:prose-lg h3 code{
  font-size     : 0.875em;
}

.group:hover .group-hover\:prose-lg pre{
  font-size     : 0.8888889em;
  line-height     : 1.75;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.375rem;
  padding-top     : 1em;
  padding-right     : 1.5em;
  padding-bottom     : 1em;
  padding-left     : 1.5em;
}

.group:hover .group-hover\:prose-lg ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg li{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.group:hover .group-hover\:prose-lg ol > li{
  padding-left     : 1.6666667em;
}

.group:hover .group-hover\:prose-lg ol > li:before{
  left     : 0;
}

.group:hover .group-hover\:prose-lg ul > li{
  padding-left     : 1.6666667em;
}

.group:hover .group-hover\:prose-lg ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8888889em - 0.1666667em);
  left     : 0.2222222em;
}

.group:hover .group-hover\:prose-lg > ul > li p{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.group:hover .group-hover\:prose-lg > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-lg ul ul, .group:hover .group-hover\:prose-lg ul ol, .group:hover .group-hover\:prose-lg ol ul, .group:hover .group-hover\:prose-lg ol ol{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.group:hover .group-hover\:prose-lg hr{
  margin-top     : 3.1111111em;
  margin-bottom     : 3.1111111em;
}

.group:hover .group-hover\:prose-lg hr + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-lg h2 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-lg h3 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-lg h4 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-lg table{
  font-size     : 0.8888889em;
  line-height     : 1.5;
}

.group:hover .group-hover\:prose-lg thead th{
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.group:hover .group-hover\:prose-lg thead th:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-lg thead th:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-lg tbody td{
  padding-top     : 0.75em;
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.group:hover .group-hover\:prose-lg tbody td:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-lg tbody td:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-lg > :first-child{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-lg > :last-child{
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-xl{
  font-size     : 1.25rem;
  line-height     : 1.8;
}

.group:hover .group-hover\:prose-xl p{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose-xl [class~="lead"]{
  font-size     : 1.2em;
  line-height     : 1.5;
  margin-top     : 1em;
  margin-bottom     : 1em;
}

.group:hover .group-hover\:prose-xl blockquote{
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1.0666667em;
}

.group:hover .group-hover\:prose-xl h1{
  font-size     : 2.8em;
  margin-top     : 0;
  margin-bottom     : 0.8571429em;
  line-height     : 1;
}

.group:hover .group-hover\:prose-xl h2{
  font-size     : 1.8em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.group:hover .group-hover\:prose-xl h3{
  font-size     : 1.5em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.3333333;
}

.group:hover .group-hover\:prose-xl h4{
  margin-top     : 1.8em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.group:hover .group-hover\:prose-xl img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-xl video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-xl figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-xl figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-xl figure figcaption{
  font-size     : 0.9em;
  line-height     : 1.5555556;
  margin-top     : 1em;
}

.group:hover .group-hover\:prose-xl code{
  font-size     : 0.9em;
}

.group:hover .group-hover\:prose-xl h2 code{
  font-size     : 0.8611111em;
}

.group:hover .group-hover\:prose-xl h3 code{
  font-size     : 0.9em;
}

.group:hover .group-hover\:prose-xl pre{
  font-size     : 0.9em;
  line-height     : 1.7777778;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.1111111em;
  padding-right     : 1.3333333em;
  padding-bottom     : 1.1111111em;
  padding-left     : 1.3333333em;
}

.group:hover .group-hover\:prose-xl ol{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose-xl ul{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose-xl li{
  margin-top     : 0.6em;
  margin-bottom     : 0.6em;
}

.group:hover .group-hover\:prose-xl ol > li{
  padding-left     : 1.8em;
}

.group:hover .group-hover\:prose-xl ol > li:before{
  left     : 0;
}

.group:hover .group-hover\:prose-xl ul > li{
  padding-left     : 1.8em;
}

.group:hover .group-hover\:prose-xl ul > li::before{
  width     : 0.35em;
  height     : 0.35em;
  top     : calc(0.9em - 0.175em);
  left     : 0.25em;
}

.group:hover .group-hover\:prose-xl > ul > li p{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.group:hover .group-hover\:prose-xl > ul > li > *:first-child{
  margin-top     : 1.2em;
}

.group:hover .group-hover\:prose-xl > ul > li > *:last-child{
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose-xl > ol > li > *:first-child{
  margin-top     : 1.2em;
}

.group:hover .group-hover\:prose-xl > ol > li > *:last-child{
  margin-bottom     : 1.2em;
}

.group:hover .group-hover\:prose-xl ul ul, .group:hover .group-hover\:prose-xl ul ol, .group:hover .group-hover\:prose-xl ol ul, .group:hover .group-hover\:prose-xl ol ol{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.group:hover .group-hover\:prose-xl hr{
  margin-top     : 2.8em;
  margin-bottom     : 2.8em;
}

.group:hover .group-hover\:prose-xl hr + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-xl h2 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-xl h3 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-xl h4 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-xl table{
  font-size     : 0.9em;
  line-height     : 1.5555556;
}

.group:hover .group-hover\:prose-xl thead th{
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.group:hover .group-hover\:prose-xl thead th:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-xl thead th:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-xl tbody td{
  padding-top     : 0.8888889em;
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.group:hover .group-hover\:prose-xl tbody td:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-xl tbody td:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-xl > :first-child{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-xl > :last-child{
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-2xl{
  font-size     : 1.5rem;
  line-height     : 1.6666667;
}

.group:hover .group-hover\:prose-2xl p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl [class~="lead"]{
  font-size     : 1.25em;
  line-height     : 1.4666667;
  margin-top     : 1.0666667em;
  margin-bottom     : 1.0666667em;
}

.group:hover .group-hover\:prose-2xl blockquote{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
  padding-left     : 1.1111111em;
}

.group:hover .group-hover\:prose-2xl h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.875em;
  line-height     : 1;
}

.group:hover .group-hover\:prose-2xl h2{
  font-size     : 2em;
  margin-top     : 1.5em;
  margin-bottom     : 0.8333333em;
  line-height     : 1.0833333;
}

.group:hover .group-hover\:prose-2xl h3{
  font-size     : 1.5em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.2222222;
}

.group:hover .group-hover\:prose-2xl h4{
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.group:hover .group-hover\:prose-2xl img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-2xl video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-2xl figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.group:hover .group-hover\:prose-2xl figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.group:hover .group-hover\:prose-2xl figure figcaption{
  font-size     : 0.8333333em;
  line-height     : 1.6;
  margin-top     : 1em;
}

.group:hover .group-hover\:prose-2xl code{
  font-size     : 0.8333333em;
}

.group:hover .group-hover\:prose-2xl h2 code{
  font-size     : 0.875em;
}

.group:hover .group-hover\:prose-2xl h3 code{
  font-size     : 0.8888889em;
}

.group:hover .group-hover\:prose-2xl pre{
  font-size     : 0.8333333em;
  line-height     : 1.8;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.2em;
  padding-right     : 1.6em;
  padding-bottom     : 1.2em;
  padding-left     : 1.6em;
}

.group:hover .group-hover\:prose-2xl ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.group:hover .group-hover\:prose-2xl ol > li{
  padding-left     : 1.6666667em;
}

.group:hover .group-hover\:prose-2xl ol > li:before{
  left     : 0;
}

.group:hover .group-hover\:prose-2xl ul > li{
  padding-left     : 1.6666667em;
}

.group:hover .group-hover\:prose-2xl ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8333333em - 0.1666667em);
  left     : 0.25em;
}

.group:hover .group-hover\:prose-2xl > ul > li p{
  margin-top     : 0.8333333em;
  margin-bottom     : 0.8333333em;
}

.group:hover .group-hover\:prose-2xl > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.group:hover .group-hover\:prose-2xl ul ul, .group:hover .group-hover\:prose-2xl ul ol, .group:hover .group-hover\:prose-2xl ol ul, .group:hover .group-hover\:prose-2xl ol ol{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.group:hover .group-hover\:prose-2xl hr{
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.group:hover .group-hover\:prose-2xl hr + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-2xl h2 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-2xl h3 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-2xl h4 + *{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-2xl table{
  font-size     : 0.8333333em;
  line-height     : 1.4;
}

.group:hover .group-hover\:prose-2xl thead th{
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.group:hover .group-hover\:prose-2xl thead th:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-2xl thead th:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-2xl tbody td{
  padding-top     : 0.8em;
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.group:hover .group-hover\:prose-2xl tbody td:first-child{
  padding-left     : 0;
}

.group:hover .group-hover\:prose-2xl tbody td:last-child{
  padding-right     : 0;
}

.group:hover .group-hover\:prose-2xl > :first-child{
  margin-top     : 0;
}

.group:hover .group-hover\:prose-2xl > :last-child{
  margin-bottom     : 0;
}

.hover\:prose:hover{
  color     : #374151;
  max-width     : 65ch;
}

.hover\:prose:hover [class~="lead"]{
  color     : #4b5563;
  font-size     : 1.25em;
  line-height     : 1.6;
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.hover\:prose:hover a{
  color     : #5850ec;
  text-decoration     : none;
  font-weight     : 600;
}

.hover\:prose:hover strong{
  color     : #161e2e;
  font-weight     : 600;
}

.hover\:prose:hover ol{
  counter-reset     : list-counter;
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.hover\:prose:hover ol > li{
  position     : relative;
  counter-increment     : list-counter;
  padding-left     : 1.75em;
}

.hover\:prose:hover ol > li::before{
  content     : counter(list-counter) ".";
  position     : absolute;
  font-weight     : 400;
  color     : #6b7280;
}

.hover\:prose:hover ul > li{
  position     : relative;
  padding-left     : 1.75em;
}

.hover\:prose:hover ul > li::before{
  content     : "";
  position     : absolute;
  background-color     : #d2d6dc;
  border-radius     : 50%;
  width     : 0.375em;
  height     : 0.375em;
  top     : calc(0.875em - 0.1875em);
  left     : 0.25em;
}

.hover\:prose:hover hr{
  border-color     : #e5e7eb;
  border-top-width     : 1px;
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.hover\:prose:hover blockquote{
  font-weight     : 500;
  font-style     : italic;
  color     : #161e2e;
  border-left-width     : 0.25rem;
  border-left-color     : #e5e7eb;
  quotes     : "\201C""\201D""\2018""\2019";
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1em;
}

.hover\:prose:hover blockquote p:first-of-type::before{
  content     : open-quote;
}

.hover\:prose:hover blockquote p:last-of-type::after{
  content     : close-quote;
}

.hover\:prose:hover h1{
  color     : #1a202c;
  font-weight     : 800;
  font-size     : 2.25em;
  margin-top     : 0;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.hover\:prose:hover h2{
  color     : #1a202c;
  font-weight     : 700;
  font-size     : 1.5em;
  margin-top     : 2em;
  margin-bottom     : 1em;
  line-height     : 1.3333333;
}

.hover\:prose:hover h3{
  color     : #1a202c;
  font-weight     : 600;
  font-size     : 1.25em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.hover\:prose:hover h4{
  color     : #1a202c;
  font-weight     : 600;
  margin-top     : 1.5em;
  margin-bottom     : 0.5em;
  line-height     : 1.5;
}

.hover\:prose:hover figure figcaption{
  color     : #6b7280;
  font-size     : 0.875em;
  line-height     : 1.4285714;
  margin-top     : 0.8571429em;
}

.hover\:prose:hover code{
  color     : #161e2e;
  font-weight     : 600;
  font-size     : 0.875em;
}

.hover\:prose:hover code::before{
  content     : "`";
}

.hover\:prose:hover code::after{
  content     : "`";
}

.hover\:prose:hover pre{
  color     : #e5e7eb;
  background-color     : #252f3f;
  overflow-x     : auto;
  font-size     : 0.875em;
  line-height     : 1.7142857;
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
  border-radius     : 0.375rem;
  padding-top     : 0.8571429em;
  padding-right     : 1.1428571em;
  padding-bottom     : 0.8571429em;
  padding-left     : 1.1428571em;
}

.hover\:prose:hover pre code{
  background-color     : transparent;
  border-width     : 0;
  border-radius     : 0;
  padding     : 0;
  font-weight     : 400;
  color     : inherit;
  font-size     : inherit;
  font-family     : inherit;
  line-height     : inherit;
}

.hover\:prose:hover pre code::before{
  content     : "";
}

.hover\:prose:hover pre code::after{
  content     : "";
}

.hover\:prose:hover table{
  width     : 100%;
  table-layout     : auto;
  text-align     : left;
  margin-top     : 2em;
  margin-bottom     : 2em;
  font-size     : 0.875em;
  line-height     : 1.7142857;
}

.hover\:prose:hover thead{
  color     : #161e2e;
  font-weight     : 600;
  border-bottom-width     : 1px;
  border-bottom-color     : #d2d6dc;
}

.hover\:prose:hover thead th{
  vertical-align     : bottom;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.hover\:prose:hover tbody tr{
  border-bottom-width     : 1px;
  border-bottom-color     : #e5e7eb;
}

.hover\:prose:hover tbody tr:last-child{
  border-bottom-width     : 0;
}

.hover\:prose:hover tbody td{
  vertical-align     : top;
  padding-top     : 0.5714286em;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.hover\:prose:hover{
  font-size     : 1rem;
  line-height     : 1.75;
}

.hover\:prose:hover p{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.hover\:prose:hover img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose:hover video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose:hover figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose:hover figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.hover\:prose:hover h2 code{
  font-size     : 0.875em;
}

.hover\:prose:hover h3 code{
  font-size     : 0.9em;
}

.hover\:prose:hover ul{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.hover\:prose:hover li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.hover\:prose:hover ol > li:before{
  left     : 0;
}

.hover\:prose:hover > ul > li p{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.hover\:prose:hover > ul > li > *:first-child{
  margin-top     : 1.25em;
}

.hover\:prose:hover > ul > li > *:last-child{
  margin-bottom     : 1.25em;
}

.hover\:prose:hover > ol > li > *:first-child{
  margin-top     : 1.25em;
}

.hover\:prose:hover > ol > li > *:last-child{
  margin-bottom     : 1.25em;
}

.hover\:prose:hover ul ul, .hover\:prose:hover ul ol, .hover\:prose:hover ol ul, .hover\:prose:hover ol ol{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.hover\:prose:hover hr + *{
  margin-top     : 0;
}

.hover\:prose:hover h2 + *{
  margin-top     : 0;
}

.hover\:prose:hover h3 + *{
  margin-top     : 0;
}

.hover\:prose:hover h4 + *{
  margin-top     : 0;
}

.hover\:prose:hover thead th:first-child{
  padding-left     : 0;
}

.hover\:prose:hover thead th:last-child{
  padding-right     : 0;
}

.hover\:prose:hover tbody td:first-child{
  padding-left     : 0;
}

.hover\:prose:hover tbody td:last-child{
  padding-right     : 0;
}

.hover\:prose:hover > :first-child{
  margin-top     : 0;
}

.hover\:prose:hover > :last-child{
  margin-bottom     : 0;
}

.hover\:prose:hover h1, .hover\:prose:hover h2, .hover\:prose:hover h3, .hover\:prose:hover h4{
  color     : #161e2e;
}

.hover\:prose-sm:hover{
  font-size     : 0.875rem;
  line-height     : 1.7142857;
}

.hover\:prose-sm:hover p{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.hover\:prose-sm:hover [class~="lead"]{
  font-size     : 1.2857143em;
  line-height     : 1.5555556;
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.hover\:prose-sm:hover blockquote{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
  padding-left     : 1.1111111em;
}

.hover\:prose-sm:hover h1{
  font-size     : 2.1428571em;
  margin-top     : 0;
  margin-bottom     : 0.8em;
  line-height     : 1.2;
}

.hover\:prose-sm:hover h2{
  font-size     : 1.4285714em;
  margin-top     : 1.6em;
  margin-bottom     : 0.8em;
  line-height     : 1.4;
}

.hover\:prose-sm:hover h3{
  font-size     : 1.2857143em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.hover\:prose-sm:hover h4{
  margin-top     : 1.4285714em;
  margin-bottom     : 0.5714286em;
  line-height     : 1.4285714;
}

.hover\:prose-sm:hover img{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.hover\:prose-sm:hover video{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.hover\:prose-sm:hover figure{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.hover\:prose-sm:hover figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.hover\:prose-sm:hover figure figcaption{
  font-size     : 0.8571429em;
  line-height     : 1.3333333;
  margin-top     : 0.6666667em;
}

.hover\:prose-sm:hover code{
  font-size     : 0.8571429em;
}

.hover\:prose-sm:hover h2 code{
  font-size     : 0.9em;
}

.hover\:prose-sm:hover h3 code{
  font-size     : 0.8888889em;
}

.hover\:prose-sm:hover pre{
  font-size     : 0.8571429em;
  line-height     : 1.6666667;
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  border-radius     : 0.25rem;
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.hover\:prose-sm:hover ol{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.hover\:prose-sm:hover ul{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.hover\:prose-sm:hover li{
  margin-top     : 0.2857143em;
  margin-bottom     : 0.2857143em;
}

.hover\:prose-sm:hover ol > li{
  padding-left     : 1.5714286em;
}

.hover\:prose-sm:hover ol > li:before{
  left     : 0;
}

.hover\:prose-sm:hover ul > li{
  padding-left     : 1.5714286em;
}

.hover\:prose-sm:hover ul > li::before{
  height     : 0.3571429em;
  width     : 0.3571429em;
  top     : calc(0.8571429em - 0.1785714em);
  left     : 0.2142857em;
}

.hover\:prose-sm:hover > ul > li p{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.hover\:prose-sm:hover > ul > li > *:first-child{
  margin-top     : 1.1428571em;
}

.hover\:prose-sm:hover > ul > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.hover\:prose-sm:hover > ol > li > *:first-child{
  margin-top     : 1.1428571em;
}

.hover\:prose-sm:hover > ol > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.hover\:prose-sm:hover ul ul, .hover\:prose-sm:hover ul ol, .hover\:prose-sm:hover ol ul, .hover\:prose-sm:hover ol ol{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.hover\:prose-sm:hover hr{
  margin-top     : 2.8571429em;
  margin-bottom     : 2.8571429em;
}

.hover\:prose-sm:hover hr + *{
  margin-top     : 0;
}

.hover\:prose-sm:hover h2 + *{
  margin-top     : 0;
}

.hover\:prose-sm:hover h3 + *{
  margin-top     : 0;
}

.hover\:prose-sm:hover h4 + *{
  margin-top     : 0;
}

.hover\:prose-sm:hover table{
  font-size     : 0.8571429em;
  line-height     : 1.5;
}

.hover\:prose-sm:hover thead th{
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.hover\:prose-sm:hover thead th:first-child{
  padding-left     : 0;
}

.hover\:prose-sm:hover thead th:last-child{
  padding-right     : 0;
}

.hover\:prose-sm:hover tbody td{
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.hover\:prose-sm:hover tbody td:first-child{
  padding-left     : 0;
}

.hover\:prose-sm:hover tbody td:last-child{
  padding-right     : 0;
}

.hover\:prose-sm:hover > :first-child{
  margin-top     : 0;
}

.hover\:prose-sm:hover > :last-child{
  margin-bottom     : 0;
}

.hover\:prose-lg:hover{
  font-size     : 1.125rem;
  line-height     : 1.7777778;
}

.hover\:prose-lg:hover p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-lg:hover [class~="lead"]{
  font-size     : 1.2222222em;
  line-height     : 1.4545455;
  margin-top     : 1.0909091em;
  margin-bottom     : 1.0909091em;
}

.hover\:prose-lg:hover blockquote{
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  padding-left     : 1em;
}

.hover\:prose-lg:hover h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.8333333em;
  line-height     : 1;
}

.hover\:prose-lg:hover h2{
  font-size     : 1.6666667em;
  margin-top     : 1.8666667em;
  margin-bottom     : 1.0666667em;
  line-height     : 1.3333333;
}

.hover\:prose-lg:hover h3{
  font-size     : 1.3333333em;
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.hover\:prose-lg:hover h4{
  margin-top     : 1.7777778em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.hover\:prose-lg:hover img{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.hover\:prose-lg:hover video{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.hover\:prose-lg:hover figure{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.hover\:prose-lg:hover figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.hover\:prose-lg:hover figure figcaption{
  font-size     : 0.8888889em;
  line-height     : 1.5;
  margin-top     : 1em;
}

.hover\:prose-lg:hover code{
  font-size     : 0.8888889em;
}

.hover\:prose-lg:hover h2 code{
  font-size     : 0.8666667em;
}

.hover\:prose-lg:hover h3 code{
  font-size     : 0.875em;
}

.hover\:prose-lg:hover pre{
  font-size     : 0.8888889em;
  line-height     : 1.75;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.375rem;
  padding-top     : 1em;
  padding-right     : 1.5em;
  padding-bottom     : 1em;
  padding-left     : 1.5em;
}

.hover\:prose-lg:hover ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-lg:hover ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-lg:hover li{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.hover\:prose-lg:hover ol > li{
  padding-left     : 1.6666667em;
}

.hover\:prose-lg:hover ol > li:before{
  left     : 0;
}

.hover\:prose-lg:hover ul > li{
  padding-left     : 1.6666667em;
}

.hover\:prose-lg:hover ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8888889em - 0.1666667em);
  left     : 0.2222222em;
}

.hover\:prose-lg:hover > ul > li p{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.hover\:prose-lg:hover > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.hover\:prose-lg:hover > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.hover\:prose-lg:hover > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.hover\:prose-lg:hover > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.hover\:prose-lg:hover ul ul, .hover\:prose-lg:hover ul ol, .hover\:prose-lg:hover ol ul, .hover\:prose-lg:hover ol ol{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.hover\:prose-lg:hover hr{
  margin-top     : 3.1111111em;
  margin-bottom     : 3.1111111em;
}

.hover\:prose-lg:hover hr + *{
  margin-top     : 0;
}

.hover\:prose-lg:hover h2 + *{
  margin-top     : 0;
}

.hover\:prose-lg:hover h3 + *{
  margin-top     : 0;
}

.hover\:prose-lg:hover h4 + *{
  margin-top     : 0;
}

.hover\:prose-lg:hover table{
  font-size     : 0.8888889em;
  line-height     : 1.5;
}

.hover\:prose-lg:hover thead th{
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.hover\:prose-lg:hover thead th:first-child{
  padding-left     : 0;
}

.hover\:prose-lg:hover thead th:last-child{
  padding-right     : 0;
}

.hover\:prose-lg:hover tbody td{
  padding-top     : 0.75em;
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.hover\:prose-lg:hover tbody td:first-child{
  padding-left     : 0;
}

.hover\:prose-lg:hover tbody td:last-child{
  padding-right     : 0;
}

.hover\:prose-lg:hover > :first-child{
  margin-top     : 0;
}

.hover\:prose-lg:hover > :last-child{
  margin-bottom     : 0;
}

.hover\:prose-xl:hover{
  font-size     : 1.25rem;
  line-height     : 1.8;
}

.hover\:prose-xl:hover p{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.hover\:prose-xl:hover [class~="lead"]{
  font-size     : 1.2em;
  line-height     : 1.5;
  margin-top     : 1em;
  margin-bottom     : 1em;
}

.hover\:prose-xl:hover blockquote{
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1.0666667em;
}

.hover\:prose-xl:hover h1{
  font-size     : 2.8em;
  margin-top     : 0;
  margin-bottom     : 0.8571429em;
  line-height     : 1;
}

.hover\:prose-xl:hover h2{
  font-size     : 1.8em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.hover\:prose-xl:hover h3{
  font-size     : 1.5em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.3333333;
}

.hover\:prose-xl:hover h4{
  margin-top     : 1.8em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.hover\:prose-xl:hover img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-xl:hover video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-xl:hover figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-xl:hover figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.hover\:prose-xl:hover figure figcaption{
  font-size     : 0.9em;
  line-height     : 1.5555556;
  margin-top     : 1em;
}

.hover\:prose-xl:hover code{
  font-size     : 0.9em;
}

.hover\:prose-xl:hover h2 code{
  font-size     : 0.8611111em;
}

.hover\:prose-xl:hover h3 code{
  font-size     : 0.9em;
}

.hover\:prose-xl:hover pre{
  font-size     : 0.9em;
  line-height     : 1.7777778;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.1111111em;
  padding-right     : 1.3333333em;
  padding-bottom     : 1.1111111em;
  padding-left     : 1.3333333em;
}

.hover\:prose-xl:hover ol{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.hover\:prose-xl:hover ul{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.hover\:prose-xl:hover li{
  margin-top     : 0.6em;
  margin-bottom     : 0.6em;
}

.hover\:prose-xl:hover ol > li{
  padding-left     : 1.8em;
}

.hover\:prose-xl:hover ol > li:before{
  left     : 0;
}

.hover\:prose-xl:hover ul > li{
  padding-left     : 1.8em;
}

.hover\:prose-xl:hover ul > li::before{
  width     : 0.35em;
  height     : 0.35em;
  top     : calc(0.9em - 0.175em);
  left     : 0.25em;
}

.hover\:prose-xl:hover > ul > li p{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.hover\:prose-xl:hover > ul > li > *:first-child{
  margin-top     : 1.2em;
}

.hover\:prose-xl:hover > ul > li > *:last-child{
  margin-bottom     : 1.2em;
}

.hover\:prose-xl:hover > ol > li > *:first-child{
  margin-top     : 1.2em;
}

.hover\:prose-xl:hover > ol > li > *:last-child{
  margin-bottom     : 1.2em;
}

.hover\:prose-xl:hover ul ul, .hover\:prose-xl:hover ul ol, .hover\:prose-xl:hover ol ul, .hover\:prose-xl:hover ol ol{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.hover\:prose-xl:hover hr{
  margin-top     : 2.8em;
  margin-bottom     : 2.8em;
}

.hover\:prose-xl:hover hr + *{
  margin-top     : 0;
}

.hover\:prose-xl:hover h2 + *{
  margin-top     : 0;
}

.hover\:prose-xl:hover h3 + *{
  margin-top     : 0;
}

.hover\:prose-xl:hover h4 + *{
  margin-top     : 0;
}

.hover\:prose-xl:hover table{
  font-size     : 0.9em;
  line-height     : 1.5555556;
}

.hover\:prose-xl:hover thead th{
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.hover\:prose-xl:hover thead th:first-child{
  padding-left     : 0;
}

.hover\:prose-xl:hover thead th:last-child{
  padding-right     : 0;
}

.hover\:prose-xl:hover tbody td{
  padding-top     : 0.8888889em;
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.hover\:prose-xl:hover tbody td:first-child{
  padding-left     : 0;
}

.hover\:prose-xl:hover tbody td:last-child{
  padding-right     : 0;
}

.hover\:prose-xl:hover > :first-child{
  margin-top     : 0;
}

.hover\:prose-xl:hover > :last-child{
  margin-bottom     : 0;
}

.hover\:prose-2xl:hover{
  font-size     : 1.5rem;
  line-height     : 1.6666667;
}

.hover\:prose-2xl:hover p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-2xl:hover [class~="lead"]{
  font-size     : 1.25em;
  line-height     : 1.4666667;
  margin-top     : 1.0666667em;
  margin-bottom     : 1.0666667em;
}

.hover\:prose-2xl:hover blockquote{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
  padding-left     : 1.1111111em;
}

.hover\:prose-2xl:hover h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.875em;
  line-height     : 1;
}

.hover\:prose-2xl:hover h2{
  font-size     : 2em;
  margin-top     : 1.5em;
  margin-bottom     : 0.8333333em;
  line-height     : 1.0833333;
}

.hover\:prose-2xl:hover h3{
  font-size     : 1.5em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.2222222;
}

.hover\:prose-2xl:hover h4{
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.hover\:prose-2xl:hover img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-2xl:hover video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-2xl:hover figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.hover\:prose-2xl:hover figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.hover\:prose-2xl:hover figure figcaption{
  font-size     : 0.8333333em;
  line-height     : 1.6;
  margin-top     : 1em;
}

.hover\:prose-2xl:hover code{
  font-size     : 0.8333333em;
}

.hover\:prose-2xl:hover h2 code{
  font-size     : 0.875em;
}

.hover\:prose-2xl:hover h3 code{
  font-size     : 0.8888889em;
}

.hover\:prose-2xl:hover pre{
  font-size     : 0.8333333em;
  line-height     : 1.8;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.2em;
  padding-right     : 1.6em;
  padding-bottom     : 1.2em;
  padding-left     : 1.6em;
}

.hover\:prose-2xl:hover ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-2xl:hover ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.hover\:prose-2xl:hover li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.hover\:prose-2xl:hover ol > li{
  padding-left     : 1.6666667em;
}

.hover\:prose-2xl:hover ol > li:before{
  left     : 0;
}

.hover\:prose-2xl:hover ul > li{
  padding-left     : 1.6666667em;
}

.hover\:prose-2xl:hover ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8333333em - 0.1666667em);
  left     : 0.25em;
}

.hover\:prose-2xl:hover > ul > li p{
  margin-top     : 0.8333333em;
  margin-bottom     : 0.8333333em;
}

.hover\:prose-2xl:hover > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.hover\:prose-2xl:hover > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.hover\:prose-2xl:hover > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.hover\:prose-2xl:hover > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.hover\:prose-2xl:hover ul ul, .hover\:prose-2xl:hover ul ol, .hover\:prose-2xl:hover ol ul, .hover\:prose-2xl:hover ol ol{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.hover\:prose-2xl:hover hr{
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.hover\:prose-2xl:hover hr + *{
  margin-top     : 0;
}

.hover\:prose-2xl:hover h2 + *{
  margin-top     : 0;
}

.hover\:prose-2xl:hover h3 + *{
  margin-top     : 0;
}

.hover\:prose-2xl:hover h4 + *{
  margin-top     : 0;
}

.hover\:prose-2xl:hover table{
  font-size     : 0.8333333em;
  line-height     : 1.4;
}

.hover\:prose-2xl:hover thead th{
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.hover\:prose-2xl:hover thead th:first-child{
  padding-left     : 0;
}

.hover\:prose-2xl:hover thead th:last-child{
  padding-right     : 0;
}

.hover\:prose-2xl:hover tbody td{
  padding-top     : 0.8em;
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.hover\:prose-2xl:hover tbody td:first-child{
  padding-left     : 0;
}

.hover\:prose-2xl:hover tbody td:last-child{
  padding-right     : 0;
}

.hover\:prose-2xl:hover > :first-child{
  margin-top     : 0;
}

.hover\:prose-2xl:hover > :last-child{
  margin-bottom     : 0;
}

.focus\:prose:focus{
  color     : #374151;
  max-width     : 65ch;
}

.focus\:prose:focus [class~="lead"]{
  color     : #4b5563;
  font-size     : 1.25em;
  line-height     : 1.6;
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.focus\:prose:focus a{
  color     : #5850ec;
  text-decoration     : none;
  font-weight     : 600;
}

.focus\:prose:focus strong{
  color     : #161e2e;
  font-weight     : 600;
}

.focus\:prose:focus ol{
  counter-reset     : list-counter;
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.focus\:prose:focus ol > li{
  position     : relative;
  counter-increment     : list-counter;
  padding-left     : 1.75em;
}

.focus\:prose:focus ol > li::before{
  content     : counter(list-counter) ".";
  position     : absolute;
  font-weight     : 400;
  color     : #6b7280;
}

.focus\:prose:focus ul > li{
  position     : relative;
  padding-left     : 1.75em;
}

.focus\:prose:focus ul > li::before{
  content     : "";
  position     : absolute;
  background-color     : #d2d6dc;
  border-radius     : 50%;
  width     : 0.375em;
  height     : 0.375em;
  top     : calc(0.875em - 0.1875em);
  left     : 0.25em;
}

.focus\:prose:focus hr{
  border-color     : #e5e7eb;
  border-top-width     : 1px;
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.focus\:prose:focus blockquote{
  font-weight     : 500;
  font-style     : italic;
  color     : #161e2e;
  border-left-width     : 0.25rem;
  border-left-color     : #e5e7eb;
  quotes     : "\201C""\201D""\2018""\2019";
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1em;
}

.focus\:prose:focus blockquote p:first-of-type::before{
  content     : open-quote;
}

.focus\:prose:focus blockquote p:last-of-type::after{
  content     : close-quote;
}

.focus\:prose:focus h1{
  color     : #1a202c;
  font-weight     : 800;
  font-size     : 2.25em;
  margin-top     : 0;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.focus\:prose:focus h2{
  color     : #1a202c;
  font-weight     : 700;
  font-size     : 1.5em;
  margin-top     : 2em;
  margin-bottom     : 1em;
  line-height     : 1.3333333;
}

.focus\:prose:focus h3{
  color     : #1a202c;
  font-weight     : 600;
  font-size     : 1.25em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.focus\:prose:focus h4{
  color     : #1a202c;
  font-weight     : 600;
  margin-top     : 1.5em;
  margin-bottom     : 0.5em;
  line-height     : 1.5;
}

.focus\:prose:focus figure figcaption{
  color     : #6b7280;
  font-size     : 0.875em;
  line-height     : 1.4285714;
  margin-top     : 0.8571429em;
}

.focus\:prose:focus code{
  color     : #161e2e;
  font-weight     : 600;
  font-size     : 0.875em;
}

.focus\:prose:focus code::before{
  content     : "`";
}

.focus\:prose:focus code::after{
  content     : "`";
}

.focus\:prose:focus pre{
  color     : #e5e7eb;
  background-color     : #252f3f;
  overflow-x     : auto;
  font-size     : 0.875em;
  line-height     : 1.7142857;
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
  border-radius     : 0.375rem;
  padding-top     : 0.8571429em;
  padding-right     : 1.1428571em;
  padding-bottom     : 0.8571429em;
  padding-left     : 1.1428571em;
}

.focus\:prose:focus pre code{
  background-color     : transparent;
  border-width     : 0;
  border-radius     : 0;
  padding     : 0;
  font-weight     : 400;
  color     : inherit;
  font-size     : inherit;
  font-family     : inherit;
  line-height     : inherit;
}

.focus\:prose:focus pre code::before{
  content     : "";
}

.focus\:prose:focus pre code::after{
  content     : "";
}

.focus\:prose:focus table{
  width     : 100%;
  table-layout     : auto;
  text-align     : left;
  margin-top     : 2em;
  margin-bottom     : 2em;
  font-size     : 0.875em;
  line-height     : 1.7142857;
}

.focus\:prose:focus thead{
  color     : #161e2e;
  font-weight     : 600;
  border-bottom-width     : 1px;
  border-bottom-color     : #d2d6dc;
}

.focus\:prose:focus thead th{
  vertical-align     : bottom;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.focus\:prose:focus tbody tr{
  border-bottom-width     : 1px;
  border-bottom-color     : #e5e7eb;
}

.focus\:prose:focus tbody tr:last-child{
  border-bottom-width     : 0;
}

.focus\:prose:focus tbody td{
  vertical-align     : top;
  padding-top     : 0.5714286em;
  padding-right     : 0.5714286em;
  padding-bottom     : 0.5714286em;
  padding-left     : 0.5714286em;
}

.focus\:prose:focus{
  font-size     : 1rem;
  line-height     : 1.75;
}

.focus\:prose:focus p{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.focus\:prose:focus img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose:focus video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose:focus figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose:focus figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.focus\:prose:focus h2 code{
  font-size     : 0.875em;
}

.focus\:prose:focus h3 code{
  font-size     : 0.9em;
}

.focus\:prose:focus ul{
  margin-top     : 1.25em;
  margin-bottom     : 1.25em;
}

.focus\:prose:focus li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.focus\:prose:focus ol > li:before{
  left     : 0;
}

.focus\:prose:focus > ul > li p{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.focus\:prose:focus > ul > li > *:first-child{
  margin-top     : 1.25em;
}

.focus\:prose:focus > ul > li > *:last-child{
  margin-bottom     : 1.25em;
}

.focus\:prose:focus > ol > li > *:first-child{
  margin-top     : 1.25em;
}

.focus\:prose:focus > ol > li > *:last-child{
  margin-bottom     : 1.25em;
}

.focus\:prose:focus ul ul, .focus\:prose:focus ul ol, .focus\:prose:focus ol ul, .focus\:prose:focus ol ol{
  margin-top     : 0.75em;
  margin-bottom     : 0.75em;
}

.focus\:prose:focus hr + *{
  margin-top     : 0;
}

.focus\:prose:focus h2 + *{
  margin-top     : 0;
}

.focus\:prose:focus h3 + *{
  margin-top     : 0;
}

.focus\:prose:focus h4 + *{
  margin-top     : 0;
}

.focus\:prose:focus thead th:first-child{
  padding-left     : 0;
}

.focus\:prose:focus thead th:last-child{
  padding-right     : 0;
}

.focus\:prose:focus tbody td:first-child{
  padding-left     : 0;
}

.focus\:prose:focus tbody td:last-child{
  padding-right     : 0;
}

.focus\:prose:focus > :first-child{
  margin-top     : 0;
}

.focus\:prose:focus > :last-child{
  margin-bottom     : 0;
}

.focus\:prose:focus h1, .focus\:prose:focus h2, .focus\:prose:focus h3, .focus\:prose:focus h4{
  color     : #161e2e;
}

.focus\:prose-sm:focus{
  font-size     : 0.875rem;
  line-height     : 1.7142857;
}

.focus\:prose-sm:focus p{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.focus\:prose-sm:focus [class~="lead"]{
  font-size     : 1.2857143em;
  line-height     : 1.5555556;
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.focus\:prose-sm:focus blockquote{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
  padding-left     : 1.1111111em;
}

.focus\:prose-sm:focus h1{
  font-size     : 2.1428571em;
  margin-top     : 0;
  margin-bottom     : 0.8em;
  line-height     : 1.2;
}

.focus\:prose-sm:focus h2{
  font-size     : 1.4285714em;
  margin-top     : 1.6em;
  margin-bottom     : 0.8em;
  line-height     : 1.4;
}

.focus\:prose-sm:focus h3{
  font-size     : 1.2857143em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.focus\:prose-sm:focus h4{
  margin-top     : 1.4285714em;
  margin-bottom     : 0.5714286em;
  line-height     : 1.4285714;
}

.focus\:prose-sm:focus img{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.focus\:prose-sm:focus video{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.focus\:prose-sm:focus figure{
  margin-top     : 1.7142857em;
  margin-bottom     : 1.7142857em;
}

.focus\:prose-sm:focus figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.focus\:prose-sm:focus figure figcaption{
  font-size     : 0.8571429em;
  line-height     : 1.3333333;
  margin-top     : 0.6666667em;
}

.focus\:prose-sm:focus code{
  font-size     : 0.8571429em;
}

.focus\:prose-sm:focus h2 code{
  font-size     : 0.9em;
}

.focus\:prose-sm:focus h3 code{
  font-size     : 0.8888889em;
}

.focus\:prose-sm:focus pre{
  font-size     : 0.8571429em;
  line-height     : 1.6666667;
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  border-radius     : 0.25rem;
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.focus\:prose-sm:focus ol{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.focus\:prose-sm:focus ul{
  margin-top     : 1.1428571em;
  margin-bottom     : 1.1428571em;
}

.focus\:prose-sm:focus li{
  margin-top     : 0.2857143em;
  margin-bottom     : 0.2857143em;
}

.focus\:prose-sm:focus ol > li{
  padding-left     : 1.5714286em;
}

.focus\:prose-sm:focus ol > li:before{
  left     : 0;
}

.focus\:prose-sm:focus ul > li{
  padding-left     : 1.5714286em;
}

.focus\:prose-sm:focus ul > li::before{
  height     : 0.3571429em;
  width     : 0.3571429em;
  top     : calc(0.8571429em - 0.1785714em);
  left     : 0.2142857em;
}

.focus\:prose-sm:focus > ul > li p{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.focus\:prose-sm:focus > ul > li > *:first-child{
  margin-top     : 1.1428571em;
}

.focus\:prose-sm:focus > ul > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.focus\:prose-sm:focus > ol > li > *:first-child{
  margin-top     : 1.1428571em;
}

.focus\:prose-sm:focus > ol > li > *:last-child{
  margin-bottom     : 1.1428571em;
}

.focus\:prose-sm:focus ul ul, .focus\:prose-sm:focus ul ol, .focus\:prose-sm:focus ol ul, .focus\:prose-sm:focus ol ol{
  margin-top     : 0.5714286em;
  margin-bottom     : 0.5714286em;
}

.focus\:prose-sm:focus hr{
  margin-top     : 2.8571429em;
  margin-bottom     : 2.8571429em;
}

.focus\:prose-sm:focus hr + *{
  margin-top     : 0;
}

.focus\:prose-sm:focus h2 + *{
  margin-top     : 0;
}

.focus\:prose-sm:focus h3 + *{
  margin-top     : 0;
}

.focus\:prose-sm:focus h4 + *{
  margin-top     : 0;
}

.focus\:prose-sm:focus table{
  font-size     : 0.8571429em;
  line-height     : 1.5;
}

.focus\:prose-sm:focus thead th{
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.focus\:prose-sm:focus thead th:first-child{
  padding-left     : 0;
}

.focus\:prose-sm:focus thead th:last-child{
  padding-right     : 0;
}

.focus\:prose-sm:focus tbody td{
  padding-top     : 0.6666667em;
  padding-right     : 1em;
  padding-bottom     : 0.6666667em;
  padding-left     : 1em;
}

.focus\:prose-sm:focus tbody td:first-child{
  padding-left     : 0;
}

.focus\:prose-sm:focus tbody td:last-child{
  padding-right     : 0;
}

.focus\:prose-sm:focus > :first-child{
  margin-top     : 0;
}

.focus\:prose-sm:focus > :last-child{
  margin-bottom     : 0;
}

.focus\:prose-lg:focus{
  font-size     : 1.125rem;
  line-height     : 1.7777778;
}

.focus\:prose-lg:focus p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-lg:focus [class~="lead"]{
  font-size     : 1.2222222em;
  line-height     : 1.4545455;
  margin-top     : 1.0909091em;
  margin-bottom     : 1.0909091em;
}

.focus\:prose-lg:focus blockquote{
  margin-top     : 1.6666667em;
  margin-bottom     : 1.6666667em;
  padding-left     : 1em;
}

.focus\:prose-lg:focus h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.8333333em;
  line-height     : 1;
}

.focus\:prose-lg:focus h2{
  font-size     : 1.6666667em;
  margin-top     : 1.8666667em;
  margin-bottom     : 1.0666667em;
  line-height     : 1.3333333;
}

.focus\:prose-lg:focus h3{
  font-size     : 1.3333333em;
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.focus\:prose-lg:focus h4{
  margin-top     : 1.7777778em;
  margin-bottom     : 0.4444444em;
  line-height     : 1.5555556;
}

.focus\:prose-lg:focus img{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.focus\:prose-lg:focus video{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.focus\:prose-lg:focus figure{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
}

.focus\:prose-lg:focus figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.focus\:prose-lg:focus figure figcaption{
  font-size     : 0.8888889em;
  line-height     : 1.5;
  margin-top     : 1em;
}

.focus\:prose-lg:focus code{
  font-size     : 0.8888889em;
}

.focus\:prose-lg:focus h2 code{
  font-size     : 0.8666667em;
}

.focus\:prose-lg:focus h3 code{
  font-size     : 0.875em;
}

.focus\:prose-lg:focus pre{
  font-size     : 0.8888889em;
  line-height     : 1.75;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.375rem;
  padding-top     : 1em;
  padding-right     : 1.5em;
  padding-bottom     : 1em;
  padding-left     : 1.5em;
}

.focus\:prose-lg:focus ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-lg:focus ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-lg:focus li{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.focus\:prose-lg:focus ol > li{
  padding-left     : 1.6666667em;
}

.focus\:prose-lg:focus ol > li:before{
  left     : 0;
}

.focus\:prose-lg:focus ul > li{
  padding-left     : 1.6666667em;
}

.focus\:prose-lg:focus ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8888889em - 0.1666667em);
  left     : 0.2222222em;
}

.focus\:prose-lg:focus > ul > li p{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.focus\:prose-lg:focus > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.focus\:prose-lg:focus > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.focus\:prose-lg:focus > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.focus\:prose-lg:focus > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.focus\:prose-lg:focus ul ul, .focus\:prose-lg:focus ul ol, .focus\:prose-lg:focus ol ul, .focus\:prose-lg:focus ol ol{
  margin-top     : 0.8888889em;
  margin-bottom     : 0.8888889em;
}

.focus\:prose-lg:focus hr{
  margin-top     : 3.1111111em;
  margin-bottom     : 3.1111111em;
}

.focus\:prose-lg:focus hr + *{
  margin-top     : 0;
}

.focus\:prose-lg:focus h2 + *{
  margin-top     : 0;
}

.focus\:prose-lg:focus h3 + *{
  margin-top     : 0;
}

.focus\:prose-lg:focus h4 + *{
  margin-top     : 0;
}

.focus\:prose-lg:focus table{
  font-size     : 0.8888889em;
  line-height     : 1.5;
}

.focus\:prose-lg:focus thead th{
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.focus\:prose-lg:focus thead th:first-child{
  padding-left     : 0;
}

.focus\:prose-lg:focus thead th:last-child{
  padding-right     : 0;
}

.focus\:prose-lg:focus tbody td{
  padding-top     : 0.75em;
  padding-right     : 0.75em;
  padding-bottom     : 0.75em;
  padding-left     : 0.75em;
}

.focus\:prose-lg:focus tbody td:first-child{
  padding-left     : 0;
}

.focus\:prose-lg:focus tbody td:last-child{
  padding-right     : 0;
}

.focus\:prose-lg:focus > :first-child{
  margin-top     : 0;
}

.focus\:prose-lg:focus > :last-child{
  margin-bottom     : 0;
}

.focus\:prose-xl:focus{
  font-size     : 1.25rem;
  line-height     : 1.8;
}

.focus\:prose-xl:focus p{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.focus\:prose-xl:focus [class~="lead"]{
  font-size     : 1.2em;
  line-height     : 1.5;
  margin-top     : 1em;
  margin-bottom     : 1em;
}

.focus\:prose-xl:focus blockquote{
  margin-top     : 1.6em;
  margin-bottom     : 1.6em;
  padding-left     : 1.0666667em;
}

.focus\:prose-xl:focus h1{
  font-size     : 2.8em;
  margin-top     : 0;
  margin-bottom     : 0.8571429em;
  line-height     : 1;
}

.focus\:prose-xl:focus h2{
  font-size     : 1.8em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.8888889em;
  line-height     : 1.1111111;
}

.focus\:prose-xl:focus h3{
  font-size     : 1.5em;
  margin-top     : 1.6em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.3333333;
}

.focus\:prose-xl:focus h4{
  margin-top     : 1.8em;
  margin-bottom     : 0.6em;
  line-height     : 1.6;
}

.focus\:prose-xl:focus img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-xl:focus video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-xl:focus figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-xl:focus figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.focus\:prose-xl:focus figure figcaption{
  font-size     : 0.9em;
  line-height     : 1.5555556;
  margin-top     : 1em;
}

.focus\:prose-xl:focus code{
  font-size     : 0.9em;
}

.focus\:prose-xl:focus h2 code{
  font-size     : 0.8611111em;
}

.focus\:prose-xl:focus h3 code{
  font-size     : 0.9em;
}

.focus\:prose-xl:focus pre{
  font-size     : 0.9em;
  line-height     : 1.7777778;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.1111111em;
  padding-right     : 1.3333333em;
  padding-bottom     : 1.1111111em;
  padding-left     : 1.3333333em;
}

.focus\:prose-xl:focus ol{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.focus\:prose-xl:focus ul{
  margin-top     : 1.2em;
  margin-bottom     : 1.2em;
}

.focus\:prose-xl:focus li{
  margin-top     : 0.6em;
  margin-bottom     : 0.6em;
}

.focus\:prose-xl:focus ol > li{
  padding-left     : 1.8em;
}

.focus\:prose-xl:focus ol > li:before{
  left     : 0;
}

.focus\:prose-xl:focus ul > li{
  padding-left     : 1.8em;
}

.focus\:prose-xl:focus ul > li::before{
  width     : 0.35em;
  height     : 0.35em;
  top     : calc(0.9em - 0.175em);
  left     : 0.25em;
}

.focus\:prose-xl:focus > ul > li p{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.focus\:prose-xl:focus > ul > li > *:first-child{
  margin-top     : 1.2em;
}

.focus\:prose-xl:focus > ul > li > *:last-child{
  margin-bottom     : 1.2em;
}

.focus\:prose-xl:focus > ol > li > *:first-child{
  margin-top     : 1.2em;
}

.focus\:prose-xl:focus > ol > li > *:last-child{
  margin-bottom     : 1.2em;
}

.focus\:prose-xl:focus ul ul, .focus\:prose-xl:focus ul ol, .focus\:prose-xl:focus ol ul, .focus\:prose-xl:focus ol ol{
  margin-top     : 0.8em;
  margin-bottom     : 0.8em;
}

.focus\:prose-xl:focus hr{
  margin-top     : 2.8em;
  margin-bottom     : 2.8em;
}

.focus\:prose-xl:focus hr + *{
  margin-top     : 0;
}

.focus\:prose-xl:focus h2 + *{
  margin-top     : 0;
}

.focus\:prose-xl:focus h3 + *{
  margin-top     : 0;
}

.focus\:prose-xl:focus h4 + *{
  margin-top     : 0;
}

.focus\:prose-xl:focus table{
  font-size     : 0.9em;
  line-height     : 1.5555556;
}

.focus\:prose-xl:focus thead th{
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.focus\:prose-xl:focus thead th:first-child{
  padding-left     : 0;
}

.focus\:prose-xl:focus thead th:last-child{
  padding-right     : 0;
}

.focus\:prose-xl:focus tbody td{
  padding-top     : 0.8888889em;
  padding-right     : 0.6666667em;
  padding-bottom     : 0.8888889em;
  padding-left     : 0.6666667em;
}

.focus\:prose-xl:focus tbody td:first-child{
  padding-left     : 0;
}

.focus\:prose-xl:focus tbody td:last-child{
  padding-right     : 0;
}

.focus\:prose-xl:focus > :first-child{
  margin-top     : 0;
}

.focus\:prose-xl:focus > :last-child{
  margin-bottom     : 0;
}

.focus\:prose-2xl:focus{
  font-size     : 1.5rem;
  line-height     : 1.6666667;
}

.focus\:prose-2xl:focus p{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-2xl:focus [class~="lead"]{
  font-size     : 1.25em;
  line-height     : 1.4666667;
  margin-top     : 1.0666667em;
  margin-bottom     : 1.0666667em;
}

.focus\:prose-2xl:focus blockquote{
  margin-top     : 1.7777778em;
  margin-bottom     : 1.7777778em;
  padding-left     : 1.1111111em;
}

.focus\:prose-2xl:focus h1{
  font-size     : 2.6666667em;
  margin-top     : 0;
  margin-bottom     : 0.875em;
  line-height     : 1;
}

.focus\:prose-2xl:focus h2{
  font-size     : 2em;
  margin-top     : 1.5em;
  margin-bottom     : 0.8333333em;
  line-height     : 1.0833333;
}

.focus\:prose-2xl:focus h3{
  font-size     : 1.5em;
  margin-top     : 1.5555556em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.2222222;
}

.focus\:prose-2xl:focus h4{
  margin-top     : 1.6666667em;
  margin-bottom     : 0.6666667em;
  line-height     : 1.5;
}

.focus\:prose-2xl:focus img{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-2xl:focus video{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-2xl:focus figure{
  margin-top     : 2em;
  margin-bottom     : 2em;
}

.focus\:prose-2xl:focus figure > *{
  margin-top     : 0;
  margin-bottom     : 0;
}

.focus\:prose-2xl:focus figure figcaption{
  font-size     : 0.8333333em;
  line-height     : 1.6;
  margin-top     : 1em;
}

.focus\:prose-2xl:focus code{
  font-size     : 0.8333333em;
}

.focus\:prose-2xl:focus h2 code{
  font-size     : 0.875em;
}

.focus\:prose-2xl:focus h3 code{
  font-size     : 0.8888889em;
}

.focus\:prose-2xl:focus pre{
  font-size     : 0.8333333em;
  line-height     : 1.8;
  margin-top     : 2em;
  margin-bottom     : 2em;
  border-radius     : 0.5rem;
  padding-top     : 1.2em;
  padding-right     : 1.6em;
  padding-bottom     : 1.2em;
  padding-left     : 1.6em;
}

.focus\:prose-2xl:focus ol{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-2xl:focus ul{
  margin-top     : 1.3333333em;
  margin-bottom     : 1.3333333em;
}

.focus\:prose-2xl:focus li{
  margin-top     : 0.5em;
  margin-bottom     : 0.5em;
}

.focus\:prose-2xl:focus ol > li{
  padding-left     : 1.6666667em;
}

.focus\:prose-2xl:focus ol > li:before{
  left     : 0;
}

.focus\:prose-2xl:focus ul > li{
  padding-left     : 1.6666667em;
}

.focus\:prose-2xl:focus ul > li::before{
  width     : 0.3333333em;
  height     : 0.3333333em;
  top     : calc(0.8333333em - 0.1666667em);
  left     : 0.25em;
}

.focus\:prose-2xl:focus > ul > li p{
  margin-top     : 0.8333333em;
  margin-bottom     : 0.8333333em;
}

.focus\:prose-2xl:focus > ul > li > *:first-child{
  margin-top     : 1.3333333em;
}

.focus\:prose-2xl:focus > ul > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.focus\:prose-2xl:focus > ol > li > *:first-child{
  margin-top     : 1.3333333em;
}

.focus\:prose-2xl:focus > ol > li > *:last-child{
  margin-bottom     : 1.3333333em;
}

.focus\:prose-2xl:focus ul ul, .focus\:prose-2xl:focus ul ol, .focus\:prose-2xl:focus ol ul, .focus\:prose-2xl:focus ol ol{
  margin-top     : 0.6666667em;
  margin-bottom     : 0.6666667em;
}

.focus\:prose-2xl:focus hr{
  margin-top     : 3em;
  margin-bottom     : 3em;
}

.focus\:prose-2xl:focus hr + *{
  margin-top     : 0;
}

.focus\:prose-2xl:focus h2 + *{
  margin-top     : 0;
}

.focus\:prose-2xl:focus h3 + *{
  margin-top     : 0;
}

.focus\:prose-2xl:focus h4 + *{
  margin-top     : 0;
}

.focus\:prose-2xl:focus table{
  font-size     : 0.8333333em;
  line-height     : 1.4;
}

.focus\:prose-2xl:focus thead th{
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.focus\:prose-2xl:focus thead th:first-child{
  padding-left     : 0;
}

.focus\:prose-2xl:focus thead th:last-child{
  padding-right     : 0;
}

.focus\:prose-2xl:focus tbody td{
  padding-top     : 0.8em;
  padding-right     : 0.6em;
  padding-bottom     : 0.8em;
  padding-left     : 0.6em;
}

.focus\:prose-2xl:focus tbody td:first-child{
  padding-left     : 0;
}

.focus\:prose-2xl:focus tbody td:last-child{
  padding-right     : 0;
}

.focus\:prose-2xl:focus > :first-child{
  margin-top     : 0;
}

.focus\:prose-2xl:focus > :last-child{
  margin-bottom     : 0;
}

.debug-screens::before{
  position     : fixed;
  z-index     : 2147483647;
  bottom     : 0;
  left     : 0;
  padding     : .3333333em .5em;
  font-size     : 12px;
  line-height     : 1;
  font-family     : sans-serif;
  background-color     : #000;
  color     : #fff;
  box-shadow     : 0 0 0 1px #fff;
  content     : 'screen: _';
}

@media (min-width: 640px){
  .debug-screens::before{
    content     : 'screen: sm';
  }
}

@media (min-width: 768px){
  .debug-screens::before{
    content     : 'screen: md';
  }
}

@media (min-width: 1024px){
  .debug-screens::before{
    content     : 'screen: lg';
  }
}

@media (min-width: 1280px){
  .debug-screens::before{
    content     : 'screen: xl';
  }
}

/* purgecss end ignore */

.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-reverse > :not(template) ~ :not(template){
  --space-y-reverse     : 1 !important;
}

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

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

.group:hover .group-hover\:-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;
}

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

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

.hover\:space-y-0:hover > :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;
}

.hover\:space-x-0:hover > :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;
}

.hover\:space-y-1:hover > :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;
}

.hover\:space-x-1:hover > :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;
}

.hover\:space-y-2:hover > :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;
}

.hover\:space-x-2:hover > :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;
}

.hover\:space-y-3:hover > :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;
}

.hover\:space-x-3:hover > :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;
}

.hover\:space-y-4:hover > :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;
}

.hover\:space-x-4:hover > :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;
}

.hover\:space-y-5:hover > :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;
}

.hover\:space-x-5:hover > :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;
}

.hover\:space-y-6:hover > :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;
}

.hover\:space-x-6:hover > :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;
}

.hover\:space-y-7:hover > :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;
}

.hover\:space-x-7:hover > :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;
}

.hover\:space-y-8:hover > :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;
}

.hover\:space-x-8:hover > :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;
}

.hover\:space-y-9:hover > :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;
}

.hover\:space-x-9:hover > :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;
}

.hover\:space-y-10:hover > :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;
}

.hover\:space-x-10:hover > :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;
}

.hover\:space-y-11:hover > :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;
}

.hover\:space-x-11:hover > :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;
}

.hover\:space-y-12:hover > :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;
}

.hover\:space-x-12:hover > :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;
}

.hover\:space-y-13:hover > :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;
}

.hover\:space-x-13:hover > :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;
}

.hover\:space-y-14:hover > :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;
}

.hover\:space-x-14:hover > :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;
}

.hover\:space-y-15:hover > :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;
}

.hover\:space-x-15:hover > :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;
}

.hover\:space-y-16:hover > :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;
}

.hover\:space-x-16:hover > :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;
}

.hover\:space-y-20:hover > :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;
}

.hover\:space-x-20:hover > :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;
}

.hover\:space-y-24:hover > :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;
}

.hover\:space-x-24:hover > :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;
}

.hover\:space-y-28:hover > :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;
}

.hover\:space-x-28:hover > :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;
}

.hover\:space-y-32:hover > :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;
}

.hover\:space-x-32:hover > :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;
}

.hover\:space-y-36:hover > :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;
}

.hover\:space-x-36:hover > :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;
}

.hover\:space-y-40:hover > :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;
}

.hover\:space-x-40:hover > :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;
}

.hover\:space-y-44:hover > :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;
}

.hover\:space-x-44:hover > :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;
}

.hover\:space-y-48:hover > :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;
}

.hover\:space-x-48:hover > :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;
}

.hover\:space-y-52:hover > :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;
}

.hover\:space-x-52:hover > :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;
}

.hover\:space-y-56:hover > :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;
}

.hover\:space-x-56:hover > :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;
}

.hover\:space-y-60:hover > :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;
}

.hover\:space-x-60:hover > :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;
}

.hover\:space-y-64:hover > :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;
}

.hover\:space-x-64:hover > :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;
}

.hover\:space-y-72:hover > :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;
}

.hover\:space-x-72:hover > :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;
}

.hover\:space-y-80:hover > :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;
}

.hover\:space-x-80:hover > :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;
}

.hover\:space-y-96:hover > :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;
}

.hover\:space-x-96:hover > :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;
}

.hover\:space-y-px:hover > :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;
}

.hover\:space-x-px:hover > :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;
}

.hover\:space-y-0\.5:hover > :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;
}

.hover\:space-x-0\.5:hover > :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;
}

.hover\:space-y-1\.5:hover > :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;
}

.hover\:space-x-1\.5:hover > :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;
}

.hover\:space-y-2\.5:hover > :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;
}

.hover\:space-x-2\.5:hover > :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;
}

.hover\:space-y-3\.5:hover > :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;
}

.hover\:space-x-3\.5:hover > :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;
}

.hover\:space-y-1\/2:hover > :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;
}

.hover\:space-x-1\/2:hover > :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;
}

.hover\:space-y-1\/3:hover > :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;
}

.hover\:space-x-1\/3:hover > :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;
}

.hover\:space-y-2\/3:hover > :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;
}

.hover\:space-x-2\/3:hover > :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;
}

.hover\:space-y-1\/4:hover > :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;
}

.hover\:space-x-1\/4:hover > :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;
}

.hover\:space-y-2\/4:hover > :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;
}

.hover\:space-x-2\/4:hover > :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;
}

.hover\:space-y-3\/4:hover > :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;
}

.hover\:space-x-3\/4:hover > :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;
}

.hover\:space-y-1\/5:hover > :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;
}

.hover\:space-x-1\/5:hover > :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;
}

.hover\:space-y-2\/5:hover > :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;
}

.hover\:space-x-2\/5:hover > :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;
}

.hover\:space-y-3\/5:hover > :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;
}

.hover\:space-x-3\/5:hover > :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;
}

.hover\:space-y-4\/5:hover > :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;
}

.hover\:space-x-4\/5:hover > :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;
}

.hover\:space-y-1\/6:hover > :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;
}

.hover\:space-x-1\/6:hover > :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;
}

.hover\:space-y-2\/6:hover > :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;
}

.hover\:space-x-2\/6:hover > :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;
}

.hover\:space-y-3\/6:hover > :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;
}

.hover\:space-x-3\/6:hover > :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;
}

.hover\:space-y-4\/6:hover > :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;
}

.hover\:space-x-4\/6:hover > :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;
}

.hover\:space-y-5\/6:hover > :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;
}

.hover\:space-x-5\/6:hover > :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;
}

.hover\:space-y-1\/12:hover > :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;
}

.hover\:space-x-1\/12:hover > :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;
}

.hover\:space-y-2\/12:hover > :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;
}

.hover\:space-x-2\/12:hover > :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;
}

.hover\:space-y-3\/12:hover > :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;
}

.hover\:space-x-3\/12:hover > :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;
}

.hover\:space-y-4\/12:hover > :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;
}

.hover\:space-x-4\/12:hover > :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;
}

.hover\:space-y-5\/12:hover > :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;
}

.hover\:space-x-5\/12:hover > :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;
}

.hover\:space-y-6\/12:hover > :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;
}

.hover\:space-x-6\/12:hover > :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;
}

.hover\:space-y-7\/12:hover > :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;
}

.hover\:space-x-7\/12:hover > :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;
}

.hover\:space-y-8\/12:hover > :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;
}

.hover\:space-x-8\/12:hover > :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;
}

.hover\:space-y-9\/12:hover > :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;
}

.hover\:space-x-9\/12:hover > :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;
}

.hover\:space-y-10\/12:hover > :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;
}

.hover\:space-x-10\/12:hover > :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;
}

.hover\:space-y-11\/12:hover > :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;
}

.hover\:space-x-11\/12:hover > :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;
}

.hover\:space-y-full:hover > :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;
}

.hover\:space-x-full:hover > :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;
}

.hover\:-space-y-1:hover > :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;
}

.hover\:-space-x-1:hover > :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;
}

.hover\:-space-y-2:hover > :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;
}

.hover\:-space-x-2:hover > :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;
}

.hover\:-space-y-3:hover > :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;
}

.hover\:-space-x-3:hover > :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;
}

.hover\:-space-y-4:hover > :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;
}

.hover\:-space-x-4:hover > :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;
}

.hover\:-space-y-5:hover > :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;
}

.hover\:-space-x-5:hover > :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;
}

.hover\:-space-y-6:hover > :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;
}

.hover\:-space-x-6:hover > :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;
}

.hover\:-space-y-7:hover > :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;
}

.hover\:-space-x-7:hover > :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;
}

.hover\:-space-y-8:hover > :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;
}

.hover\:-space-x-8:hover > :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;
}

.hover\:-space-y-9:hover > :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;
}

.hover\:-space-x-9:hover > :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;
}

.hover\:-space-y-10:hover > :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;
}

.hover\:-space-x-10:hover > :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;
}

.hover\:-space-y-11:hover > :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;
}

.hover\:-space-x-11:hover > :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;
}

.hover\:-space-y-12:hover > :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;
}

.hover\:-space-x-12:hover > :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;
}

.hover\:-space-y-13:hover > :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;
}

.hover\:-space-x-13:hover > :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;
}

.hover\:-space-y-14:hover > :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;
}

.hover\:-space-x-14:hover > :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;
}

.hover\:-space-y-15:hover > :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;
}

.hover\:-space-x-15:hover > :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;
}

.hover\:-space-y-16:hover > :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;
}

.hover\:-space-x-16:hover > :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;
}

.hover\:-space-y-20:hover > :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;
}

.hover\:-space-x-20:hover > :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;
}

.hover\:-space-y-24:hover > :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;
}

.hover\:-space-x-24:hover > :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;
}

.hover\:-space-y-28:hover > :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;
}

.hover\:-space-x-28:hover > :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;
}

.hover\:-space-y-32:hover > :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;
}

.hover\:-space-x-32:hover > :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;
}

.hover\:-space-y-36:hover > :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;
}

.hover\:-space-x-36:hover > :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;
}

.hover\:-space-y-40:hover > :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;
}

.hover\:-space-x-40:hover > :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;
}

.hover\:-space-y-44:hover > :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;
}

.hover\:-space-x-44:hover > :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;
}

.hover\:-space-y-48:hover > :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;
}

.hover\:-space-x-48:hover > :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;
}

.hover\:-space-y-52:hover > :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;
}

.hover\:-space-x-52:hover > :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;
}

.hover\:-space-y-56:hover > :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;
}

.hover\:-space-x-56:hover > :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;
}

.hover\:-space-y-60:hover > :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;
}

.hover\:-space-x-60:hover > :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;
}

.hover\:-space-y-64:hover > :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;
}

.hover\:-space-x-64:hover > :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;
}

.hover\:-space-y-72:hover > :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;
}

.hover\:-space-x-72:hover > :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;
}

.hover\:-space-y-80:hover > :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;
}

.hover\:-space-x-80:hover > :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;
}

.hover\:-space-y-96:hover > :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;
}

.hover\:-space-x-96:hover > :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;
}

.hover\:-space-y-px:hover > :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;
}

.hover\:-space-x-px:hover > :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;
}

.hover\:-space-y-0\.5:hover > :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;
}

.hover\:-space-x-0\.5:hover > :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;
}

.hover\:-space-y-1\.5:hover > :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;
}

.hover\:-space-x-1\.5:hover > :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;
}

.hover\:-space-y-2\.5:hover > :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;
}

.hover\:-space-x-2\.5:hover > :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;
}

.hover\:-space-y-3\.5:hover > :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;
}

.hover\:-space-x-3\.5:hover > :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;
}

.hover\:-space-y-1\/2:hover > :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;
}

.hover\:-space-x-1\/2:hover > :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;
}

.hover\:-space-y-1\/3:hover > :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;
}

.hover\:-space-x-1\/3:hover > :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;
}

.hover\:-space-y-2\/3:hover > :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;
}

.hover\:-space-x-2\/3:hover > :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;
}

.hover\:-space-y-1\/4:hover > :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;
}

.hover\:-space-x-1\/4:hover > :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;
}

.hover\:-space-y-2\/4:hover > :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;
}

.hover\:-space-x-2\/4:hover > :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;
}

.hover\:-space-y-3\/4:hover > :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;
}

.hover\:-space-x-3\/4:hover > :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;
}

.hover\:-space-y-1\/5:hover > :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;
}

.hover\:-space-x-1\/5:hover > :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;
}

.hover\:-space-y-2\/5:hover > :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;
}

.hover\:-space-x-2\/5:hover > :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;
}

.hover\:-space-y-3\/5:hover > :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;
}

.hover\:-space-x-3\/5:hover > :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;
}

.hover\:-space-y-4\/5:hover > :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;
}

.hover\:-space-x-4\/5:hover > :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;
}

.hover\:-space-y-1\/6:hover > :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;
}

.hover\:-space-x-1\/6:hover > :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;
}

.hover\:-space-y-2\/6:hover > :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;
}

.hover\:-space-x-2\/6:hover > :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;
}

.hover\:-space-y-3\/6:hover > :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;
}

.hover\:-space-x-3\/6:hover > :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;
}

.hover\:-space-y-4\/6:hover > :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;
}

.hover\:-space-x-4\/6:hover > :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;
}

.hover\:-space-y-5\/6:hover > :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;
}

.hover\:-space-x-5\/6:hover > :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;
}

.hover\:-space-y-1\/12:hover > :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;
}

.hover\:-space-x-1\/12:hover > :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;
}

.hover\:-space-y-2\/12:hover > :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;
}

.hover\:-space-x-2\/12:hover > :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;
}

.hover\:-space-y-3\/12:hover > :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;
}

.hover\:-space-x-3\/12:hover > :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;
}

.hover\:-space-y-4\/12:hover > :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;
}

.hover\:-space-x-4\/12:hover > :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;
}

.hover\:-space-y-5\/12:hover > :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;
}

.hover\:-space-x-5\/12:hover > :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;
}

.hover\:-space-y-6\/12:hover > :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;
}

.hover\:-space-x-6\/12:hover > :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;
}

.hover\:-space-y-7\/12:hover > :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;
}

.hover\:-space-x-7\/12:hover > :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;
}

.hover\:-space-y-8\/12:hover > :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;
}

.hover\:-space-x-8\/12:hover > :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;
}

.hover\:-space-y-9\/12:hover > :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;
}

.hover\:-space-x-9\/12:hover > :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;
}

.hover\:-space-y-10\/12:hover > :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;
}

.hover\:-space-x-10\/12:hover > :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;
}

.hover\:-space-y-11\/12:hover > :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;
}

.hover\:-space-x-11\/12:hover > :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;
}

.hover\:-space-y-full:hover > :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;
}

.hover\:-space-x-full:hover > :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;
}

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

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

.focus\:space-y-0:focus > :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;
}

.focus\:space-x-0:focus > :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;
}

.focus\:space-y-1:focus > :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;
}

.focus\:space-x-1:focus > :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;
}

.focus\:space-y-2:focus > :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;
}

.focus\:space-x-2:focus > :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;
}

.focus\:space-y-3:focus > :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;
}

.focus\:space-x-3:focus > :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;
}

.focus\:space-y-4:focus > :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;
}

.focus\:space-x-4:focus > :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;
}

.focus\:space-y-5:focus > :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;
}

.focus\:space-x-5:focus > :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;
}

.focus\:space-y-6:focus > :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;
}

.focus\:space-x-6:focus > :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;
}

.focus\:space-y-7:focus > :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;
}

.focus\:space-x-7:focus > :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;
}

.focus\:space-y-8:focus > :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;
}

.focus\:space-x-8:focus > :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;
}

.focus\:space-y-9:focus > :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;
}

.focus\:space-x-9:focus > :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;
}

.focus\:space-y-10:focus > :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;
}

.focus\:space-x-10:focus > :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;
}

.focus\:space-y-11:focus > :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;
}

.focus\:space-x-11:focus > :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;
}

.focus\:space-y-12:focus > :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;
}

.focus\:space-x-12:focus > :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;
}

.focus\:space-y-13:focus > :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;
}

.focus\:space-x-13:focus > :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;
}

.focus\:space-y-14:focus > :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;
}

.focus\:space-x-14:focus > :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;
}

.focus\:space-y-15:focus > :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;
}

.focus\:space-x-15:focus > :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;
}

.focus\:space-y-16:focus > :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;
}

.focus\:space-x-16:focus > :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;
}

.focus\:space-y-20:focus > :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;
}

.focus\:space-x-20:focus > :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;
}

.focus\:space-y-24:focus > :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;
}

.focus\:space-x-24:focus > :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;
}

.focus\:space-y-28:focus > :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;
}

.focus\:space-x-28:focus > :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;
}

.focus\:space-y-32:focus > :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;
}

.focus\:space-x-32:focus > :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;
}

.focus\:space-y-36:focus > :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;
}

.focus\:space-x-36:focus > :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;
}

.focus\:space-y-40:focus > :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;
}

.focus\:space-x-40:focus > :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;
}

.focus\:space-y-44:focus > :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;
}

.focus\:space-x-44:focus > :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;
}

.focus\:space-y-48:focus > :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;
}

.focus\:space-x-48:focus > :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;
}

.focus\:space-y-52:focus > :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;
}

.focus\:space-x-52:focus > :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;
}

.focus\:space-y-56:focus > :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;
}

.focus\:space-x-56:focus > :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;
}

.focus\:space-y-60:focus > :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;
}

.focus\:space-x-60:focus > :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;
}

.focus\:space-y-64:focus > :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;
}

.focus\:space-x-64:focus > :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;
}

.focus\:space-y-72:focus > :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;
}

.focus\:space-x-72:focus > :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;
}

.focus\:space-y-80:focus > :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;
}

.focus\:space-x-80:focus > :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;
}

.focus\:space-y-96:focus > :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;
}

.focus\:space-x-96:focus > :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;
}

.focus\:space-y-px:focus > :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;
}

.focus\:space-x-px:focus > :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;
}

.focus\:space-y-0\.5:focus > :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;
}

.focus\:space-x-0\.5:focus > :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;
}

.focus\:space-y-1\.5:focus > :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;
}

.focus\:space-x-1\.5:focus > :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;
}

.focus\:space-y-2\.5:focus > :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;
}

.focus\:space-x-2\.5:focus > :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;
}

.focus\:space-y-3\.5:focus > :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;
}

.focus\:space-x-3\.5:focus > :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;
}

.focus\:space-y-1\/2:focus > :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;
}

.focus\:space-x-1\/2:focus > :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;
}

.focus\:space-y-1\/3:focus > :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;
}

.focus\:space-x-1\/3:focus > :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;
}

.focus\:space-y-2\/3:focus > :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;
}

.focus\:space-x-2\/3:focus > :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;
}

.focus\:space-y-1\/4:focus > :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;
}

.focus\:space-x-1\/4:focus > :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;
}

.focus\:space-y-2\/4:focus > :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;
}

.focus\:space-x-2\/4:focus > :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;
}

.focus\:space-y-3\/4:focus > :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;
}

.focus\:space-x-3\/4:focus > :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;
}

.focus\:space-y-1\/5:focus > :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;
}

.focus\:space-x-1\/5:focus > :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;
}

.focus\:space-y-2\/5:focus > :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;
}

.focus\:space-x-2\/5:focus > :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;
}

.focus\:space-y-3\/5:focus > :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;
}

.focus\:space-x-3\/5:focus > :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;
}

.focus\:space-y-4\/5:focus > :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;
}

.focus\:space-x-4\/5:focus > :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;
}

.focus\:space-y-1\/6:focus > :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;
}

.focus\:space-x-1\/6:focus > :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;
}

.focus\:space-y-2\/6:focus > :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;
}

.focus\:space-x-2\/6:focus > :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;
}

.focus\:space-y-3\/6:focus > :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;
}

.focus\:space-x-3\/6:focus > :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;
}

.focus\:space-y-4\/6:focus > :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;
}

.focus\:space-x-4\/6:focus > :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;
}

.focus\:space-y-5\/6:focus > :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;
}

.focus\:space-x-5\/6:focus > :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;
}

.focus\:space-y-1\/12:focus > :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;
}

.focus\:space-x-1\/12:focus > :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;
}

.focus\:space-y-2\/12:focus > :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;
}

.focus\:space-x-2\/12:focus > :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;
}

.focus\:space-y-3\/12:focus > :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;
}

.focus\:space-x-3\/12:focus > :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;
}

.focus\:space-y-4\/12:focus > :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;
}

.focus\:space-x-4\/12:focus > :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;
}

.focus\:space-y-5\/12:focus > :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;
}

.focus\:space-x-5\/12:focus > :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;
}

.focus\:space-y-6\/12:focus > :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;
}

.focus\:space-x-6\/12:focus > :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;
}

.focus\:space-y-7\/12:focus > :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;
}

.focus\:space-x-7\/12:focus > :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;
}

.focus\:space-y-8\/12:focus > :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;
}

.focus\:space-x-8\/12:focus > :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;
}

.focus\:space-y-9\/12:focus > :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;
}

.focus\:space-x-9\/12:focus > :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;
}

.focus\:space-y-10\/12:focus > :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;
}

.focus\:space-x-10\/12:focus > :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;
}

.focus\:space-y-11\/12:focus > :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;
}

.focus\:space-x-11\/12:focus > :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;
}

.focus\:space-y-full:focus > :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;
}

.focus\:space-x-full:focus > :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;
}

.focus\:-space-y-1:focus > :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;
}

.focus\:-space-x-1:focus > :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;
}

.focus\:-space-y-2:focus > :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;
}

.focus\:-space-x-2:focus > :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;
}

.focus\:-space-y-3:focus > :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;
}

.focus\:-space-x-3:focus > :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;
}

.focus\:-space-y-4:focus > :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;
}

.focus\:-space-x-4:focus > :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;
}

.focus\:-space-y-5:focus > :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;
}

.focus\:-space-x-5:focus > :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;
}

.focus\:-space-y-6:focus > :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;
}

.focus\:-space-x-6:focus > :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;
}

.focus\:-space-y-7:focus > :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;
}

.focus\:-space-x-7:focus > :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;
}

.focus\:-space-y-8:focus > :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;
}

.focus\:-space-x-8:focus > :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;
}

.focus\:-space-y-9:focus > :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;
}

.focus\:-space-x-9:focus > :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;
}

.focus\:-space-y-10:focus > :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;
}

.focus\:-space-x-10:focus > :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;
}

.focus\:-space-y-11:focus > :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;
}

.focus\:-space-x-11:focus > :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;
}

.focus\:-space-y-12:focus > :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;
}

.focus\:-space-x-12:focus > :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;
}

.focus\:-space-y-13:focus > :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;
}

.focus\:-space-x-13:focus > :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;
}

.focus\:-space-y-14:focus > :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;
}

.focus\:-space-x-14:focus > :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;
}

.focus\:-space-y-15:focus > :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;
}

.focus\:-space-x-15:focus > :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;
}

.focus\:-space-y-16:focus > :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;
}

.focus\:-space-x-16:focus > :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;
}

.focus\:-space-y-20:focus > :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;
}

.focus\:-space-x-20:focus > :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;
}

.focus\:-space-y-24:focus > :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;
}

.focus\:-space-x-24:focus > :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;
}

.focus\:-space-y-28:focus > :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;
}

.focus\:-space-x-28:focus > :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;
}

.focus\:-space-y-32:focus > :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;
}

.focus\:-space-x-32:focus > :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;
}

.focus\:-space-y-36:focus > :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;
}

.focus\:-space-x-36:focus > :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;
}

.focus\:-space-y-40:focus > :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;
}

.focus\:-space-x-40:focus > :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;
}

.focus\:-space-y-44:focus > :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;
}

.focus\:-space-x-44:focus > :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;
}

.focus\:-space-y-48:focus > :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;
}

.focus\:-space-x-48:focus > :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;
}

.focus\:-space-y-52:focus > :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;
}

.focus\:-space-x-52:focus > :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;
}

.focus\:-space-y-56:focus > :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;
}

.focus\:-space-x-56:focus > :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;
}

.focus\:-space-y-60:focus > :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;
}

.focus\:-space-x-60:focus > :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;
}

.focus\:-space-y-64:focus > :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;
}

.focus\:-space-x-64:focus > :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;
}

.focus\:-space-y-72:focus > :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;
}

.focus\:-space-x-72:focus > :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;
}

.focus\:-space-y-80:focus > :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;
}

.focus\:-space-x-80:focus > :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;
}

.focus\:-space-y-96:focus > :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;
}

.focus\:-space-x-96:focus > :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;
}

.focus\:-space-y-px:focus > :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;
}

.focus\:-space-x-px:focus > :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;
}

.focus\:-space-y-0\.5:focus > :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;
}

.focus\:-space-x-0\.5:focus > :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;
}

.focus\:-space-y-1\.5:focus > :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;
}

.focus\:-space-x-1\.5:focus > :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;
}

.focus\:-space-y-2\.5:focus > :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;
}

.focus\:-space-x-2\.5:focus > :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;
}

.focus\:-space-y-3\.5:focus > :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;
}

.focus\:-space-x-3\.5:focus > :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;
}

.focus\:-space-y-1\/2:focus > :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;
}

.focus\:-space-x-1\/2:focus > :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;
}

.focus\:-space-y-1\/3:focus > :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;
}

.focus\:-space-x-1\/3:focus > :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;
}

.focus\:-space-y-2\/3:focus > :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;
}

.focus\:-space-x-2\/3:focus > :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;
}

.focus\:-space-y-1\/4:focus > :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;
}

.focus\:-space-x-1\/4:focus > :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;
}

.focus\:-space-y-2\/4:focus > :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;
}

.focus\:-space-x-2\/4:focus > :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;
}

.focus\:-space-y-3\/4:focus > :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;
}

.focus\:-space-x-3\/4:focus > :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;
}

.focus\:-space-y-1\/5:focus > :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;
}

.focus\:-space-x-1\/5:focus > :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;
}

.focus\:-space-y-2\/5:focus > :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;
}

.focus\:-space-x-2\/5:focus > :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;
}

.focus\:-space-y-3\/5:focus > :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;
}

.focus\:-space-x-3\/5:focus > :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;
}

.focus\:-space-y-4\/5:focus > :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;
}

.focus\:-space-x-4\/5:focus > :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;
}

.focus\:-space-y-1\/6:focus > :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;
}

.focus\:-space-x-1\/6:focus > :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;
}

.focus\:-space-y-2\/6:focus > :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;
}

.focus\:-space-x-2\/6:focus > :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;
}

.focus\:-space-y-3\/6:focus > :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;
}

.focus\:-space-x-3\/6:focus > :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;
}

.focus\:-space-y-4\/6:focus > :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;
}

.focus\:-space-x-4\/6:focus > :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;
}

.focus\:-space-y-5\/6:focus > :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;
}

.focus\:-space-x-5\/6:focus > :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;
}

.focus\:-space-y-1\/12:focus > :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;
}

.focus\:-space-x-1\/12:focus > :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;
}

.focus\:-space-y-2\/12:focus > :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;
}

.focus\:-space-x-2\/12:focus > :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;
}

.focus\:-space-y-3\/12:focus > :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;
}

.focus\:-space-x-3\/12:focus > :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;
}

.focus\:-space-y-4\/12:focus > :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;
}

.focus\:-space-x-4\/12:focus > :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;
}

.focus\:-space-y-5\/12:focus > :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;
}

.focus\:-space-x-5\/12:focus > :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;
}

.focus\:-space-y-6\/12:focus > :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;
}

.focus\:-space-x-6\/12:focus > :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;
}

.focus\:-space-y-7\/12:focus > :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;
}

.focus\:-space-x-7\/12:focus > :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;
}

.focus\:-space-y-8\/12:focus > :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;
}

.focus\:-space-x-8\/12:focus > :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;
}

.focus\:-space-y-9\/12:focus > :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;
}

.focus\:-space-x-9\/12:focus > :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;
}

.focus\:-space-y-10\/12:focus > :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;
}

.focus\:-space-x-10\/12:focus > :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;
}

.focus\:-space-y-11\/12:focus > :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;
}

.focus\:-space-x-11\/12:focus > :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;
}

.focus\:-space-y-full:focus > :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;
}

.focus\:-space-x-full:focus > :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;
}

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

.focus\:space-x-reverse:focus > :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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:divide-y-reverse > :not(template) ~ :not(template){
  --divide-y-reverse     : 1 !important;
}

.group:hover .group-hover\:divide-x-reverse > :not(template) ~ :not(template){
  --divide-x-reverse     : 1 !important;
}

.hover\:divide-y-0:hover > :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;
}

.hover\:divide-x-0:hover > :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;
}

.hover\:divide-y-2:hover > :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;
}

.hover\:divide-x-2:hover > :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;
}

.hover\:divide-y-4:hover > :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;
}

.hover\:divide-x-4:hover > :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;
}

.hover\:divide-y-8:hover > :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;
}

.hover\:divide-x-8:hover > :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;
}

.hover\:divide-y:hover > :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;
}

.hover\:divide-x:hover > :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;
}

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

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

.focus\:divide-y-0:focus > :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;
}

.focus\:divide-x-0:focus > :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;
}

.focus\:divide-y-2:focus > :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;
}

.focus\:divide-x-2:focus > :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;
}

.focus\:divide-y-4:focus > :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;
}

.focus\:divide-x-4:focus > :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;
}

.focus\:divide-y-8:focus > :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;
}

.focus\:divide-x-8:focus > :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;
}

.focus\:divide-y:focus > :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;
}

.focus\:divide-x:focus > :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;
}

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

.focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
  --divide-x-reverse     : 1 !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-cool-gray-50 > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, 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-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-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     : #73230d !important;
  border-color     : rgba(115, 35, 13, 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-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-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-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-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-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-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-blue-brand > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
}

.group:hover .group-hover\:divide-transparent > :not(template) ~ :not(template){
  border-color     : transparent !important;
}

.group:hover .group-hover\:divide-white > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
}

.group:hover .group-hover\:divide-black > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:divide-cool-gray-50 > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:divide-orange-900 > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:divide-blue-brand > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
}

.hover\:divide-transparent:hover > :not(template) ~ :not(template){
  border-color     : transparent !important;
}

.hover\:divide-white:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
}

.hover\:divide-black:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
}

.hover\:divide-gray-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f9fafb !important;
  border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
}

.hover\:divide-gray-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f4f5f7 !important;
  border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
}

.hover\:divide-gray-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e5e7eb !important;
  border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
}

.hover\:divide-gray-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d2d6dc !important;
  border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
}

.hover\:divide-gray-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9fa6b2 !important;
  border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
}

.hover\:divide-gray-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6b7280 !important;
  border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
}

.hover\:divide-gray-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #4b5563 !important;
  border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
}

.hover\:divide-gray-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #374151 !important;
  border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
}

.hover\:divide-gray-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #252f3f !important;
  border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
}

.hover\:divide-gray-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #161e2e !important;
  border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f1f5f9 !important;
  border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e2e8f0 !important;
  border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cfd8e3 !important;
  border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #97a6ba !important;
  border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #64748b !important;
  border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #475569 !important;
  border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #364152 !important;
  border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #27303f !important;
  border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
}

.hover\:divide-cool-gray-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1a202e !important;
  border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
}

.hover\:divide-red-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf2f2 !important;
  border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
}

.hover\:divide-red-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fde8e8 !important;
  border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
}

.hover\:divide-red-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fbd5d5 !important;
  border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
}

.hover\:divide-red-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8b4b4 !important;
  border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
}

.hover\:divide-red-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f98080 !important;
  border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
}

.hover\:divide-red-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f05252 !important;
  border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
}

.hover\:divide-red-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e02424 !important;
  border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
}

.hover\:divide-red-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c81e1e !important;
  border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
}

.hover\:divide-red-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9b1c1c !important;
  border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
}

.hover\:divide-red-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #771d1d !important;
  border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
}

.hover\:divide-orange-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fff8f1 !important;
  border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
}

.hover\:divide-orange-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #feecdc !important;
  border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
}

.hover\:divide-orange-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fcd9bd !important;
  border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
}

.hover\:divide-orange-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdba8c !important;
  border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
}

.hover\:divide-orange-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ff8a4c !important;
  border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
}

.hover\:divide-orange-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ff5a1f !important;
  border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
}

.hover\:divide-orange-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d03801 !important;
  border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
}

.hover\:divide-orange-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #b43403 !important;
  border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
}

.hover\:divide-orange-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8a2c0d !important;
  border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
}

.hover\:divide-orange-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdfdea !important;
  border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf6b2 !important;
  border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fce96a !important;
  border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #faca15 !important;
  border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e3a008 !important;
  border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c27803 !important;
  border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9f580a !important;
  border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8e4b10 !important;
  border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #723b13 !important;
  border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
}

.hover\:divide-yellow-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #633112 !important;
  border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
}

.hover\:divide-green-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f3faf7 !important;
  border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
}

.hover\:divide-green-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #def7ec !important;
  border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
}

.hover\:divide-green-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #bcf0da !important;
  border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
}

.hover\:divide-green-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #84e1bc !important;
  border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
}

.hover\:divide-green-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #31c48d !important;
  border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
}

.hover\:divide-green-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0e9f6e !important;
  border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
}

.hover\:divide-green-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #057a55 !important;
  border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
}

.hover\:divide-green-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #046c4e !important;
  border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
}

.hover\:divide-green-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #03543f !important;
  border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
}

.hover\:divide-green-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #014737 !important;
  border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
}

.hover\:divide-teal-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #edfafa !important;
  border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
}

.hover\:divide-teal-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d5f5f6 !important;
  border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
}

.hover\:divide-teal-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #afecef !important;
  border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
}

.hover\:divide-teal-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #7edce2 !important;
  border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
}

.hover\:divide-teal-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #16bdca !important;
  border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
}

.hover\:divide-teal-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0694a2 !important;
  border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
}

.hover\:divide-teal-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #047481 !important;
  border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
}

.hover\:divide-teal-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #036672 !important;
  border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
}

.hover\:divide-teal-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #05505c !important;
  border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
}

.hover\:divide-teal-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #014451 !important;
  border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
}

.hover\:divide-blue-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ebf5ff !important;
  border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
}

.hover\:divide-blue-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e1effe !important;
  border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
}

.hover\:divide-blue-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c3ddfd !important;
  border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
}

.hover\:divide-blue-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #a4cafe !important;
  border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
}

.hover\:divide-blue-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #76a9fa !important;
  border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
}

.hover\:divide-blue-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #3f83f8 !important;
  border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
}

.hover\:divide-blue-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1c64f2 !important;
  border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
}

.hover\:divide-blue-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1a56db !important;
  border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
}

.hover\:divide-blue-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1e429f !important;
  border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
}

.hover\:divide-blue-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #233876 !important;
  border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f0f5ff !important;
  border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e5edff !important;
  border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cddbfe !important;
  border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #b4c6fc !important;
  border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8da2fb !important;
  border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6875f5 !important;
  border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5850ec !important;
  border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5145cd !important;
  border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #42389d !important;
  border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
}

.hover\:divide-indigo-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #362f78 !important;
  border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
}

.hover\:divide-purple-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f6f5ff !important;
  border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
}

.hover\:divide-purple-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #edebfe !important;
  border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
}

.hover\:divide-purple-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #dcd7fe !important;
  border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
}

.hover\:divide-purple-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cabffd !important;
  border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
}

.hover\:divide-purple-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ac94fa !important;
  border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
}

.hover\:divide-purple-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9061f9 !important;
  border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
}

.hover\:divide-purple-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #7e3af2 !important;
  border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
}

.hover\:divide-purple-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6c2bd9 !important;
  border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
}

.hover\:divide-purple-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5521b5 !important;
  border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
}

.hover\:divide-purple-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #4a1d96 !important;
  border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
}

.hover\:divide-pink-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf2f8 !important;
  border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
}

.hover\:divide-pink-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fce8f3 !important;
  border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
}

.hover\:divide-pink-200:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fad1e8 !important;
  border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
}

.hover\:divide-pink-300:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8b4d9 !important;
  border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
}

.hover\:divide-pink-400:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f17eb8 !important;
  border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
}

.hover\:divide-pink-500:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e74694 !important;
  border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
}

.hover\:divide-pink-600:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d61f69 !important;
  border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
}

.hover\:divide-pink-700:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #bf125d !important;
  border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
}

.hover\:divide-pink-800:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #99154b !important;
  border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
}

.hover\:divide-pink-900:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #751a3d !important;
  border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
}

.hover\:divide-blue-brand:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
}

.focus\:divide-transparent:focus > :not(template) ~ :not(template){
  border-color     : transparent !important;
}

.focus\:divide-white:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
}

.focus\:divide-black:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
}

.focus\:divide-gray-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f9fafb !important;
  border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
}

.focus\:divide-gray-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f4f5f7 !important;
  border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
}

.focus\:divide-gray-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e5e7eb !important;
  border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
}

.focus\:divide-gray-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d2d6dc !important;
  border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
}

.focus\:divide-gray-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9fa6b2 !important;
  border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
}

.focus\:divide-gray-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6b7280 !important;
  border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
}

.focus\:divide-gray-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #4b5563 !important;
  border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
}

.focus\:divide-gray-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #374151 !important;
  border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
}

.focus\:divide-gray-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #252f3f !important;
  border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
}

.focus\:divide-gray-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #161e2e !important;
  border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f1f5f9 !important;
  border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e2e8f0 !important;
  border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cfd8e3 !important;
  border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #97a6ba !important;
  border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #64748b !important;
  border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #475569 !important;
  border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #364152 !important;
  border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #27303f !important;
  border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
}

.focus\:divide-cool-gray-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1a202e !important;
  border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
}

.focus\:divide-red-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf2f2 !important;
  border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
}

.focus\:divide-red-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fde8e8 !important;
  border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
}

.focus\:divide-red-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fbd5d5 !important;
  border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
}

.focus\:divide-red-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8b4b4 !important;
  border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
}

.focus\:divide-red-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f98080 !important;
  border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
}

.focus\:divide-red-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f05252 !important;
  border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
}

.focus\:divide-red-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e02424 !important;
  border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
}

.focus\:divide-red-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c81e1e !important;
  border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
}

.focus\:divide-red-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9b1c1c !important;
  border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
}

.focus\:divide-red-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #771d1d !important;
  border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
}

.focus\:divide-orange-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fff8f1 !important;
  border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
}

.focus\:divide-orange-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #feecdc !important;
  border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
}

.focus\:divide-orange-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fcd9bd !important;
  border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
}

.focus\:divide-orange-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdba8c !important;
  border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
}

.focus\:divide-orange-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ff8a4c !important;
  border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
}

.focus\:divide-orange-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ff5a1f !important;
  border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
}

.focus\:divide-orange-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d03801 !important;
  border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
}

.focus\:divide-orange-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #b43403 !important;
  border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
}

.focus\:divide-orange-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8a2c0d !important;
  border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
}

.focus\:divide-orange-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdfdea !important;
  border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf6b2 !important;
  border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fce96a !important;
  border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #faca15 !important;
  border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e3a008 !important;
  border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c27803 !important;
  border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9f580a !important;
  border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8e4b10 !important;
  border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #723b13 !important;
  border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
}

.focus\:divide-yellow-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #633112 !important;
  border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
}

.focus\:divide-green-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f3faf7 !important;
  border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
}

.focus\:divide-green-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #def7ec !important;
  border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
}

.focus\:divide-green-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #bcf0da !important;
  border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
}

.focus\:divide-green-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #84e1bc !important;
  border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
}

.focus\:divide-green-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #31c48d !important;
  border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
}

.focus\:divide-green-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0e9f6e !important;
  border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
}

.focus\:divide-green-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #057a55 !important;
  border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
}

.focus\:divide-green-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #046c4e !important;
  border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
}

.focus\:divide-green-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #03543f !important;
  border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
}

.focus\:divide-green-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #014737 !important;
  border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
}

.focus\:divide-teal-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #edfafa !important;
  border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
}

.focus\:divide-teal-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d5f5f6 !important;
  border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
}

.focus\:divide-teal-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #afecef !important;
  border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
}

.focus\:divide-teal-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #7edce2 !important;
  border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
}

.focus\:divide-teal-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #16bdca !important;
  border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
}

.focus\:divide-teal-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0694a2 !important;
  border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
}

.focus\:divide-teal-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #047481 !important;
  border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
}

.focus\:divide-teal-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #036672 !important;
  border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
}

.focus\:divide-teal-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #05505c !important;
  border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
}

.focus\:divide-teal-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #014451 !important;
  border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
}

.focus\:divide-blue-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ebf5ff !important;
  border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
}

.focus\:divide-blue-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e1effe !important;
  border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
}

.focus\:divide-blue-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #c3ddfd !important;
  border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
}

.focus\:divide-blue-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #a4cafe !important;
  border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
}

.focus\:divide-blue-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #76a9fa !important;
  border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
}

.focus\:divide-blue-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #3f83f8 !important;
  border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
}

.focus\:divide-blue-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1c64f2 !important;
  border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
}

.focus\:divide-blue-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1a56db !important;
  border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
}

.focus\:divide-blue-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #1e429f !important;
  border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
}

.focus\:divide-blue-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #233876 !important;
  border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f0f5ff !important;
  border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e5edff !important;
  border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cddbfe !important;
  border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #b4c6fc !important;
  border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #8da2fb !important;
  border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6875f5 !important;
  border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5850ec !important;
  border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5145cd !important;
  border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #42389d !important;
  border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
}

.focus\:divide-indigo-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #362f78 !important;
  border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
}

.focus\:divide-purple-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f6f5ff !important;
  border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
}

.focus\:divide-purple-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #edebfe !important;
  border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
}

.focus\:divide-purple-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #dcd7fe !important;
  border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
}

.focus\:divide-purple-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #cabffd !important;
  border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
}

.focus\:divide-purple-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #ac94fa !important;
  border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
}

.focus\:divide-purple-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #9061f9 !important;
  border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
}

.focus\:divide-purple-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #7e3af2 !important;
  border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
}

.focus\:divide-purple-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #6c2bd9 !important;
  border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
}

.focus\:divide-purple-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #5521b5 !important;
  border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
}

.focus\:divide-purple-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #4a1d96 !important;
  border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
}

.focus\:divide-pink-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fdf2f8 !important;
  border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
}

.focus\:divide-pink-100:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fce8f3 !important;
  border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
}

.focus\:divide-pink-200:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #fad1e8 !important;
  border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
}

.focus\:divide-pink-300:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f8b4d9 !important;
  border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
}

.focus\:divide-pink-400:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #f17eb8 !important;
  border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
}

.focus\:divide-pink-500:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #e74694 !important;
  border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
}

.focus\:divide-pink-600:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #d61f69 !important;
  border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
}

.focus\:divide-pink-700:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #bf125d !important;
  border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
}

.focus\:divide-pink-800:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #99154b !important;
  border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
}

.focus\:divide-pink-900:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #751a3d !important;
  border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
}

.focus\:divide-blue-brand:focus > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
}

.divide-opacity-0 > :not(template) ~ :not(template){
  --divide-opacity     : 0 !important;
}

.divide-opacity-25 > :not(template) ~ :not(template){
  --divide-opacity     : 0.25 !important;
}

.divide-opacity-50 > :not(template) ~ :not(template){
  --divide-opacity     : 0.5 !important;
}

.divide-opacity-75 > :not(template) ~ :not(template){
  --divide-opacity     : 0.75 !important;
}

.divide-opacity-100 > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
}

.group:hover .group-hover\:divide-opacity-0 > :not(template) ~ :not(template){
  --divide-opacity     : 0 !important;
}

.group:hover .group-hover\:divide-opacity-25 > :not(template) ~ :not(template){
  --divide-opacity     : 0.25 !important;
}

.group:hover .group-hover\:divide-opacity-50 > :not(template) ~ :not(template){
  --divide-opacity     : 0.5 !important;
}

.group:hover .group-hover\:divide-opacity-75 > :not(template) ~ :not(template){
  --divide-opacity     : 0.75 !important;
}

.group:hover .group-hover\:divide-opacity-100 > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
}

.hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
  --divide-opacity     : 0 !important;
}

.hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
  --divide-opacity     : 0.25 !important;
}

.hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
  --divide-opacity     : 0.5 !important;
}

.hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
  --divide-opacity     : 0.75 !important;
}

.hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
  --divide-opacity     : 1 !important;
}

.focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
  --divide-opacity     : 0 !important;
}

.focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
  --divide-opacity     : 0.25 !important;
}

.focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
  --divide-opacity     : 0.5 !important;
}

.focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
  --divide-opacity     : 0.75 !important;
}

.focus\:divide-opacity-100:focus > :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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.hover\:sr-only:hover{
  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;
}

.hover\:not-sr-only:hover{
  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;
}

.appearance-none{
  -webkit-appearance     : none !important;
     -moz-appearance     : none !important;
          appearance     : none !important;
}

.group:hover .group-hover\:appearance-none{
  -webkit-appearance     : none !important;
     -moz-appearance     : none !important;
          appearance     : none !important;
}

.hover\:appearance-none:hover{
  -webkit-appearance     : none !important;
     -moz-appearance     : none !important;
          appearance     : none !important;
}

.focus\:appearance-none:focus{
  -webkit-appearance     : none !important;
     -moz-appearance     : none !important;
          appearance     : none !important;
}

.bg-fixed{
  background-attachment     : fixed !important;
}

.bg-local{
  background-attachment     : local !important;
}

.bg-scroll{
  background-attachment     : scroll !important;
}

.group:hover .group-hover\:bg-fixed{
  background-attachment     : fixed !important;
}

.group:hover .group-hover\:bg-local{
  background-attachment     : local !important;
}

.group:hover .group-hover\:bg-scroll{
  background-attachment     : scroll !important;
}

.hover\:bg-fixed:hover{
  background-attachment     : fixed !important;
}

.hover\:bg-local:hover{
  background-attachment     : local !important;
}

.hover\:bg-scroll:hover{
  background-attachment     : scroll !important;
}

.focus\:bg-fixed:focus{
  background-attachment     : fixed !important;
}

.focus\:bg-local:focus{
  background-attachment     : local !important;
}

.focus\:bg-scroll:focus{
  background-attachment     : scroll !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-cool-gray-50{
  --bg-opacity     : 1 !important;
  background-color     : #f8fafc !important;
  background-color     : rgba(248, 250, 252, 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-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-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     : #73230d !important;
  background-color     : rgba(115, 35, 13, 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-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-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-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-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-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-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-blue-brand{
  --bg-opacity     : 1 !important;
  background-color     : #0287f6 !important;
  background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-transparent{
  background-color     : transparent !important;
}

.group:hover .group-hover\:bg-white{
  --bg-opacity     : 1 !important;
  background-color     : #ffffff !important;
  background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-black{
  --bg-opacity     : 1 !important;
  background-color     : #000000 !important;
  background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-50{
  --bg-opacity     : 1 !important;
  background-color     : #f9fafb !important;
  background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-100{
  --bg-opacity     : 1 !important;
  background-color     : #f4f5f7 !important;
  background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-200{
  --bg-opacity     : 1 !important;
  background-color     : #e5e7eb !important;
  background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-300{
  --bg-opacity     : 1 !important;
  background-color     : #d2d6dc !important;
  background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-400{
  --bg-opacity     : 1 !important;
  background-color     : #9fa6b2 !important;
  background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-500{
  --bg-opacity     : 1 !important;
  background-color     : #6b7280 !important;
  background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-600{
  --bg-opacity     : 1 !important;
  background-color     : #4b5563 !important;
  background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-700{
  --bg-opacity     : 1 !important;
  background-color     : #374151 !important;
  background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-800{
  --bg-opacity     : 1 !important;
  background-color     : #252f3f !important;
  background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-gray-900{
  --bg-opacity     : 1 !important;
  background-color     : #161e2e !important;
  background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-50{
  --bg-opacity     : 1 !important;
  background-color     : #f8fafc !important;
  background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-100{
  --bg-opacity     : 1 !important;
  background-color     : #f1f5f9 !important;
  background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-200{
  --bg-opacity     : 1 !important;
  background-color     : #e2e8f0 !important;
  background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-300{
  --bg-opacity     : 1 !important;
  background-color     : #cfd8e3 !important;
  background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-400{
  --bg-opacity     : 1 !important;
  background-color     : #97a6ba !important;
  background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-500{
  --bg-opacity     : 1 !important;
  background-color     : #64748b !important;
  background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-600{
  --bg-opacity     : 1 !important;
  background-color     : #475569 !important;
  background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-700{
  --bg-opacity     : 1 !important;
  background-color     : #364152 !important;
  background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-800{
  --bg-opacity     : 1 !important;
  background-color     : #27303f !important;
  background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-cool-gray-900{
  --bg-opacity     : 1 !important;
  background-color     : #1a202e !important;
  background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-50{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f2 !important;
  background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-100{
  --bg-opacity     : 1 !important;
  background-color     : #fde8e8 !important;
  background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-200{
  --bg-opacity     : 1 !important;
  background-color     : #fbd5d5 !important;
  background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-300{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4b4 !important;
  background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-400{
  --bg-opacity     : 1 !important;
  background-color     : #f98080 !important;
  background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-500{
  --bg-opacity     : 1 !important;
  background-color     : #f05252 !important;
  background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-600{
  --bg-opacity     : 1 !important;
  background-color     : #e02424 !important;
  background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-700{
  --bg-opacity     : 1 !important;
  background-color     : #c81e1e !important;
  background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-800{
  --bg-opacity     : 1 !important;
  background-color     : #9b1c1c !important;
  background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-red-900{
  --bg-opacity     : 1 !important;
  background-color     : #771d1d !important;
  background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-50{
  --bg-opacity     : 1 !important;
  background-color     : #fff8f1 !important;
  background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-100{
  --bg-opacity     : 1 !important;
  background-color     : #feecdc !important;
  background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-200{
  --bg-opacity     : 1 !important;
  background-color     : #fcd9bd !important;
  background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-300{
  --bg-opacity     : 1 !important;
  background-color     : #fdba8c !important;
  background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-400{
  --bg-opacity     : 1 !important;
  background-color     : #ff8a4c !important;
  background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-500{
  --bg-opacity     : 1 !important;
  background-color     : #ff5a1f !important;
  background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-600{
  --bg-opacity     : 1 !important;
  background-color     : #d03801 !important;
  background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-700{
  --bg-opacity     : 1 !important;
  background-color     : #b43403 !important;
  background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-800{
  --bg-opacity     : 1 !important;
  background-color     : #8a2c0d !important;
  background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-orange-900{
  --bg-opacity     : 1 !important;
  background-color     : #73230d !important;
  background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-50{
  --bg-opacity     : 1 !important;
  background-color     : #fdfdea !important;
  background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-100{
  --bg-opacity     : 1 !important;
  background-color     : #fdf6b2 !important;
  background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-200{
  --bg-opacity     : 1 !important;
  background-color     : #fce96a !important;
  background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-300{
  --bg-opacity     : 1 !important;
  background-color     : #faca15 !important;
  background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-400{
  --bg-opacity     : 1 !important;
  background-color     : #e3a008 !important;
  background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-500{
  --bg-opacity     : 1 !important;
  background-color     : #c27803 !important;
  background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-600{
  --bg-opacity     : 1 !important;
  background-color     : #9f580a !important;
  background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-700{
  --bg-opacity     : 1 !important;
  background-color     : #8e4b10 !important;
  background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-800{
  --bg-opacity     : 1 !important;
  background-color     : #723b13 !important;
  background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-yellow-900{
  --bg-opacity     : 1 !important;
  background-color     : #633112 !important;
  background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-50{
  --bg-opacity     : 1 !important;
  background-color     : #f3faf7 !important;
  background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-100{
  --bg-opacity     : 1 !important;
  background-color     : #def7ec !important;
  background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-200{
  --bg-opacity     : 1 !important;
  background-color     : #bcf0da !important;
  background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-300{
  --bg-opacity     : 1 !important;
  background-color     : #84e1bc !important;
  background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-400{
  --bg-opacity     : 1 !important;
  background-color     : #31c48d !important;
  background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-500{
  --bg-opacity     : 1 !important;
  background-color     : #0e9f6e !important;
  background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-600{
  --bg-opacity     : 1 !important;
  background-color     : #057a55 !important;
  background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-700{
  --bg-opacity     : 1 !important;
  background-color     : #046c4e !important;
  background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-800{
  --bg-opacity     : 1 !important;
  background-color     : #03543f !important;
  background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-green-900{
  --bg-opacity     : 1 !important;
  background-color     : #014737 !important;
  background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-50{
  --bg-opacity     : 1 !important;
  background-color     : #edfafa !important;
  background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-100{
  --bg-opacity     : 1 !important;
  background-color     : #d5f5f6 !important;
  background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-200{
  --bg-opacity     : 1 !important;
  background-color     : #afecef !important;
  background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-300{
  --bg-opacity     : 1 !important;
  background-color     : #7edce2 !important;
  background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-400{
  --bg-opacity     : 1 !important;
  background-color     : #16bdca !important;
  background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-500{
  --bg-opacity     : 1 !important;
  background-color     : #0694a2 !important;
  background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-600{
  --bg-opacity     : 1 !important;
  background-color     : #047481 !important;
  background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-700{
  --bg-opacity     : 1 !important;
  background-color     : #036672 !important;
  background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-800{
  --bg-opacity     : 1 !important;
  background-color     : #05505c !important;
  background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-teal-900{
  --bg-opacity     : 1 !important;
  background-color     : #014451 !important;
  background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-50{
  --bg-opacity     : 1 !important;
  background-color     : #ebf5ff !important;
  background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-100{
  --bg-opacity     : 1 !important;
  background-color     : #e1effe !important;
  background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-200{
  --bg-opacity     : 1 !important;
  background-color     : #c3ddfd !important;
  background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-300{
  --bg-opacity     : 1 !important;
  background-color     : #a4cafe !important;
  background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-400{
  --bg-opacity     : 1 !important;
  background-color     : #76a9fa !important;
  background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-500{
  --bg-opacity     : 1 !important;
  background-color     : #3f83f8 !important;
  background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-600{
  --bg-opacity     : 1 !important;
  background-color     : #1c64f2 !important;
  background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-700{
  --bg-opacity     : 1 !important;
  background-color     : #1a56db !important;
  background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-800{
  --bg-opacity     : 1 !important;
  background-color     : #1e429f !important;
  background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-900{
  --bg-opacity     : 1 !important;
  background-color     : #233876 !important;
  background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-50{
  --bg-opacity     : 1 !important;
  background-color     : #f0f5ff !important;
  background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-100{
  --bg-opacity     : 1 !important;
  background-color     : #e5edff !important;
  background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-200{
  --bg-opacity     : 1 !important;
  background-color     : #cddbfe !important;
  background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-300{
  --bg-opacity     : 1 !important;
  background-color     : #b4c6fc !important;
  background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-400{
  --bg-opacity     : 1 !important;
  background-color     : #8da2fb !important;
  background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-500{
  --bg-opacity     : 1 !important;
  background-color     : #6875f5 !important;
  background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-600{
  --bg-opacity     : 1 !important;
  background-color     : #5850ec !important;
  background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-700{
  --bg-opacity     : 1 !important;
  background-color     : #5145cd !important;
  background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-800{
  --bg-opacity     : 1 !important;
  background-color     : #42389d !important;
  background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-indigo-900{
  --bg-opacity     : 1 !important;
  background-color     : #362f78 !important;
  background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-50{
  --bg-opacity     : 1 !important;
  background-color     : #f6f5ff !important;
  background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-100{
  --bg-opacity     : 1 !important;
  background-color     : #edebfe !important;
  background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-200{
  --bg-opacity     : 1 !important;
  background-color     : #dcd7fe !important;
  background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-300{
  --bg-opacity     : 1 !important;
  background-color     : #cabffd !important;
  background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-400{
  --bg-opacity     : 1 !important;
  background-color     : #ac94fa !important;
  background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-500{
  --bg-opacity     : 1 !important;
  background-color     : #9061f9 !important;
  background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-600{
  --bg-opacity     : 1 !important;
  background-color     : #7e3af2 !important;
  background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-700{
  --bg-opacity     : 1 !important;
  background-color     : #6c2bd9 !important;
  background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-800{
  --bg-opacity     : 1 !important;
  background-color     : #5521b5 !important;
  background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-purple-900{
  --bg-opacity     : 1 !important;
  background-color     : #4a1d96 !important;
  background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-50{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f8 !important;
  background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-100{
  --bg-opacity     : 1 !important;
  background-color     : #fce8f3 !important;
  background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-200{
  --bg-opacity     : 1 !important;
  background-color     : #fad1e8 !important;
  background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-300{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4d9 !important;
  background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-400{
  --bg-opacity     : 1 !important;
  background-color     : #f17eb8 !important;
  background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-500{
  --bg-opacity     : 1 !important;
  background-color     : #e74694 !important;
  background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-600{
  --bg-opacity     : 1 !important;
  background-color     : #d61f69 !important;
  background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-700{
  --bg-opacity     : 1 !important;
  background-color     : #bf125d !important;
  background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-800{
  --bg-opacity     : 1 !important;
  background-color     : #99154b !important;
  background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-pink-900{
  --bg-opacity     : 1 !important;
  background-color     : #751a3d !important;
  background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
}

.group:hover .group-hover\:bg-blue-brand{
  --bg-opacity     : 1 !important;
  background-color     : #0287f6 !important;
  background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
}

.hover\:bg-transparent:hover{
  background-color     : transparent !important;
}

.hover\:bg-white:hover{
  --bg-opacity     : 1 !important;
  background-color     : #ffffff !important;
  background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.hover\:bg-black:hover{
  --bg-opacity     : 1 !important;
  background-color     : #000000 !important;
  background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.hover\:bg-gray-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f9fafb !important;
  background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
}

.hover\:bg-gray-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f4f5f7 !important;
  background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
}

.hover\:bg-gray-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e5e7eb !important;
  background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
}

.hover\:bg-gray-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #d2d6dc !important;
  background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
}

.hover\:bg-gray-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #9fa6b2 !important;
  background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
}

.hover\:bg-gray-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #6b7280 !important;
  background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
}

.hover\:bg-gray-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #4b5563 !important;
  background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
}

.hover\:bg-gray-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #374151 !important;
  background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
}

.hover\:bg-gray-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #252f3f !important;
  background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
}

.hover\:bg-gray-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #161e2e !important;
  background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f8fafc !important;
  background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f1f5f9 !important;
  background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e2e8f0 !important;
  background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #cfd8e3 !important;
  background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #97a6ba !important;
  background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #64748b !important;
  background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #475569 !important;
  background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #364152 !important;
  background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #27303f !important;
  background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
}

.hover\:bg-cool-gray-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #1a202e !important;
  background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
}

.hover\:bg-red-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f2 !important;
  background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
}

.hover\:bg-red-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fde8e8 !important;
  background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
}

.hover\:bg-red-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fbd5d5 !important;
  background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
}

.hover\:bg-red-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4b4 !important;
  background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
}

.hover\:bg-red-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f98080 !important;
  background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
}

.hover\:bg-red-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f05252 !important;
  background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
}

.hover\:bg-red-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e02424 !important;
  background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
}

.hover\:bg-red-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #c81e1e !important;
  background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
}

.hover\:bg-red-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #9b1c1c !important;
  background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
}

.hover\:bg-red-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #771d1d !important;
  background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
}

.hover\:bg-orange-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fff8f1 !important;
  background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
}

.hover\:bg-orange-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #feecdc !important;
  background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
}

.hover\:bg-orange-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fcd9bd !important;
  background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
}

.hover\:bg-orange-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fdba8c !important;
  background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
}

.hover\:bg-orange-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #ff8a4c !important;
  background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
}

.hover\:bg-orange-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #ff5a1f !important;
  background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
}

.hover\:bg-orange-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #d03801 !important;
  background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
}

.hover\:bg-orange-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #b43403 !important;
  background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
}

.hover\:bg-orange-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #8a2c0d !important;
  background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
}

.hover\:bg-orange-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #73230d !important;
  background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fdfdea !important;
  background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fdf6b2 !important;
  background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fce96a !important;
  background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #faca15 !important;
  background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e3a008 !important;
  background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #c27803 !important;
  background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #9f580a !important;
  background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #8e4b10 !important;
  background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #723b13 !important;
  background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
}

.hover\:bg-yellow-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #633112 !important;
  background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
}

.hover\:bg-green-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f3faf7 !important;
  background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
}

.hover\:bg-green-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #def7ec !important;
  background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
}

.hover\:bg-green-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #bcf0da !important;
  background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
}

.hover\:bg-green-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #84e1bc !important;
  background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
}

.hover\:bg-green-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #31c48d !important;
  background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
}

.hover\:bg-green-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #0e9f6e !important;
  background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
}

.hover\:bg-green-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #057a55 !important;
  background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
}

.hover\:bg-green-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #046c4e !important;
  background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
}

.hover\:bg-green-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #03543f !important;
  background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
}

.hover\:bg-green-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #014737 !important;
  background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
}

.hover\:bg-teal-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #edfafa !important;
  background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
}

.hover\:bg-teal-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #d5f5f6 !important;
  background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
}

.hover\:bg-teal-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #afecef !important;
  background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
}

.hover\:bg-teal-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #7edce2 !important;
  background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
}

.hover\:bg-teal-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #16bdca !important;
  background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
}

.hover\:bg-teal-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #0694a2 !important;
  background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
}

.hover\:bg-teal-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #047481 !important;
  background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
}

.hover\:bg-teal-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #036672 !important;
  background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
}

.hover\:bg-teal-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #05505c !important;
  background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
}

.hover\:bg-teal-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #014451 !important;
  background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
}

.hover\:bg-blue-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #ebf5ff !important;
  background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
}

.hover\:bg-blue-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e1effe !important;
  background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
}

.hover\:bg-blue-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #c3ddfd !important;
  background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
}

.hover\:bg-blue-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #a4cafe !important;
  background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
}

.hover\:bg-blue-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #76a9fa !important;
  background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
}

.hover\:bg-blue-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #3f83f8 !important;
  background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
}

.hover\:bg-blue-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #1c64f2 !important;
  background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
}

.hover\:bg-blue-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #1a56db !important;
  background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
}

.hover\:bg-blue-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #1e429f !important;
  background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
}

.hover\:bg-blue-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #233876 !important;
  background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f0f5ff !important;
  background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e5edff !important;
  background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #cddbfe !important;
  background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #b4c6fc !important;
  background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #8da2fb !important;
  background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #6875f5 !important;
  background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #5850ec !important;
  background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #5145cd !important;
  background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #42389d !important;
  background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
}

.hover\:bg-indigo-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #362f78 !important;
  background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
}

.hover\:bg-purple-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f6f5ff !important;
  background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
}

.hover\:bg-purple-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #edebfe !important;
  background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
}

.hover\:bg-purple-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #dcd7fe !important;
  background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
}

.hover\:bg-purple-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #cabffd !important;
  background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
}

.hover\:bg-purple-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #ac94fa !important;
  background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
}

.hover\:bg-purple-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #9061f9 !important;
  background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
}

.hover\:bg-purple-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #7e3af2 !important;
  background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
}

.hover\:bg-purple-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #6c2bd9 !important;
  background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
}

.hover\:bg-purple-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #5521b5 !important;
  background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
}

.hover\:bg-purple-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #4a1d96 !important;
  background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
}

.hover\:bg-pink-50:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f8 !important;
  background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
}

.hover\:bg-pink-100:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fce8f3 !important;
  background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
}

.hover\:bg-pink-200:hover{
  --bg-opacity     : 1 !important;
  background-color     : #fad1e8 !important;
  background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
}

.hover\:bg-pink-300:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4d9 !important;
  background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
}

.hover\:bg-pink-400:hover{
  --bg-opacity     : 1 !important;
  background-color     : #f17eb8 !important;
  background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
}

.hover\:bg-pink-500:hover{
  --bg-opacity     : 1 !important;
  background-color     : #e74694 !important;
  background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
}

.hover\:bg-pink-600:hover{
  --bg-opacity     : 1 !important;
  background-color     : #d61f69 !important;
  background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
}

.hover\:bg-pink-700:hover{
  --bg-opacity     : 1 !important;
  background-color     : #bf125d !important;
  background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
}

.hover\:bg-pink-800:hover{
  --bg-opacity     : 1 !important;
  background-color     : #99154b !important;
  background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
}

.hover\:bg-pink-900:hover{
  --bg-opacity     : 1 !important;
  background-color     : #751a3d !important;
  background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
}

.hover\:bg-blue-brand:hover{
  --bg-opacity     : 1 !important;
  background-color     : #0287f6 !important;
  background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
}

.focus\:bg-transparent:focus{
  background-color     : transparent !important;
}

.focus\:bg-white:focus{
  --bg-opacity     : 1 !important;
  background-color     : #ffffff !important;
  background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.focus\:bg-black:focus{
  --bg-opacity     : 1 !important;
  background-color     : #000000 !important;
  background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.focus\:bg-gray-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f9fafb !important;
  background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
}

.focus\:bg-gray-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f4f5f7 !important;
  background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
}

.focus\:bg-gray-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e5e7eb !important;
  background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
}

.focus\:bg-gray-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #d2d6dc !important;
  background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
}

.focus\:bg-gray-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #9fa6b2 !important;
  background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
}

.focus\:bg-gray-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #6b7280 !important;
  background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
}

.focus\:bg-gray-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #4b5563 !important;
  background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
}

.focus\:bg-gray-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #374151 !important;
  background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
}

.focus\:bg-gray-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #252f3f !important;
  background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
}

.focus\:bg-gray-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #161e2e !important;
  background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f8fafc !important;
  background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f1f5f9 !important;
  background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e2e8f0 !important;
  background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #cfd8e3 !important;
  background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #97a6ba !important;
  background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #64748b !important;
  background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #475569 !important;
  background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #364152 !important;
  background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #27303f !important;
  background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
}

.focus\:bg-cool-gray-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #1a202e !important;
  background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
}

.focus\:bg-red-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f2 !important;
  background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
}

.focus\:bg-red-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fde8e8 !important;
  background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
}

.focus\:bg-red-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fbd5d5 !important;
  background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
}

.focus\:bg-red-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4b4 !important;
  background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
}

.focus\:bg-red-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f98080 !important;
  background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
}

.focus\:bg-red-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f05252 !important;
  background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
}

.focus\:bg-red-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e02424 !important;
  background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
}

.focus\:bg-red-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #c81e1e !important;
  background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
}

.focus\:bg-red-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #9b1c1c !important;
  background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
}

.focus\:bg-red-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #771d1d !important;
  background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
}

.focus\:bg-orange-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fff8f1 !important;
  background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
}

.focus\:bg-orange-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #feecdc !important;
  background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
}

.focus\:bg-orange-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fcd9bd !important;
  background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
}

.focus\:bg-orange-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fdba8c !important;
  background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
}

.focus\:bg-orange-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #ff8a4c !important;
  background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
}

.focus\:bg-orange-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #ff5a1f !important;
  background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
}

.focus\:bg-orange-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #d03801 !important;
  background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
}

.focus\:bg-orange-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #b43403 !important;
  background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
}

.focus\:bg-orange-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #8a2c0d !important;
  background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
}

.focus\:bg-orange-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #73230d !important;
  background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fdfdea !important;
  background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fdf6b2 !important;
  background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fce96a !important;
  background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #faca15 !important;
  background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e3a008 !important;
  background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #c27803 !important;
  background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #9f580a !important;
  background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #8e4b10 !important;
  background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #723b13 !important;
  background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
}

.focus\:bg-yellow-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #633112 !important;
  background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
}

.focus\:bg-green-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f3faf7 !important;
  background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
}

.focus\:bg-green-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #def7ec !important;
  background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
}

.focus\:bg-green-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #bcf0da !important;
  background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
}

.focus\:bg-green-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #84e1bc !important;
  background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
}

.focus\:bg-green-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #31c48d !important;
  background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
}

.focus\:bg-green-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #0e9f6e !important;
  background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
}

.focus\:bg-green-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #057a55 !important;
  background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
}

.focus\:bg-green-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #046c4e !important;
  background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
}

.focus\:bg-green-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #03543f !important;
  background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
}

.focus\:bg-green-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #014737 !important;
  background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
}

.focus\:bg-teal-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #edfafa !important;
  background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
}

.focus\:bg-teal-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #d5f5f6 !important;
  background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
}

.focus\:bg-teal-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #afecef !important;
  background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
}

.focus\:bg-teal-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #7edce2 !important;
  background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
}

.focus\:bg-teal-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #16bdca !important;
  background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
}

.focus\:bg-teal-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #0694a2 !important;
  background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
}

.focus\:bg-teal-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #047481 !important;
  background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
}

.focus\:bg-teal-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #036672 !important;
  background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
}

.focus\:bg-teal-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #05505c !important;
  background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
}

.focus\:bg-teal-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #014451 !important;
  background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
}

.focus\:bg-blue-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #ebf5ff !important;
  background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
}

.focus\:bg-blue-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e1effe !important;
  background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
}

.focus\:bg-blue-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #c3ddfd !important;
  background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
}

.focus\:bg-blue-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #a4cafe !important;
  background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
}

.focus\:bg-blue-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #76a9fa !important;
  background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
}

.focus\:bg-blue-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #3f83f8 !important;
  background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
}

.focus\:bg-blue-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #1c64f2 !important;
  background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
}

.focus\:bg-blue-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #1a56db !important;
  background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
}

.focus\:bg-blue-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #1e429f !important;
  background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
}

.focus\:bg-blue-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #233876 !important;
  background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f0f5ff !important;
  background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e5edff !important;
  background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #cddbfe !important;
  background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #b4c6fc !important;
  background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #8da2fb !important;
  background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #6875f5 !important;
  background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #5850ec !important;
  background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #5145cd !important;
  background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #42389d !important;
  background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
}

.focus\:bg-indigo-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #362f78 !important;
  background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
}

.focus\:bg-purple-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f6f5ff !important;
  background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
}

.focus\:bg-purple-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #edebfe !important;
  background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
}

.focus\:bg-purple-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #dcd7fe !important;
  background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
}

.focus\:bg-purple-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #cabffd !important;
  background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
}

.focus\:bg-purple-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #ac94fa !important;
  background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
}

.focus\:bg-purple-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #9061f9 !important;
  background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
}

.focus\:bg-purple-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #7e3af2 !important;
  background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
}

.focus\:bg-purple-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #6c2bd9 !important;
  background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
}

.focus\:bg-purple-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #5521b5 !important;
  background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
}

.focus\:bg-purple-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #4a1d96 !important;
  background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
}

.focus\:bg-pink-50:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fdf2f8 !important;
  background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
}

.focus\:bg-pink-100:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fce8f3 !important;
  background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
}

.focus\:bg-pink-200:focus{
  --bg-opacity     : 1 !important;
  background-color     : #fad1e8 !important;
  background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
}

.focus\:bg-pink-300:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f8b4d9 !important;
  background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
}

.focus\:bg-pink-400:focus{
  --bg-opacity     : 1 !important;
  background-color     : #f17eb8 !important;
  background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
}

.focus\:bg-pink-500:focus{
  --bg-opacity     : 1 !important;
  background-color     : #e74694 !important;
  background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
}

.focus\:bg-pink-600:focus{
  --bg-opacity     : 1 !important;
  background-color     : #d61f69 !important;
  background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
}

.focus\:bg-pink-700:focus{
  --bg-opacity     : 1 !important;
  background-color     : #bf125d !important;
  background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
}

.focus\:bg-pink-800:focus{
  --bg-opacity     : 1 !important;
  background-color     : #99154b !important;
  background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
}

.focus\:bg-pink-900:focus{
  --bg-opacity     : 1 !important;
  background-color     : #751a3d !important;
  background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
}

.focus\:bg-blue-brand:focus{
  --bg-opacity     : 1 !important;
  background-color     : #0287f6 !important;
  background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
}

.bg-opacity-0{
  --bg-opacity     : 0 !important;
}

.bg-opacity-25{
  --bg-opacity     : 0.25 !important;
}

.bg-opacity-50{
  --bg-opacity     : 0.5 !important;
}

.bg-opacity-75{
  --bg-opacity     : 0.75 !important;
}

.bg-opacity-100{
  --bg-opacity     : 1 !important;
}

.group:hover .group-hover\:bg-opacity-0{
  --bg-opacity     : 0 !important;
}

.group:hover .group-hover\:bg-opacity-25{
  --bg-opacity     : 0.25 !important;
}

.group:hover .group-hover\:bg-opacity-50{
  --bg-opacity     : 0.5 !important;
}

.group:hover .group-hover\:bg-opacity-75{
  --bg-opacity     : 0.75 !important;
}

.group:hover .group-hover\:bg-opacity-100{
  --bg-opacity     : 1 !important;
}

.hover\:bg-opacity-0:hover{
  --bg-opacity     : 0 !important;
}

.hover\:bg-opacity-25:hover{
  --bg-opacity     : 0.25 !important;
}

.hover\:bg-opacity-50:hover{
  --bg-opacity     : 0.5 !important;
}

.hover\:bg-opacity-75:hover{
  --bg-opacity     : 0.75 !important;
}

.hover\:bg-opacity-100:hover{
  --bg-opacity     : 1 !important;
}

.focus\:bg-opacity-0:focus{
  --bg-opacity     : 0 !important;
}

.focus\:bg-opacity-25:focus{
  --bg-opacity     : 0.25 !important;
}

.focus\:bg-opacity-50:focus{
  --bg-opacity     : 0.5 !important;
}

.focus\:bg-opacity-75:focus{
  --bg-opacity     : 0.75 !important;
}

.focus\:bg-opacity-100:focus{
  --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;
}

.group:hover .group-hover\:bg-bottom{
  background-position     : bottom !important;
}

.group:hover .group-hover\:bg-center{
  background-position     : center !important;
}

.group:hover .group-hover\:bg-left{
  background-position     : left !important;
}

.group:hover .group-hover\:bg-left-bottom{
  background-position     : left bottom !important;
}

.group:hover .group-hover\:bg-left-top{
  background-position     : left top !important;
}

.group:hover .group-hover\:bg-right{
  background-position     : right !important;
}

.group:hover .group-hover\:bg-right-bottom{
  background-position     : right bottom !important;
}

.group:hover .group-hover\:bg-right-top{
  background-position     : right top !important;
}

.group:hover .group-hover\:bg-top{
  background-position     : top !important;
}

.hover\:bg-bottom:hover{
  background-position     : bottom !important;
}

.hover\:bg-center:hover{
  background-position     : center !important;
}

.hover\:bg-left:hover{
  background-position     : left !important;
}

.hover\:bg-left-bottom:hover{
  background-position     : left bottom !important;
}

.hover\:bg-left-top:hover{
  background-position     : left top !important;
}

.hover\:bg-right:hover{
  background-position     : right !important;
}

.hover\:bg-right-bottom:hover{
  background-position     : right bottom !important;
}

.hover\:bg-right-top:hover{
  background-position     : right top !important;
}

.hover\:bg-top:hover{
  background-position     : top !important;
}

.focus\:bg-bottom:focus{
  background-position     : bottom !important;
}

.focus\:bg-center:focus{
  background-position     : center !important;
}

.focus\:bg-left:focus{
  background-position     : left !important;
}

.focus\:bg-left-bottom:focus{
  background-position     : left bottom !important;
}

.focus\:bg-left-top:focus{
  background-position     : left top !important;
}

.focus\:bg-right:focus{
  background-position     : right !important;
}

.focus\:bg-right-bottom:focus{
  background-position     : right bottom !important;
}

.focus\:bg-right-top:focus{
  background-position     : right top !important;
}

.focus\:bg-top:focus{
  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;
}

.group:hover .group-hover\:bg-repeat{
  background-repeat     : repeat !important;
}

.group:hover .group-hover\:bg-no-repeat{
  background-repeat     : no-repeat !important;
}

.group:hover .group-hover\:bg-repeat-x{
  background-repeat     : repeat-x !important;
}

.group:hover .group-hover\:bg-repeat-y{
  background-repeat     : repeat-y !important;
}

.group:hover .group-hover\:bg-repeat-round{
  background-repeat     : round !important;
}

.group:hover .group-hover\:bg-repeat-space{
  background-repeat     : space !important;
}

.hover\:bg-repeat:hover{
  background-repeat     : repeat !important;
}

.hover\:bg-no-repeat:hover{
  background-repeat     : no-repeat !important;
}

.hover\:bg-repeat-x:hover{
  background-repeat     : repeat-x !important;
}

.hover\:bg-repeat-y:hover{
  background-repeat     : repeat-y !important;
}

.hover\:bg-repeat-round:hover{
  background-repeat     : round !important;
}

.hover\:bg-repeat-space:hover{
  background-repeat     : space !important;
}

.focus\:bg-repeat:focus{
  background-repeat     : repeat !important;
}

.focus\:bg-no-repeat:focus{
  background-repeat     : no-repeat !important;
}

.focus\:bg-repeat-x:focus{
  background-repeat     : repeat-x !important;
}

.focus\:bg-repeat-y:focus{
  background-repeat     : repeat-y !important;
}

.focus\:bg-repeat-round:focus{
  background-repeat     : round !important;
}

.focus\:bg-repeat-space:focus{
  background-repeat     : space !important;
}

.bg-auto{
  background-size     : auto !important;
}

.bg-cover{
  background-size     : cover !important;
}

.bg-contain{
  background-size     : contain !important;
}

.group:hover .group-hover\:bg-auto{
  background-size     : auto !important;
}

.group:hover .group-hover\:bg-cover{
  background-size     : cover !important;
}

.group:hover .group-hover\:bg-contain{
  background-size     : contain !important;
}

.hover\:bg-auto:hover{
  background-size     : auto !important;
}

.hover\:bg-cover:hover{
  background-size     : cover !important;
}

.hover\:bg-contain:hover{
  background-size     : contain !important;
}

.focus\:bg-auto:focus{
  background-size     : auto !important;
}

.focus\:bg-cover:focus{
  background-size     : cover !important;
}

.focus\:bg-contain:focus{
  background-size     : contain !important;
}

.border-collapse{
  border-collapse     : collapse !important;
}

.border-separate{
  border-collapse     : separate !important;
}

.group:hover .group-hover\:border-collapse{
  border-collapse     : collapse !important;
}

.group:hover .group-hover\:border-separate{
  border-collapse     : separate !important;
}

.hover\:border-collapse:hover{
  border-collapse     : collapse !important;
}

.hover\:border-separate:hover{
  border-collapse     : separate !important;
}

.focus\:border-collapse:focus{
  border-collapse     : collapse !important;
}

.focus\:border-separate:focus{
  border-collapse     : separate !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-cool-gray-50{
  --border-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, 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-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-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     : #73230d !important;
  border-color     : rgba(115, 35, 13, 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-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-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-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-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-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-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-blue-brand{
  --border-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-transparent{
  border-color     : transparent !important;
}

.group:hover .group-hover\:border-white{
  --border-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-black{
  --border-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-50{
  --border-opacity     : 1 !important;
  border-color     : #f9fafb !important;
  border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-100{
  --border-opacity     : 1 !important;
  border-color     : #f4f5f7 !important;
  border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-200{
  --border-opacity     : 1 !important;
  border-color     : #e5e7eb !important;
  border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-300{
  --border-opacity     : 1 !important;
  border-color     : #d2d6dc !important;
  border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-400{
  --border-opacity     : 1 !important;
  border-color     : #9fa6b2 !important;
  border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-500{
  --border-opacity     : 1 !important;
  border-color     : #6b7280 !important;
  border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-600{
  --border-opacity     : 1 !important;
  border-color     : #4b5563 !important;
  border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-700{
  --border-opacity     : 1 !important;
  border-color     : #374151 !important;
  border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-800{
  --border-opacity     : 1 !important;
  border-color     : #252f3f !important;
  border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-gray-900{
  --border-opacity     : 1 !important;
  border-color     : #161e2e !important;
  border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-50{
  --border-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-100{
  --border-opacity     : 1 !important;
  border-color     : #f1f5f9 !important;
  border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-200{
  --border-opacity     : 1 !important;
  border-color     : #e2e8f0 !important;
  border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-300{
  --border-opacity     : 1 !important;
  border-color     : #cfd8e3 !important;
  border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-400{
  --border-opacity     : 1 !important;
  border-color     : #97a6ba !important;
  border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-500{
  --border-opacity     : 1 !important;
  border-color     : #64748b !important;
  border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-600{
  --border-opacity     : 1 !important;
  border-color     : #475569 !important;
  border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-700{
  --border-opacity     : 1 !important;
  border-color     : #364152 !important;
  border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-800{
  --border-opacity     : 1 !important;
  border-color     : #27303f !important;
  border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-cool-gray-900{
  --border-opacity     : 1 !important;
  border-color     : #1a202e !important;
  border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-50{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f2 !important;
  border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-100{
  --border-opacity     : 1 !important;
  border-color     : #fde8e8 !important;
  border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-200{
  --border-opacity     : 1 !important;
  border-color     : #fbd5d5 !important;
  border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-300{
  --border-opacity     : 1 !important;
  border-color     : #f8b4b4 !important;
  border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-400{
  --border-opacity     : 1 !important;
  border-color     : #f98080 !important;
  border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-500{
  --border-opacity     : 1 !important;
  border-color     : #f05252 !important;
  border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-600{
  --border-opacity     : 1 !important;
  border-color     : #e02424 !important;
  border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-700{
  --border-opacity     : 1 !important;
  border-color     : #c81e1e !important;
  border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-800{
  --border-opacity     : 1 !important;
  border-color     : #9b1c1c !important;
  border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-red-900{
  --border-opacity     : 1 !important;
  border-color     : #771d1d !important;
  border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-50{
  --border-opacity     : 1 !important;
  border-color     : #fff8f1 !important;
  border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-100{
  --border-opacity     : 1 !important;
  border-color     : #feecdc !important;
  border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-200{
  --border-opacity     : 1 !important;
  border-color     : #fcd9bd !important;
  border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-300{
  --border-opacity     : 1 !important;
  border-color     : #fdba8c !important;
  border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-400{
  --border-opacity     : 1 !important;
  border-color     : #ff8a4c !important;
  border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-500{
  --border-opacity     : 1 !important;
  border-color     : #ff5a1f !important;
  border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-600{
  --border-opacity     : 1 !important;
  border-color     : #d03801 !important;
  border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-700{
  --border-opacity     : 1 !important;
  border-color     : #b43403 !important;
  border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-800{
  --border-opacity     : 1 !important;
  border-color     : #8a2c0d !important;
  border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-orange-900{
  --border-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-50{
  --border-opacity     : 1 !important;
  border-color     : #fdfdea !important;
  border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-100{
  --border-opacity     : 1 !important;
  border-color     : #fdf6b2 !important;
  border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-200{
  --border-opacity     : 1 !important;
  border-color     : #fce96a !important;
  border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-300{
  --border-opacity     : 1 !important;
  border-color     : #faca15 !important;
  border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-400{
  --border-opacity     : 1 !important;
  border-color     : #e3a008 !important;
  border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-500{
  --border-opacity     : 1 !important;
  border-color     : #c27803 !important;
  border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-600{
  --border-opacity     : 1 !important;
  border-color     : #9f580a !important;
  border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-700{
  --border-opacity     : 1 !important;
  border-color     : #8e4b10 !important;
  border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-800{
  --border-opacity     : 1 !important;
  border-color     : #723b13 !important;
  border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-yellow-900{
  --border-opacity     : 1 !important;
  border-color     : #633112 !important;
  border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-50{
  --border-opacity     : 1 !important;
  border-color     : #f3faf7 !important;
  border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-100{
  --border-opacity     : 1 !important;
  border-color     : #def7ec !important;
  border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-200{
  --border-opacity     : 1 !important;
  border-color     : #bcf0da !important;
  border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-300{
  --border-opacity     : 1 !important;
  border-color     : #84e1bc !important;
  border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-400{
  --border-opacity     : 1 !important;
  border-color     : #31c48d !important;
  border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-500{
  --border-opacity     : 1 !important;
  border-color     : #0e9f6e !important;
  border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-600{
  --border-opacity     : 1 !important;
  border-color     : #057a55 !important;
  border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-700{
  --border-opacity     : 1 !important;
  border-color     : #046c4e !important;
  border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-800{
  --border-opacity     : 1 !important;
  border-color     : #03543f !important;
  border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-green-900{
  --border-opacity     : 1 !important;
  border-color     : #014737 !important;
  border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-50{
  --border-opacity     : 1 !important;
  border-color     : #edfafa !important;
  border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-100{
  --border-opacity     : 1 !important;
  border-color     : #d5f5f6 !important;
  border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-200{
  --border-opacity     : 1 !important;
  border-color     : #afecef !important;
  border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-300{
  --border-opacity     : 1 !important;
  border-color     : #7edce2 !important;
  border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-400{
  --border-opacity     : 1 !important;
  border-color     : #16bdca !important;
  border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-500{
  --border-opacity     : 1 !important;
  border-color     : #0694a2 !important;
  border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-600{
  --border-opacity     : 1 !important;
  border-color     : #047481 !important;
  border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-700{
  --border-opacity     : 1 !important;
  border-color     : #036672 !important;
  border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-800{
  --border-opacity     : 1 !important;
  border-color     : #05505c !important;
  border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-teal-900{
  --border-opacity     : 1 !important;
  border-color     : #014451 !important;
  border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-50{
  --border-opacity     : 1 !important;
  border-color     : #ebf5ff !important;
  border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-100{
  --border-opacity     : 1 !important;
  border-color     : #e1effe !important;
  border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-200{
  --border-opacity     : 1 !important;
  border-color     : #c3ddfd !important;
  border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-300{
  --border-opacity     : 1 !important;
  border-color     : #a4cafe !important;
  border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-400{
  --border-opacity     : 1 !important;
  border-color     : #76a9fa !important;
  border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-500{
  --border-opacity     : 1 !important;
  border-color     : #3f83f8 !important;
  border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-600{
  --border-opacity     : 1 !important;
  border-color     : #1c64f2 !important;
  border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-700{
  --border-opacity     : 1 !important;
  border-color     : #1a56db !important;
  border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-800{
  --border-opacity     : 1 !important;
  border-color     : #1e429f !important;
  border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-900{
  --border-opacity     : 1 !important;
  border-color     : #233876 !important;
  border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-50{
  --border-opacity     : 1 !important;
  border-color     : #f0f5ff !important;
  border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-100{
  --border-opacity     : 1 !important;
  border-color     : #e5edff !important;
  border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-200{
  --border-opacity     : 1 !important;
  border-color     : #cddbfe !important;
  border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-300{
  --border-opacity     : 1 !important;
  border-color     : #b4c6fc !important;
  border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-400{
  --border-opacity     : 1 !important;
  border-color     : #8da2fb !important;
  border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-500{
  --border-opacity     : 1 !important;
  border-color     : #6875f5 !important;
  border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-600{
  --border-opacity     : 1 !important;
  border-color     : #5850ec !important;
  border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-700{
  --border-opacity     : 1 !important;
  border-color     : #5145cd !important;
  border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-800{
  --border-opacity     : 1 !important;
  border-color     : #42389d !important;
  border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-indigo-900{
  --border-opacity     : 1 !important;
  border-color     : #362f78 !important;
  border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-50{
  --border-opacity     : 1 !important;
  border-color     : #f6f5ff !important;
  border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-100{
  --border-opacity     : 1 !important;
  border-color     : #edebfe !important;
  border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-200{
  --border-opacity     : 1 !important;
  border-color     : #dcd7fe !important;
  border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-300{
  --border-opacity     : 1 !important;
  border-color     : #cabffd !important;
  border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-400{
  --border-opacity     : 1 !important;
  border-color     : #ac94fa !important;
  border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-500{
  --border-opacity     : 1 !important;
  border-color     : #9061f9 !important;
  border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-600{
  --border-opacity     : 1 !important;
  border-color     : #7e3af2 !important;
  border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-700{
  --border-opacity     : 1 !important;
  border-color     : #6c2bd9 !important;
  border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-800{
  --border-opacity     : 1 !important;
  border-color     : #5521b5 !important;
  border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-purple-900{
  --border-opacity     : 1 !important;
  border-color     : #4a1d96 !important;
  border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-50{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f8 !important;
  border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-100{
  --border-opacity     : 1 !important;
  border-color     : #fce8f3 !important;
  border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-200{
  --border-opacity     : 1 !important;
  border-color     : #fad1e8 !important;
  border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-300{
  --border-opacity     : 1 !important;
  border-color     : #f8b4d9 !important;
  border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-400{
  --border-opacity     : 1 !important;
  border-color     : #f17eb8 !important;
  border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-500{
  --border-opacity     : 1 !important;
  border-color     : #e74694 !important;
  border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-600{
  --border-opacity     : 1 !important;
  border-color     : #d61f69 !important;
  border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-700{
  --border-opacity     : 1 !important;
  border-color     : #bf125d !important;
  border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-800{
  --border-opacity     : 1 !important;
  border-color     : #99154b !important;
  border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-pink-900{
  --border-opacity     : 1 !important;
  border-color     : #751a3d !important;
  border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
}

.group:hover .group-hover\:border-blue-brand{
  --border-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
}

.hover\:border-transparent:hover{
  border-color     : transparent !important;
}

.hover\:border-white:hover{
  --border-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
}

.hover\:border-black:hover{
  --border-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
}

.hover\:border-gray-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #f9fafb !important;
  border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
}

.hover\:border-gray-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #f4f5f7 !important;
  border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
}

.hover\:border-gray-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #e5e7eb !important;
  border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
}

.hover\:border-gray-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #d2d6dc !important;
  border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
}

.hover\:border-gray-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #9fa6b2 !important;
  border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
}

.hover\:border-gray-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #6b7280 !important;
  border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
}

.hover\:border-gray-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #4b5563 !important;
  border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
}

.hover\:border-gray-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #374151 !important;
  border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
}

.hover\:border-gray-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #252f3f !important;
  border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
}

.hover\:border-gray-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #161e2e !important;
  border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #f1f5f9 !important;
  border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #e2e8f0 !important;
  border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #cfd8e3 !important;
  border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #97a6ba !important;
  border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #64748b !important;
  border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #475569 !important;
  border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #364152 !important;
  border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #27303f !important;
  border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
}

.hover\:border-cool-gray-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #1a202e !important;
  border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
}

.hover\:border-red-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f2 !important;
  border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
}

.hover\:border-red-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #fde8e8 !important;
  border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
}

.hover\:border-red-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #fbd5d5 !important;
  border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
}

.hover\:border-red-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #f8b4b4 !important;
  border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
}

.hover\:border-red-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #f98080 !important;
  border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
}

.hover\:border-red-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #f05252 !important;
  border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
}

.hover\:border-red-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #e02424 !important;
  border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
}

.hover\:border-red-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #c81e1e !important;
  border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
}

.hover\:border-red-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #9b1c1c !important;
  border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
}

.hover\:border-red-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #771d1d !important;
  border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
}

.hover\:border-orange-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #fff8f1 !important;
  border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
}

.hover\:border-orange-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #feecdc !important;
  border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
}

.hover\:border-orange-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #fcd9bd !important;
  border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
}

.hover\:border-orange-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #fdba8c !important;
  border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
}

.hover\:border-orange-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #ff8a4c !important;
  border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
}

.hover\:border-orange-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #ff5a1f !important;
  border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
}

.hover\:border-orange-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #d03801 !important;
  border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
}

.hover\:border-orange-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #b43403 !important;
  border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
}

.hover\:border-orange-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #8a2c0d !important;
  border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
}

.hover\:border-orange-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
}

.hover\:border-yellow-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #fdfdea !important;
  border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
}

.hover\:border-yellow-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #fdf6b2 !important;
  border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
}

.hover\:border-yellow-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #fce96a !important;
  border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
}

.hover\:border-yellow-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #faca15 !important;
  border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
}

.hover\:border-yellow-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #e3a008 !important;
  border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
}

.hover\:border-yellow-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #c27803 !important;
  border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
}

.hover\:border-yellow-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #9f580a !important;
  border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
}

.hover\:border-yellow-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #8e4b10 !important;
  border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
}

.hover\:border-yellow-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #723b13 !important;
  border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
}

.hover\:border-yellow-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #633112 !important;
  border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
}

.hover\:border-green-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #f3faf7 !important;
  border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
}

.hover\:border-green-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #def7ec !important;
  border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
}

.hover\:border-green-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #bcf0da !important;
  border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
}

.hover\:border-green-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #84e1bc !important;
  border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
}

.hover\:border-green-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #31c48d !important;
  border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
}

.hover\:border-green-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #0e9f6e !important;
  border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
}

.hover\:border-green-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #057a55 !important;
  border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
}

.hover\:border-green-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #046c4e !important;
  border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
}

.hover\:border-green-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #03543f !important;
  border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
}

.hover\:border-green-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #014737 !important;
  border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
}

.hover\:border-teal-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #edfafa !important;
  border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
}

.hover\:border-teal-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #d5f5f6 !important;
  border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
}

.hover\:border-teal-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #afecef !important;
  border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
}

.hover\:border-teal-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #7edce2 !important;
  border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
}

.hover\:border-teal-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #16bdca !important;
  border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
}

.hover\:border-teal-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #0694a2 !important;
  border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
}

.hover\:border-teal-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #047481 !important;
  border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
}

.hover\:border-teal-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #036672 !important;
  border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
}

.hover\:border-teal-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #05505c !important;
  border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
}

.hover\:border-teal-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #014451 !important;
  border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
}

.hover\:border-blue-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #ebf5ff !important;
  border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
}

.hover\:border-blue-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #e1effe !important;
  border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
}

.hover\:border-blue-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #c3ddfd !important;
  border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
}

.hover\:border-blue-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #a4cafe !important;
  border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
}

.hover\:border-blue-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #76a9fa !important;
  border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
}

.hover\:border-blue-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #3f83f8 !important;
  border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
}

.hover\:border-blue-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #1c64f2 !important;
  border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
}

.hover\:border-blue-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #1a56db !important;
  border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
}

.hover\:border-blue-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #1e429f !important;
  border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
}

.hover\:border-blue-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #233876 !important;
  border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
}

.hover\:border-indigo-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #f0f5ff !important;
  border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
}

.hover\:border-indigo-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #e5edff !important;
  border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
}

.hover\:border-indigo-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #cddbfe !important;
  border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
}

.hover\:border-indigo-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #b4c6fc !important;
  border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
}

.hover\:border-indigo-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #8da2fb !important;
  border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
}

.hover\:border-indigo-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #6875f5 !important;
  border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
}

.hover\:border-indigo-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #5850ec !important;
  border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
}

.hover\:border-indigo-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #5145cd !important;
  border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
}

.hover\:border-indigo-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #42389d !important;
  border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
}

.hover\:border-indigo-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #362f78 !important;
  border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
}

.hover\:border-purple-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #f6f5ff !important;
  border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
}

.hover\:border-purple-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #edebfe !important;
  border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
}

.hover\:border-purple-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #dcd7fe !important;
  border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
}

.hover\:border-purple-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #cabffd !important;
  border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
}

.hover\:border-purple-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #ac94fa !important;
  border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
}

.hover\:border-purple-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #9061f9 !important;
  border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
}

.hover\:border-purple-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #7e3af2 !important;
  border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
}

.hover\:border-purple-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #6c2bd9 !important;
  border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
}

.hover\:border-purple-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #5521b5 !important;
  border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
}

.hover\:border-purple-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #4a1d96 !important;
  border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
}

.hover\:border-pink-50:hover{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f8 !important;
  border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
}

.hover\:border-pink-100:hover{
  --border-opacity     : 1 !important;
  border-color     : #fce8f3 !important;
  border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
}

.hover\:border-pink-200:hover{
  --border-opacity     : 1 !important;
  border-color     : #fad1e8 !important;
  border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
}

.hover\:border-pink-300:hover{
  --border-opacity     : 1 !important;
  border-color     : #f8b4d9 !important;
  border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
}

.hover\:border-pink-400:hover{
  --border-opacity     : 1 !important;
  border-color     : #f17eb8 !important;
  border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
}

.hover\:border-pink-500:hover{
  --border-opacity     : 1 !important;
  border-color     : #e74694 !important;
  border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
}

.hover\:border-pink-600:hover{
  --border-opacity     : 1 !important;
  border-color     : #d61f69 !important;
  border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
}

.hover\:border-pink-700:hover{
  --border-opacity     : 1 !important;
  border-color     : #bf125d !important;
  border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
}

.hover\:border-pink-800:hover{
  --border-opacity     : 1 !important;
  border-color     : #99154b !important;
  border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
}

.hover\:border-pink-900:hover{
  --border-opacity     : 1 !important;
  border-color     : #751a3d !important;
  border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
}

.hover\:border-blue-brand:hover{
  --border-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
}

.focus\:border-transparent:focus{
  border-color     : transparent !important;
}

.focus\:border-white:focus{
  --border-opacity     : 1 !important;
  border-color     : #ffffff !important;
  border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
}

.focus\:border-black:focus{
  --border-opacity     : 1 !important;
  border-color     : #000000 !important;
  border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
}

.focus\:border-gray-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #f9fafb !important;
  border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
}

.focus\:border-gray-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #f4f5f7 !important;
  border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
}

.focus\:border-gray-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #e5e7eb !important;
  border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
}

.focus\:border-gray-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #d2d6dc !important;
  border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
}

.focus\:border-gray-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #9fa6b2 !important;
  border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
}

.focus\:border-gray-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #6b7280 !important;
  border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
}

.focus\:border-gray-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #4b5563 !important;
  border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
}

.focus\:border-gray-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #374151 !important;
  border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
}

.focus\:border-gray-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #252f3f !important;
  border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
}

.focus\:border-gray-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #161e2e !important;
  border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #f8fafc !important;
  border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #f1f5f9 !important;
  border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #e2e8f0 !important;
  border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #cfd8e3 !important;
  border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #97a6ba !important;
  border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #64748b !important;
  border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #475569 !important;
  border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #364152 !important;
  border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #27303f !important;
  border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
}

.focus\:border-cool-gray-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #1a202e !important;
  border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
}

.focus\:border-red-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f2 !important;
  border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
}

.focus\:border-red-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #fde8e8 !important;
  border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
}

.focus\:border-red-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #fbd5d5 !important;
  border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
}

.focus\:border-red-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #f8b4b4 !important;
  border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
}

.focus\:border-red-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #f98080 !important;
  border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
}

.focus\:border-red-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #f05252 !important;
  border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
}

.focus\:border-red-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #e02424 !important;
  border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
}

.focus\:border-red-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #c81e1e !important;
  border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
}

.focus\:border-red-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #9b1c1c !important;
  border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
}

.focus\:border-red-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #771d1d !important;
  border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
}

.focus\:border-orange-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #fff8f1 !important;
  border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
}

.focus\:border-orange-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #feecdc !important;
  border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
}

.focus\:border-orange-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #fcd9bd !important;
  border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
}

.focus\:border-orange-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #fdba8c !important;
  border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
}

.focus\:border-orange-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #ff8a4c !important;
  border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
}

.focus\:border-orange-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #ff5a1f !important;
  border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
}

.focus\:border-orange-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #d03801 !important;
  border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
}

.focus\:border-orange-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #b43403 !important;
  border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
}

.focus\:border-orange-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #8a2c0d !important;
  border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
}

.focus\:border-orange-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #73230d !important;
  border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
}

.focus\:border-yellow-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #fdfdea !important;
  border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
}

.focus\:border-yellow-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #fdf6b2 !important;
  border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
}

.focus\:border-yellow-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #fce96a !important;
  border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
}

.focus\:border-yellow-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #faca15 !important;
  border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
}

.focus\:border-yellow-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #e3a008 !important;
  border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
}

.focus\:border-yellow-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #c27803 !important;
  border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
}

.focus\:border-yellow-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #9f580a !important;
  border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
}

.focus\:border-yellow-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #8e4b10 !important;
  border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
}

.focus\:border-yellow-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #723b13 !important;
  border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
}

.focus\:border-yellow-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #633112 !important;
  border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
}

.focus\:border-green-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #f3faf7 !important;
  border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
}

.focus\:border-green-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #def7ec !important;
  border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
}

.focus\:border-green-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #bcf0da !important;
  border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
}

.focus\:border-green-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #84e1bc !important;
  border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
}

.focus\:border-green-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #31c48d !important;
  border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
}

.focus\:border-green-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #0e9f6e !important;
  border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
}

.focus\:border-green-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #057a55 !important;
  border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
}

.focus\:border-green-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #046c4e !important;
  border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
}

.focus\:border-green-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #03543f !important;
  border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
}

.focus\:border-green-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #014737 !important;
  border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
}

.focus\:border-teal-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #edfafa !important;
  border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
}

.focus\:border-teal-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #d5f5f6 !important;
  border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
}

.focus\:border-teal-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #afecef !important;
  border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
}

.focus\:border-teal-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #7edce2 !important;
  border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
}

.focus\:border-teal-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #16bdca !important;
  border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
}

.focus\:border-teal-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #0694a2 !important;
  border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
}

.focus\:border-teal-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #047481 !important;
  border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
}

.focus\:border-teal-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #036672 !important;
  border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
}

.focus\:border-teal-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #05505c !important;
  border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
}

.focus\:border-teal-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #014451 !important;
  border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
}

.focus\:border-blue-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #ebf5ff !important;
  border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
}

.focus\:border-blue-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #e1effe !important;
  border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
}

.focus\:border-blue-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #c3ddfd !important;
  border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
}

.focus\:border-blue-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #a4cafe !important;
  border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
}

.focus\:border-blue-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #76a9fa !important;
  border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
}

.focus\:border-blue-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #3f83f8 !important;
  border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
}

.focus\:border-blue-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #1c64f2 !important;
  border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
}

.focus\:border-blue-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #1a56db !important;
  border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
}

.focus\:border-blue-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #1e429f !important;
  border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
}

.focus\:border-blue-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #233876 !important;
  border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
}

.focus\:border-indigo-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #f0f5ff !important;
  border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
}

.focus\:border-indigo-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #e5edff !important;
  border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
}

.focus\:border-indigo-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #cddbfe !important;
  border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
}

.focus\:border-indigo-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #b4c6fc !important;
  border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
}

.focus\:border-indigo-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #8da2fb !important;
  border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
}

.focus\:border-indigo-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #6875f5 !important;
  border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
}

.focus\:border-indigo-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #5850ec !important;
  border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
}

.focus\:border-indigo-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #5145cd !important;
  border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
}

.focus\:border-indigo-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #42389d !important;
  border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
}

.focus\:border-indigo-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #362f78 !important;
  border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
}

.focus\:border-purple-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #f6f5ff !important;
  border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
}

.focus\:border-purple-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #edebfe !important;
  border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
}

.focus\:border-purple-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #dcd7fe !important;
  border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
}

.focus\:border-purple-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #cabffd !important;
  border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
}

.focus\:border-purple-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #ac94fa !important;
  border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
}

.focus\:border-purple-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #9061f9 !important;
  border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
}

.focus\:border-purple-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #7e3af2 !important;
  border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
}

.focus\:border-purple-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #6c2bd9 !important;
  border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
}

.focus\:border-purple-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #5521b5 !important;
  border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
}

.focus\:border-purple-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #4a1d96 !important;
  border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
}

.focus\:border-pink-50:focus{
  --border-opacity     : 1 !important;
  border-color     : #fdf2f8 !important;
  border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
}

.focus\:border-pink-100:focus{
  --border-opacity     : 1 !important;
  border-color     : #fce8f3 !important;
  border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
}

.focus\:border-pink-200:focus{
  --border-opacity     : 1 !important;
  border-color     : #fad1e8 !important;
  border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
}

.focus\:border-pink-300:focus{
  --border-opacity     : 1 !important;
  border-color     : #f8b4d9 !important;
  border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
}

.focus\:border-pink-400:focus{
  --border-opacity     : 1 !important;
  border-color     : #f17eb8 !important;
  border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
}

.focus\:border-pink-500:focus{
  --border-opacity     : 1 !important;
  border-color     : #e74694 !important;
  border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
}

.focus\:border-pink-600:focus{
  --border-opacity     : 1 !important;
  border-color     : #d61f69 !important;
  border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
}

.focus\:border-pink-700:focus{
  --border-opacity     : 1 !important;
  border-color     : #bf125d !important;
  border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
}

.focus\:border-pink-800:focus{
  --border-opacity     : 1 !important;
  border-color     : #99154b !important;
  border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
}

.focus\:border-pink-900:focus{
  --border-opacity     : 1 !important;
  border-color     : #751a3d !important;
  border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
}

.focus\:border-blue-brand:focus{
  --border-opacity     : 1 !important;
  border-color     : #0287f6 !important;
  border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
}

.border-opacity-0{
  --border-opacity     : 0 !important;
}

.border-opacity-25{
  --border-opacity     : 0.25 !important;
}

.border-opacity-50{
  --border-opacity     : 0.5 !important;
}

.border-opacity-75{
  --border-opacity     : 0.75 !important;
}

.border-opacity-100{
  --border-opacity     : 1 !important;
}

.group:hover .group-hover\:border-opacity-0{
  --border-opacity     : 0 !important;
}

.group:hover .group-hover\:border-opacity-25{
  --border-opacity     : 0.25 !important;
}

.group:hover .group-hover\:border-opacity-50{
  --border-opacity     : 0.5 !important;
}

.group:hover .group-hover\:border-opacity-75{
  --border-opacity     : 0.75 !important;
}

.group:hover .group-hover\:border-opacity-100{
  --border-opacity     : 1 !important;
}

.hover\:border-opacity-0:hover{
  --border-opacity     : 0 !important;
}

.hover\:border-opacity-25:hover{
  --border-opacity     : 0.25 !important;
}

.hover\:border-opacity-50:hover{
  --border-opacity     : 0.5 !important;
}

.hover\:border-opacity-75:hover{
  --border-opacity     : 0.75 !important;
}

.hover\:border-opacity-100:hover{
  --border-opacity     : 1 !important;
}

.focus\:border-opacity-0:focus{
  --border-opacity     : 0 !important;
}

.focus\:border-opacity-25:focus{
  --border-opacity     : 0.25 !important;
}

.focus\:border-opacity-50:focus{
  --border-opacity     : 0.5 !important;
}

.focus\:border-opacity-75:focus{
  --border-opacity     : 0.75 !important;
}

.focus\:border-opacity-100:focus{
  --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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:rounded-bl-full:focus{
  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;
}

.group:hover .group-hover\:border-solid{
  border-style     : solid !important;
}

.group:hover .group-hover\:border-dashed{
  border-style     : dashed !important;
}

.group:hover .group-hover\:border-dotted{
  border-style     : dotted !important;
}

.group:hover .group-hover\:border-double{
  border-style     : double !important;
}

.group:hover .group-hover\:border-none{
  border-style     : none !important;
}

.hover\:border-solid:hover{
  border-style     : solid !important;
}

.hover\:border-dashed:hover{
  border-style     : dashed !important;
}

.hover\:border-dotted:hover{
  border-style     : dotted !important;
}

.hover\:border-double:hover{
  border-style     : double !important;
}

.hover\:border-none:hover{
  border-style     : none !important;
}

.focus\:border-solid:focus{
  border-style     : solid !important;
}

.focus\:border-dashed:focus{
  border-style     : dashed !important;
}

.focus\:border-dotted:focus{
  border-style     : dotted !important;
}

.focus\:border-double:focus{
  border-style     : double !important;
}

.focus\:border-none:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-border{
  box-sizing     : border-box !important;
}

.box-content{
  box-sizing     : content-box !important;
}

.group:hover .group-hover\:box-border{
  box-sizing     : border-box !important;
}

.group:hover .group-hover\:box-content{
  box-sizing     : content-box !important;
}

.hover\:box-border:hover{
  box-sizing     : border-box !important;
}

.hover\:box-content:hover{
  box-sizing     : content-box !important;
}

.focus\:box-border:focus{
  box-sizing     : border-box !important;
}

.focus\:box-content:focus{
  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;
}

.group:hover .group-hover\:cursor-auto{
  cursor     : auto !important;
}

.group:hover .group-hover\:cursor-default{
  cursor     : default !important;
}

.group:hover .group-hover\:cursor-pointer{
  cursor     : pointer !important;
}

.group:hover .group-hover\:cursor-wait{
  cursor     : wait !important;
}

.group:hover .group-hover\:cursor-text{
  cursor     : text !important;
}

.group:hover .group-hover\:cursor-move{
  cursor     : move !important;
}

.group:hover .group-hover\:cursor-not-allowed{
  cursor     : not-allowed !important;
}

.hover\:cursor-auto:hover{
  cursor     : auto !important;
}

.hover\:cursor-default:hover{
  cursor     : default !important;
}

.hover\:cursor-pointer:hover{
  cursor     : pointer !important;
}

.hover\:cursor-wait:hover{
  cursor     : wait !important;
}

.hover\:cursor-text:hover{
  cursor     : text !important;
}

.hover\:cursor-move:hover{
  cursor     : move !important;
}

.hover\:cursor-not-allowed:hover{
  cursor     : not-allowed !important;
}

.focus\:cursor-auto:focus{
  cursor     : auto !important;
}

.focus\:cursor-default:focus{
  cursor     : default !important;
}

.focus\:cursor-pointer:focus{
  cursor     : pointer !important;
}

.focus\:cursor-wait:focus{
  cursor     : wait !important;
}

.focus\:cursor-text:focus{
  cursor     : text !important;
}

.focus\:cursor-move:focus{
  cursor     : move !important;
}

.focus\:cursor-not-allowed:focus{
  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;
}

.hidden{
  display     : none !important;
}

.group:hover .group-hover\:block{
  display     : block !important;
}

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

.group:hover .group-hover\:inline{
  display     : inline !important;
}

.group:hover .group-hover\:flex{
  display     : flex !important;
}

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

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

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

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

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

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

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

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

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

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

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

.group:hover .group-hover\:grid{
  display     : grid !important;
}

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

.group:hover .group-hover\:hidden{
  display     : none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:hidden:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.focus\:flex-col-reverse:focus{
  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;
}

.group:hover .group-hover\:flex-wrap{
  flex-wrap     : wrap !important;
}

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

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

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

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

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

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

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

.focus\:flex-no-wrap:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:items-stretch:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:self-stretch:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:justify-evenly:focus{
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:content-around:focus{
  align-content     : space-around !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;
}

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

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

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

.group:hover .group-hover\:flex-none{
  flex     : none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:flex-shrink:focus{
  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;
}

.group:hover .group-hover\:order-1{
  order     : 1 !important;
}

.group:hover .group-hover\:order-2{
  order     : 2 !important;
}

.group:hover .group-hover\:order-3{
  order     : 3 !important;
}

.group:hover .group-hover\:order-4{
  order     : 4 !important;
}

.group:hover .group-hover\:order-5{
  order     : 5 !important;
}

.group:hover .group-hover\:order-6{
  order     : 6 !important;
}

.group:hover .group-hover\:order-7{
  order     : 7 !important;
}

.group:hover .group-hover\:order-8{
  order     : 8 !important;
}

.group:hover .group-hover\:order-9{
  order     : 9 !important;
}

.group:hover .group-hover\:order-10{
  order     : 10 !important;
}

.group:hover .group-hover\:order-11{
  order     : 11 !important;
}

.group:hover .group-hover\:order-12{
  order     : 12 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.float-right{
  float     : right !important;
}

.float-left{
  float     : left !important;
}

.float-none{
  float     : none !important;
}

.clearfix:after{
  content     : "" !important;
  display     : table !important;
  clear     : both !important;
}

.group:hover .group-hover\:float-right{
  float     : right !important;
}

.group:hover .group-hover\:float-left{
  float     : left !important;
}

.group:hover .group-hover\:float-none{
  float     : none !important;
}

.group:hover .group-hover\:clearfix:after{
  content     : "" !important;
  display     : table !important;
  clear     : both !important;
}

.hover\:float-right:hover{
  float     : right !important;
}

.hover\:float-left:hover{
  float     : left !important;
}

.hover\:float-none:hover{
  float     : none !important;
}

.hover\:clearfix:hover:after{
  content     : "" !important;
  display     : table !important;
  clear     : both !important;
}

.focus\:float-right:focus{
  float     : right !important;
}

.focus\:float-left:focus{
  float     : left !important;
}

.focus\:float-none:focus{
  float     : none !important;
}

.focus\:clearfix:focus:after{
  content     : "" !important;
  display     : table !important;
  clear     : both !important;
}

.clear-left{
  clear     : left !important;
}

.clear-right{
  clear     : right !important;
}

.clear-both{
  clear     : both !important;
}

.clear-none{
  clear     : none !important;
}

.group:hover .group-hover\:clear-left{
  clear     : left !important;
}

.group:hover .group-hover\:clear-right{
  clear     : right !important;
}

.group:hover .group-hover\:clear-both{
  clear     : both !important;
}

.group:hover .group-hover\:clear-none{
  clear     : none !important;
}

.hover\:clear-left:hover{
  clear     : left !important;
}

.hover\:clear-right:hover{
  clear     : right !important;
}

.hover\:clear-both:hover{
  clear     : both !important;
}

.hover\:clear-none:hover{
  clear     : none !important;
}

.focus\:clear-left:focus{
  clear     : left !important;
}

.focus\:clear-right:focus{
  clear     : right !important;
}

.focus\:clear-both:focus{
  clear     : both !important;
}

.focus\:clear-none:focus{
  clear     : none !important;
}

.font-sans{
  font-family     : 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     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.group:hover .group-hover\:font-sans{
  font-family     : 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;
}

.group:hover .group-hover\:font-serif{
  font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
}

.group:hover .group-hover\:font-mono{
  font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.hover\:font-sans:hover{
  font-family     : 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;
}

.hover\:font-serif:hover{
  font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
}

.hover\:font-mono:hover{
  font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.focus\:font-sans:focus{
  font-family     : 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;
}

.focus\:font-serif:focus{
  font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
}

.focus\:font-mono:focus{
  font-family     : 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:font-black:focus{
  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-20{
  height     : 5rem !important;
}

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

.h-28{
  height     : 7rem !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-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-96{
  height     : 24rem !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-screen{
  height     : 100vh !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-sm{
  font-size     : 0.875rem !important;
}

.text-base{
  font-size     : 1rem !important;
}

.text-lg{
  font-size     : 1.125rem !important;
}

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

.text-2xl{
  font-size     : 1.5rem !important;
}

.text-3xl{
  font-size     : 1.875rem !important;
}

.text-4xl{
  font-size     : 2.25rem !important;
}

.text-5xl{
  font-size     : 3rem !important;
}

.text-6xl{
  font-size     : 4rem !important;
}

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

.group:hover .group-hover\:text-sm{
  font-size     : 0.875rem !important;
}

.group:hover .group-hover\:text-base{
  font-size     : 1rem !important;
}

.group:hover .group-hover\:text-lg{
  font-size     : 1.125rem !important;
}

.group:hover .group-hover\:text-xl{
  font-size     : 1.25rem !important;
}

.group:hover .group-hover\:text-2xl{
  font-size     : 1.5rem !important;
}

.group:hover .group-hover\:text-3xl{
  font-size     : 1.875rem !important;
}

.group:hover .group-hover\:text-4xl{
  font-size     : 2.25rem !important;
}

.group:hover .group-hover\:text-5xl{
  font-size     : 3rem !important;
}

.group:hover .group-hover\:text-6xl{
  font-size     : 4rem !important;
}

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

.hover\:text-sm:hover{
  font-size     : 0.875rem !important;
}

.hover\:text-base:hover{
  font-size     : 1rem !important;
}

.hover\:text-lg:hover{
  font-size     : 1.125rem !important;
}

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

.hover\:text-2xl:hover{
  font-size     : 1.5rem !important;
}

.hover\:text-3xl:hover{
  font-size     : 1.875rem !important;
}

.hover\:text-4xl:hover{
  font-size     : 2.25rem !important;
}

.hover\:text-5xl:hover{
  font-size     : 3rem !important;
}

.hover\:text-6xl:hover{
  font-size     : 4rem !important;
}

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

.focus\:text-sm:focus{
  font-size     : 0.875rem !important;
}

.focus\:text-base:focus{
  font-size     : 1rem !important;
}

.focus\:text-lg:focus{
  font-size     : 1.125rem !important;
}

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

.focus\:text-2xl:focus{
  font-size     : 1.5rem !important;
}

.focus\:text-3xl:focus{
  font-size     : 1.875rem !important;
}

.focus\:text-4xl:focus{
  font-size     : 2.25rem !important;
}

.focus\:text-5xl:focus{
  font-size     : 3rem !important;
}

.focus\:text-6xl:focus{
  font-size     : 4rem !important;
}

.leading-3{
  line-height     : .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;
}

.group:hover .group-hover\:leading-3{
  line-height     : .75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:leading-3:hover{
  line-height     : .75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus\:leading-3:focus{
  line-height     : .75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-inside{
  list-style-position     : inside !important;
}

.list-outside{
  list-style-position     : outside !important;
}

.group:hover .group-hover\:list-inside{
  list-style-position     : inside !important;
}

.group:hover .group-hover\:list-outside{
  list-style-position     : outside !important;
}

.hover\:list-inside:hover{
  list-style-position     : inside !important;
}

.hover\:list-outside:hover{
  list-style-position     : outside !important;
}

.focus\:list-inside:focus{
  list-style-position     : inside !important;
}

.focus\:list-outside:focus{
  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;
}

.group:hover .group-hover\:list-none{
  list-style-type     : none !important;
}

.group:hover .group-hover\:list-disc{
  list-style-type     : disc !important;
}

.group:hover .group-hover\:list-decimal{
  list-style-type     : decimal !important;
}

.hover\:list-none:hover{
  list-style-type     : none !important;
}

.hover\:list-disc:hover{
  list-style-type     : disc !important;
}

.hover\:list-decimal:hover{
  list-style-type     : decimal !important;
}

.focus\:list-none:focus{
  list-style-type     : none !important;
}

.focus\:list-disc:focus{
  list-style-type     : disc !important;
}

.focus\:list-decimal:focus{
  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-20{
  margin     : 5rem !important;
}

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

.m-28{
  margin     : 7rem !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-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-96{
  margin     : 24rem !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-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-20{
  margin     : -5rem !important;
}

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

.-m-28{
  margin     : -7rem !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-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-96{
  margin     : -24rem !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;
}

.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-20{
  margin-top     : 5rem !important;
  margin-bottom     : 5rem !important;
}

.mx-20{
  margin-left     : 5rem !important;
  margin-right     : 5rem !important;
}

.my-24{
  margin-top     : 6rem !important;
  margin-bottom     : 6rem !important;
}

.mx-24{
  margin-left     : 6rem !important;
  margin-right     : 6rem !important;
}

.my-28{
  margin-top     : 7rem !important;
  margin-bottom     : 7rem !important;
}

.mx-28{
  margin-left     : 7rem !important;
  margin-right     : 7rem !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-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-96{
  margin-top     : 24rem !important;
  margin-bottom     : 24rem !important;
}

.mx-96{
  margin-left     : 24rem !important;
  margin-right     : 24rem !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-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-20{
  margin-top     : -5rem !important;
  margin-bottom     : -5rem !important;
}

.-mx-20{
  margin-left     : -5rem !important;
  margin-right     : -5rem !important;
}

.-my-24{
  margin-top     : -6rem !important;
  margin-bottom     : -6rem !important;
}

.-mx-24{
  margin-left     : -6rem !important;
  margin-right     : -6rem !important;
}

.-my-28{
  margin-top     : -7rem !important;
  margin-bottom     : -7rem !important;
}

.-mx-28{
  margin-left     : -7rem !important;
  margin-right     : -7rem !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-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-96{
  margin-top     : -24rem !important;
  margin-bottom     : -24rem !important;
}

.-mx-96{
  margin-left     : -24rem !important;
  margin-right     : -24rem !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;
}

.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-20{
  margin-top     : 5rem !important;
}

.mr-20{
  margin-right     : 5rem !important;
}

.mb-20{
  margin-bottom     : 5rem !important;
}

.ml-20{
  margin-left     : 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-28{
  margin-top     : 7rem !important;
}

.mr-28{
  margin-right     : 7rem !important;
}

.mb-28{
  margin-bottom     : 7rem !important;
}

.ml-28{
  margin-left     : 7rem !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-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-96{
  margin-top     : 24rem !important;
}

.mr-96{
  margin-right     : 24rem !important;
}

.mb-96{
  margin-bottom     : 24rem !important;
}

.ml-96{
  margin-left     : 24rem !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-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-20{
  margin-top     : -5rem !important;
}

.-mr-20{
  margin-right     : -5rem !important;
}

.-mb-20{
  margin-bottom     : -5rem !important;
}

.-ml-20{
  margin-left     : -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-28{
  margin-top     : -7rem !important;
}

.-mr-28{
  margin-right     : -7rem !important;
}

.-mb-28{
  margin-bottom     : -7rem !important;
}

.-ml-28{
  margin-left     : -7rem !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-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-96{
  margin-top     : -24rem !important;
}

.-mr-96{
  margin-right     : -24rem !important;
}

.-mb-96{
  margin-bottom     : -24rem !important;
}

.-ml-96{
  margin-left     : -24rem !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.group:hover .group-hover\:-m-9{
  margin     : -2.25rem !important;
}

.group:hover .group-hover\:-m-10{
  margin     : -2.5rem !important;
}

.group:hover .group-hover\:-m-11{
  margin     : -2.75rem !important;
}

.group:hover .group-hover\:-m-12{
  margin     : -3rem !important;
}

.group:hover .group-hover\:-m-13{
  margin     : -3.25rem !important;
}

.group:hover .group-hover\:-m-14{
  margin     : -3.5rem !important;
}

.group:hover .group-hover\:-m-15{
  margin     : -3.75rem !important;
}

.group:hover .group-hover\:-m-16{
  margin     : -4rem !important;
}

.group:hover .group-hover\:-m-20{
  margin     : -5rem !important;
}

.group:hover .group-hover\:-m-24{
  margin     : -6rem !important;
}

.group:hover .group-hover\:-m-28{
  margin     : -7rem !important;
}

.group:hover .group-hover\:-m-32{
  margin     : -8rem !important;
}

.group:hover .group-hover\:-m-36{
  margin     : -9rem !important;
}

.group:hover .group-hover\:-m-40{
  margin     : -10rem !important;
}

.group:hover .group-hover\:-m-44{
  margin     : -11rem !important;
}

.group:hover .group-hover\:-m-48{
  margin     : -12rem !important;
}

.group:hover .group-hover\:-m-52{
  margin     : -13rem !important;
}

.group:hover .group-hover\:-m-56{
  margin     : -14rem !important;
}

.group:hover .group-hover\:-m-60{
  margin     : -15rem !important;
}

.group:hover .group-hover\:-m-64{
  margin     : -16rem !important;
}

.group:hover .group-hover\:-m-72{
  margin     : -18rem !important;
}

.group:hover .group-hover\:-m-80{
  margin     : -20rem !important;
}

.group:hover .group-hover\:-m-96{
  margin     : -24rem !important;
}

.group:hover .group-hover\:-m-px{
  margin     : -1px !important;
}

.group:hover .group-hover\:-m-0\.5{
  margin     : -0.125rem !important;
}

.group:hover .group-hover\:-m-1\.5{
  margin     : -0.375rem !important;
}

.group:hover .group-hover\:-m-2\.5{
  margin     : -0.625rem !important;
}

.group:hover .group-hover\:-m-3\.5{
  margin     : -0.875rem !important;
}

.group:hover .group-hover\:-m-1\/2{
  margin     : -50% !important;
}

.group:hover .group-hover\:-m-1\/3{
  margin     : -33.33333% !important;
}

.group:hover .group-hover\:-m-2\/3{
  margin     : -66.66667% !important;
}

.group:hover .group-hover\:-m-1\/4{
  margin     : -25% !important;
}

.group:hover .group-hover\:-m-2\/4{
  margin     : -50% !important;
}

.group:hover .group-hover\:-m-3\/4{
  margin     : -75% !important;
}

.group:hover .group-hover\:-m-1\/5{
  margin     : -20% !important;
}

.group:hover .group-hover\:-m-2\/5{
  margin     : -40% !important;
}

.group:hover .group-hover\:-m-3\/5{
  margin     : -60% !important;
}

.group:hover .group-hover\:-m-4\/5{
  margin     : -80% !important;
}

.group:hover .group-hover\:-m-1\/6{
  margin     : -16.66667% !important;
}

.group:hover .group-hover\:-m-2\/6{
  margin     : -33.33333% !important;
}

.group:hover .group-hover\:-m-3\/6{
  margin     : -50% !important;
}

.group:hover .group-hover\:-m-4\/6{
  margin     : -66.66667% !important;
}

.group:hover .group-hover\:-m-5\/6{
  margin     : -83.33333% !important;
}

.group:hover .group-hover\:-m-1\/12{
  margin     : -8.33333% !important;
}

.group:hover .group-hover\:-m-2\/12{
  margin     : -16.66667% !important;
}

.group:hover .group-hover\:-m-3\/12{
  margin     : -25% !important;
}

.group:hover .group-hover\:-m-4\/12{
  margin     : -33.33333% !important;
}

.group:hover .group-hover\:-m-5\/12{
  margin     : -41.66667% !important;
}

.group:hover .group-hover\:-m-6\/12{
  margin     : -50% !important;
}

.group:hover .group-hover\:-m-7\/12{
  margin     : -58.33333% !important;
}

.group:hover .group-hover\:-m-8\/12{
  margin     : -66.66667% !important;
}

.group:hover .group-hover\:-m-9\/12{
  margin     : -75% !important;
}

.group:hover .group-hover\:-m-10\/12{
  margin     : -83.33333% !important;
}

.group:hover .group-hover\:-m-11\/12{
  margin     : -91.66667% !important;
}

.group:hover .group-hover\:-m-full{
  margin     : -100% !important;
}

.group:hover .group-hover\:my-0{
  margin-top     : 0 !important;
  margin-bottom     : 0 !important;
}

.group:hover .group-hover\:mx-0{
  margin-left     : 0 !important;
  margin-right     : 0 !important;
}

.group:hover .group-hover\:my-1{
  margin-top     : 0.25rem !important;
  margin-bottom     : 0.25rem !important;
}

.group:hover .group-hover\:mx-1{
  margin-left     : 0.25rem !important;
  margin-right     : 0.25rem !important;
}

.group:hover .group-hover\:my-2{
  margin-top     : 0.5rem !important;
  margin-bottom     : 0.5rem !important;
}

.group:hover .group-hover\:mx-2{
  margin-left     : 0.5rem !important;
  margin-right     : 0.5rem !important;
}

.group:hover .group-hover\:my-3{
  margin-top     : 0.75rem !important;
  margin-bottom     : 0.75rem !important;
}

.group:hover .group-hover\:mx-3{
  margin-left     : 0.75rem !important;
  margin-right     : 0.75rem !important;
}

.group:hover .group-hover\:my-4{
  margin-top     : 1rem !important;
  margin-bottom     : 1rem !important;
}

.group:hover .group-hover\:mx-4{
  margin-left     : 1rem !important;
  margin-right     : 1rem !important;
}

.group:hover .group-hover\:my-5{
  margin-top     : 1.25rem !important;
  margin-bottom     : 1.25rem !important;
}

.group:hover .group-hover\:mx-5{
  margin-left     : 1.25rem !important;
  margin-right     : 1.25rem !important;
}

.group:hover .group-hover\:my-6{
  margin-top     : 1.5rem !important;
  margin-bottom     : 1.5rem !important;
}

.group:hover .group-hover\:mx-6{
  margin-left     : 1.5rem !important;
  margin-right     : 1.5rem !important;
}

.group:hover .group-hover\:my-7{
  margin-top     : 1.75rem !important;
  margin-bottom     : 1.75rem !important;
}

.group:hover .group-hover\:mx-7{
  margin-left     : 1.75rem !important;
  margin-right     : 1.75rem !important;
}

.group:hover .group-hover\:my-8{
  margin-top     : 2rem !important;
  margin-bottom     : 2rem !important;
}

.group:hover .group-hover\:mx-8{
  margin-left     : 2rem !important;
  margin-right     : 2rem !important;
}

.group:hover .group-hover\:my-9{
  margin-top     : 2.25rem !important;
  margin-bottom     : 2.25rem !important;
}

.group:hover .group-hover\:mx-9{
  margin-left     : 2.25rem !important;
  margin-right     : 2.25rem !important;
}

.group:hover .group-hover\:my-10{
  margin-top     : 2.5rem !important;
  margin-bottom     : 2.5rem !important;
}

.group:hover .group-hover\:mx-10{
  margin-left     : 2.5rem !important;
  margin-right     : 2.5rem !important;
}

.group:hover .group-hover\:my-11{
  margin-top     : 2.75rem !important;
  margin-bottom     : 2.75rem !important;
}

.group:hover .group-hover\:mx-11{
  margin-left     : 2.75rem !important;
  margin-right     : 2.75rem !important;
}

.group:hover .group-hover\:my-12{
  margin-top     : 3rem !important;
  margin-bottom     : 3rem !important;
}

.group:hover .group-hover\:mx-12{
  margin-left     : 3rem !important;
  margin-right     : 3rem !important;
}

.group:hover .group-hover\:my-13{
  margin-top     : 3.25rem !important;
  margin-bottom     : 3.25rem !important;
}

.group:hover .group-hover\:mx-13{
  margin-left     : 3.25rem !important;
  margin-right     : 3.25rem !important;
}

.group:hover .group-hover\:my-14{
  margin-top     : 3.5rem !important;
  margin-bottom     : 3.5rem !important;
}

.group:hover .group-hover\:mx-14{
  margin-left     : 3.5rem !important;
  margin-right     : 3.5rem !important;
}

.group:hover .group-hover\:my-15{
  margin-top     : 3.75rem !important;
  margin-bottom     : 3.75rem !important;
}

.group:hover .group-hover\:mx-15{
  margin-left     : 3.75rem !important;
  margin-right     : 3.75rem !important;
}

.group:hover .group-hover\:my-16{
  margin-top     : 4rem !important;
  margin-bottom     : 4rem !important;
}

.group:hover .group-hover\:mx-16{
  margin-left     : 4rem !important;
  margin-right     : 4rem !important;
}

.group:hover .group-hover\:my-20{
  margin-top     : 5rem !important;
  margin-bottom     : 5rem !important;
}

.group:hover .group-hover\:mx-20{
  margin-left     : 5rem !important;
  margin-right     : 5rem !important;
}

.group:hover .group-hover\:my-24{
  margin-top     : 6rem !important;
  margin-bottom     : 6rem !important;
}

.group:hover .group-hover\:mx-24{
  margin-left     : 6rem !important;
  margin-right     : 6rem !important;
}

.group:hover .group-hover\:my-28{
  margin-top     : 7rem !important;
  margin-bottom     : 7rem !important;
}

.group:hover .group-hover\:mx-28{
  margin-left     : 7rem !important;
  margin-right     : 7rem !important;
}

.group:hover .group-hover\:my-32{
  margin-top     : 8rem !important;
  margin-bottom     : 8rem !important;
}

.group:hover .group-hover\:mx-32{
  margin-left     : 8rem !important;
  margin-right     : 8rem !important;
}

.group:hover .group-hover\:my-36{
  margin-top     : 9rem !important;
  margin-bottom     : 9rem !important;
}

.group:hover .group-hover\:mx-36{
  margin-left     : 9rem !important;
  margin-right     : 9rem !important;
}

.group:hover .group-hover\:my-40{
  margin-top     : 10rem !important;
  margin-bottom     : 10rem !important;
}

.group:hover .group-hover\:mx-40{
  margin-left     : 10rem !important;
  margin-right     : 10rem !important;
}

.group:hover .group-hover\:my-44{
  margin-top     : 11rem !important;
  margin-bottom     : 11rem !important;
}

.group:hover .group-hover\:mx-44{
  margin-left     : 11rem !important;
  margin-right     : 11rem !important;
}

.group:hover .group-hover\:my-48{
  margin-top     : 12rem !important;
  margin-bottom     : 12rem !important;
}

.group:hover .group-hover\:mx-48{
  margin-left     : 12rem !important;
  margin-right     : 12rem !important;
}

.group:hover .group-hover\:my-52{
  margin-top     : 13rem !important;
  margin-bottom     : 13rem !important;
}

.group:hover .group-hover\:mx-52{
  margin-left     : 13rem !important;
  margin-right     : 13rem !important;
}

.group:hover .group-hover\:my-56{
  margin-top     : 14rem !important;
  margin-bottom     : 14rem !important;
}

.group:hover .group-hover\:mx-56{
  margin-left     : 14rem !important;
  margin-right     : 14rem !important;
}

.group:hover .group-hover\:my-60{
  margin-top     : 15rem !important;
  margin-bottom     : 15rem !important;
}

.group:hover .group-hover\:mx-60{
  margin-left     : 15rem !important;
  margin-right     : 15rem !important;
}

.group:hover .group-hover\:my-64{
  margin-top     : 16rem !important;
  margin-bottom     : 16rem !important;
}

.group:hover .group-hover\:mx-64{
  margin-left     : 16rem !important;
  margin-right     : 16rem !important;
}

.group:hover .group-hover\:my-72{
  margin-top     : 18rem !important;
  margin-bottom     : 18rem !important;
}

.group:hover .group-hover\:mx-72{
  margin-left     : 18rem !important;
  margin-right     : 18rem !important;
}

.group:hover .group-hover\:my-80{
  margin-top     : 20rem !important;
  margin-bottom     : 20rem !important;
}

.group:hover .group-hover\:mx-80{
  margin-left     : 20rem !important;
  margin-right     : 20rem !important;
}

.group:hover .group-hover\:my-96{
  margin-top     : 24rem !important;
  margin-bottom     : 24rem !important;
}

.group:hover .group-hover\:mx-96{
  margin-left     : 24rem !important;
  margin-right     : 24rem !important;
}

.group:hover .group-hover\:my-auto{
  margin-top     : auto !important;
  margin-bottom     : auto !important;
}

.group:hover .group-hover\:mx-auto{
  margin-left     : auto !important;
  margin-right     : auto !important;
}

.group:hover .group-hover\:my-px{
  margin-top     : 1px !important;
  margin-bottom     : 1px !important;
}

.group:hover .group-hover\:mx-px{
  margin-left     : 1px !important;
  margin-right     : 1px !important;
}

.group:hover .group-hover\:my-0\.5{
  margin-top     : 0.125rem !important;
  margin-bottom     : 0.125rem !important;
}

.group:hover .group-hover\:mx-0\.5{
  margin-left     : 0.125rem !important;
  margin-right     : 0.125rem !important;
}

.group:hover .group-hover\:my-1\.5{
  margin-top     : 0.375rem !important;
  margin-bottom     : 0.375rem !important;
}

.group:hover .group-hover\:mx-1\.5{
  margin-left     : 0.375rem !important;
  margin-right     : 0.375rem !important;
}

.group:hover .group-hover\:my-2\.5{
  margin-top     : 0.625rem !important;
  margin-bottom     : 0.625rem !important;
}

.group:hover .group-hover\:mx-2\.5{
  margin-left     : 0.625rem !important;
  margin-right     : 0.625rem !important;
}

.group:hover .group-hover\:my-3\.5{
  margin-top     : 0.875rem !important;
  margin-bottom     : 0.875rem !important;
}

.group:hover .group-hover\:mx-3\.5{
  margin-left     : 0.875rem !important;
  margin-right     : 0.875rem !important;
}

.group:hover .group-hover\:my-1\/2{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:mx-1\/2{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.group:hover .group-hover\:my-1\/3{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:mx-1\/3{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:my-2\/3{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:mx-2\/3{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:my-1\/4{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.group:hover .group-hover\:mx-1\/4{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.group:hover .group-hover\:my-2\/4{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:mx-2\/4{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.group:hover .group-hover\:my-3\/4{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.group:hover .group-hover\:mx-3\/4{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.group:hover .group-hover\:my-1\/5{
  margin-top     : 20% !important;
  margin-bottom     : 20% !important;
}

.group:hover .group-hover\:mx-1\/5{
  margin-left     : 20% !important;
  margin-right     : 20% !important;
}

.group:hover .group-hover\:my-2\/5{
  margin-top     : 40% !important;
  margin-bottom     : 40% !important;
}

.group:hover .group-hover\:mx-2\/5{
  margin-left     : 40% !important;
  margin-right     : 40% !important;
}

.group:hover .group-hover\:my-3\/5{
  margin-top     : 60% !important;
  margin-bottom     : 60% !important;
}

.group:hover .group-hover\:mx-3\/5{
  margin-left     : 60% !important;
  margin-right     : 60% !important;
}

.group:hover .group-hover\:my-4\/5{
  margin-top     : 80% !important;
  margin-bottom     : 80% !important;
}

.group:hover .group-hover\:mx-4\/5{
  margin-left     : 80% !important;
  margin-right     : 80% !important;
}

.group:hover .group-hover\:my-1\/6{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:mx-1\/6{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.group:hover .group-hover\:my-2\/6{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:mx-2\/6{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:my-3\/6{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:mx-3\/6{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.group:hover .group-hover\:my-4\/6{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:mx-4\/6{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:my-5\/6{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:mx-5\/6{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.group:hover .group-hover\:my-1\/12{
  margin-top     : 8.333333% !important;
  margin-bottom     : 8.333333% !important;
}

.group:hover .group-hover\:mx-1\/12{
  margin-left     : 8.333333% !important;
  margin-right     : 8.333333% !important;
}

.group:hover .group-hover\:my-2\/12{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:mx-2\/12{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.group:hover .group-hover\:my-3\/12{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.group:hover .group-hover\:mx-3\/12{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.group:hover .group-hover\:my-4\/12{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:mx-4\/12{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:my-5\/12{
  margin-top     : 41.666667% !important;
  margin-bottom     : 41.666667% !important;
}

.group:hover .group-hover\:mx-5\/12{
  margin-left     : 41.666667% !important;
  margin-right     : 41.666667% !important;
}

.group:hover .group-hover\:my-6\/12{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:mx-6\/12{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.group:hover .group-hover\:my-7\/12{
  margin-top     : 58.333333% !important;
  margin-bottom     : 58.333333% !important;
}

.group:hover .group-hover\:mx-7\/12{
  margin-left     : 58.333333% !important;
  margin-right     : 58.333333% !important;
}

.group:hover .group-hover\:my-8\/12{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:mx-8\/12{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:my-9\/12{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.group:hover .group-hover\:mx-9\/12{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.group:hover .group-hover\:my-10\/12{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:mx-10\/12{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.group:hover .group-hover\:my-11\/12{
  margin-top     : 91.666667% !important;
  margin-bottom     : 91.666667% !important;
}

.group:hover .group-hover\:mx-11\/12{
  margin-left     : 91.666667% !important;
  margin-right     : 91.666667% !important;
}

.group:hover .group-hover\:my-full{
  margin-top     : 100% !important;
  margin-bottom     : 100% !important;
}

.group:hover .group-hover\:mx-full{
  margin-left     : 100% !important;
  margin-right     : 100% !important;
}

.group:hover .group-hover\:-my-1{
  margin-top     : -0.25rem !important;
  margin-bottom     : -0.25rem !important;
}

.group:hover .group-hover\:-mx-1{
  margin-left     : -0.25rem !important;
  margin-right     : -0.25rem !important;
}

.group:hover .group-hover\:-my-2{
  margin-top     : -0.5rem !important;
  margin-bottom     : -0.5rem !important;
}

.group:hover .group-hover\:-mx-2{
  margin-left     : -0.5rem !important;
  margin-right     : -0.5rem !important;
}

.group:hover .group-hover\:-my-3{
  margin-top     : -0.75rem !important;
  margin-bottom     : -0.75rem !important;
}

.group:hover .group-hover\:-mx-3{
  margin-left     : -0.75rem !important;
  margin-right     : -0.75rem !important;
}

.group:hover .group-hover\:-my-4{
  margin-top     : -1rem !important;
  margin-bottom     : -1rem !important;
}

.group:hover .group-hover\:-mx-4{
  margin-left     : -1rem !important;
  margin-right     : -1rem !important;
}

.group:hover .group-hover\:-my-5{
  margin-top     : -1.25rem !important;
  margin-bottom     : -1.25rem !important;
}

.group:hover .group-hover\:-mx-5{
  margin-left     : -1.25rem !important;
  margin-right     : -1.25rem !important;
}

.group:hover .group-hover\:-my-6{
  margin-top     : -1.5rem !important;
  margin-bottom     : -1.5rem !important;
}

.group:hover .group-hover\:-mx-6{
  margin-left     : -1.5rem !important;
  margin-right     : -1.5rem !important;
}

.group:hover .group-hover\:-my-7{
  margin-top     : -1.75rem !important;
  margin-bottom     : -1.75rem !important;
}

.group:hover .group-hover\:-mx-7{
  margin-left     : -1.75rem !important;
  margin-right     : -1.75rem !important;
}

.group:hover .group-hover\:-my-8{
  margin-top     : -2rem !important;
  margin-bottom     : -2rem !important;
}

.group:hover .group-hover\:-mx-8{
  margin-left     : -2rem !important;
  margin-right     : -2rem !important;
}

.group:hover .group-hover\:-my-9{
  margin-top     : -2.25rem !important;
  margin-bottom     : -2.25rem !important;
}

.group:hover .group-hover\:-mx-9{
  margin-left     : -2.25rem !important;
  margin-right     : -2.25rem !important;
}

.group:hover .group-hover\:-my-10{
  margin-top     : -2.5rem !important;
  margin-bottom     : -2.5rem !important;
}

.group:hover .group-hover\:-mx-10{
  margin-left     : -2.5rem !important;
  margin-right     : -2.5rem !important;
}

.group:hover .group-hover\:-my-11{
  margin-top     : -2.75rem !important;
  margin-bottom     : -2.75rem !important;
}

.group:hover .group-hover\:-mx-11{
  margin-left     : -2.75rem !important;
  margin-right     : -2.75rem !important;
}

.group:hover .group-hover\:-my-12{
  margin-top     : -3rem !important;
  margin-bottom     : -3rem !important;
}

.group:hover .group-hover\:-mx-12{
  margin-left     : -3rem !important;
  margin-right     : -3rem !important;
}

.group:hover .group-hover\:-my-13{
  margin-top     : -3.25rem !important;
  margin-bottom     : -3.25rem !important;
}

.group:hover .group-hover\:-mx-13{
  margin-left     : -3.25rem !important;
  margin-right     : -3.25rem !important;
}

.group:hover .group-hover\:-my-14{
  margin-top     : -3.5rem !important;
  margin-bottom     : -3.5rem !important;
}

.group:hover .group-hover\:-mx-14{
  margin-left     : -3.5rem !important;
  margin-right     : -3.5rem !important;
}

.group:hover .group-hover\:-my-15{
  margin-top     : -3.75rem !important;
  margin-bottom     : -3.75rem !important;
}

.group:hover .group-hover\:-mx-15{
  margin-left     : -3.75rem !important;
  margin-right     : -3.75rem !important;
}

.group:hover .group-hover\:-my-16{
  margin-top     : -4rem !important;
  margin-bottom     : -4rem !important;
}

.group:hover .group-hover\:-mx-16{
  margin-left     : -4rem !important;
  margin-right     : -4rem !important;
}

.group:hover .group-hover\:-my-20{
  margin-top     : -5rem !important;
  margin-bottom     : -5rem !important;
}

.group:hover .group-hover\:-mx-20{
  margin-left     : -5rem !important;
  margin-right     : -5rem !important;
}

.group:hover .group-hover\:-my-24{
  margin-top     : -6rem !important;
  margin-bottom     : -6rem !important;
}

.group:hover .group-hover\:-mx-24{
  margin-left     : -6rem !important;
  margin-right     : -6rem !important;
}

.group:hover .group-hover\:-my-28{
  margin-top     : -7rem !important;
  margin-bottom     : -7rem !important;
}

.group:hover .group-hover\:-mx-28{
  margin-left     : -7rem !important;
  margin-right     : -7rem !important;
}

.group:hover .group-hover\:-my-32{
  margin-top     : -8rem !important;
  margin-bottom     : -8rem !important;
}

.group:hover .group-hover\:-mx-32{
  margin-left     : -8rem !important;
  margin-right     : -8rem !important;
}

.group:hover .group-hover\:-my-36{
  margin-top     : -9rem !important;
  margin-bottom     : -9rem !important;
}

.group:hover .group-hover\:-mx-36{
  margin-left     : -9rem !important;
  margin-right     : -9rem !important;
}

.group:hover .group-hover\:-my-40{
  margin-top     : -10rem !important;
  margin-bottom     : -10rem !important;
}

.group:hover .group-hover\:-mx-40{
  margin-left     : -10rem !important;
  margin-right     : -10rem !important;
}

.group:hover .group-hover\:-my-44{
  margin-top     : -11rem !important;
  margin-bottom     : -11rem !important;
}

.group:hover .group-hover\:-mx-44{
  margin-left     : -11rem !important;
  margin-right     : -11rem !important;
}

.group:hover .group-hover\:-my-48{
  margin-top     : -12rem !important;
  margin-bottom     : -12rem !important;
}

.group:hover .group-hover\:-mx-48{
  margin-left     : -12rem !important;
  margin-right     : -12rem !important;
}

.group:hover .group-hover\:-my-52{
  margin-top     : -13rem !important;
  margin-bottom     : -13rem !important;
}

.group:hover .group-hover\:-mx-52{
  margin-left     : -13rem !important;
  margin-right     : -13rem !important;
}

.group:hover .group-hover\:-my-56{
  margin-top     : -14rem !important;
  margin-bottom     : -14rem !important;
}

.group:hover .group-hover\:-mx-56{
  margin-left     : -14rem !important;
  margin-right     : -14rem !important;
}

.group:hover .group-hover\:-my-60{
  margin-top     : -15rem !important;
  margin-bottom     : -15rem !important;
}

.group:hover .group-hover\:-mx-60{
  margin-left     : -15rem !important;
  margin-right     : -15rem !important;
}

.group:hover .group-hover\:-my-64{
  margin-top     : -16rem !important;
  margin-bottom     : -16rem !important;
}

.group:hover .group-hover\:-mx-64{
  margin-left     : -16rem !important;
  margin-right     : -16rem !important;
}

.group:hover .group-hover\:-my-72{
  margin-top     : -18rem !important;
  margin-bottom     : -18rem !important;
}

.group:hover .group-hover\:-mx-72{
  margin-left     : -18rem !important;
  margin-right     : -18rem !important;
}

.group:hover .group-hover\:-my-80{
  margin-top     : -20rem !important;
  margin-bottom     : -20rem !important;
}

.group:hover .group-hover\:-mx-80{
  margin-left     : -20rem !important;
  margin-right     : -20rem !important;
}

.group:hover .group-hover\:-my-96{
  margin-top     : -24rem !important;
  margin-bottom     : -24rem !important;
}

.group:hover .group-hover\:-mx-96{
  margin-left     : -24rem !important;
  margin-right     : -24rem !important;
}

.group:hover .group-hover\:-my-px{
  margin-top     : -1px !important;
  margin-bottom     : -1px !important;
}

.group:hover .group-hover\:-mx-px{
  margin-left     : -1px !important;
  margin-right     : -1px !important;
}

.group:hover .group-hover\:-my-0\.5{
  margin-top     : -0.125rem !important;
  margin-bottom     : -0.125rem !important;
}

.group:hover .group-hover\:-mx-0\.5{
  margin-left     : -0.125rem !important;
  margin-right     : -0.125rem !important;
}

.group:hover .group-hover\:-my-1\.5{
  margin-top     : -0.375rem !important;
  margin-bottom     : -0.375rem !important;
}

.group:hover .group-hover\:-mx-1\.5{
  margin-left     : -0.375rem !important;
  margin-right     : -0.375rem !important;
}

.group:hover .group-hover\:-my-2\.5{
  margin-top     : -0.625rem !important;
  margin-bottom     : -0.625rem !important;
}

.group:hover .group-hover\:-mx-2\.5{
  margin-left     : -0.625rem !important;
  margin-right     : -0.625rem !important;
}

.group:hover .group-hover\:-my-3\.5{
  margin-top     : -0.875rem !important;
  margin-bottom     : -0.875rem !important;
}

.group:hover .group-hover\:-mx-3\.5{
  margin-left     : -0.875rem !important;
  margin-right     : -0.875rem !important;
}

.group:hover .group-hover\:-my-1\/2{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-mx-1\/2{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-my-1\/3{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-mx-1\/3{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-my-2\/3{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-mx-2\/3{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-my-1\/4{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.group:hover .group-hover\:-mx-1\/4{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.group:hover .group-hover\:-my-2\/4{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-mx-2\/4{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-my-3\/4{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.group:hover .group-hover\:-mx-3\/4{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.group:hover .group-hover\:-my-1\/5{
  margin-top     : -20% !important;
  margin-bottom     : -20% !important;
}

.group:hover .group-hover\:-mx-1\/5{
  margin-left     : -20% !important;
  margin-right     : -20% !important;
}

.group:hover .group-hover\:-my-2\/5{
  margin-top     : -40% !important;
  margin-bottom     : -40% !important;
}

.group:hover .group-hover\:-mx-2\/5{
  margin-left     : -40% !important;
  margin-right     : -40% !important;
}

.group:hover .group-hover\:-my-3\/5{
  margin-top     : -60% !important;
  margin-bottom     : -60% !important;
}

.group:hover .group-hover\:-mx-3\/5{
  margin-left     : -60% !important;
  margin-right     : -60% !important;
}

.group:hover .group-hover\:-my-4\/5{
  margin-top     : -80% !important;
  margin-bottom     : -80% !important;
}

.group:hover .group-hover\:-mx-4\/5{
  margin-left     : -80% !important;
  margin-right     : -80% !important;
}

.group:hover .group-hover\:-my-1\/6{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.group:hover .group-hover\:-mx-1\/6{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.group:hover .group-hover\:-my-2\/6{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-mx-2\/6{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-my-3\/6{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-mx-3\/6{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-my-4\/6{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-mx-4\/6{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-my-5\/6{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.group:hover .group-hover\:-mx-5\/6{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.group:hover .group-hover\:-my-1\/12{
  margin-top     : -8.33333% !important;
  margin-bottom     : -8.33333% !important;
}

.group:hover .group-hover\:-mx-1\/12{
  margin-left     : -8.33333% !important;
  margin-right     : -8.33333% !important;
}

.group:hover .group-hover\:-my-2\/12{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.group:hover .group-hover\:-mx-2\/12{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.group:hover .group-hover\:-my-3\/12{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.group:hover .group-hover\:-mx-3\/12{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.group:hover .group-hover\:-my-4\/12{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-mx-4\/12{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-my-5\/12{
  margin-top     : -41.66667% !important;
  margin-bottom     : -41.66667% !important;
}

.group:hover .group-hover\:-mx-5\/12{
  margin-left     : -41.66667% !important;
  margin-right     : -41.66667% !important;
}

.group:hover .group-hover\:-my-6\/12{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-mx-6\/12{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-my-7\/12{
  margin-top     : -58.33333% !important;
  margin-bottom     : -58.33333% !important;
}

.group:hover .group-hover\:-mx-7\/12{
  margin-left     : -58.33333% !important;
  margin-right     : -58.33333% !important;
}

.group:hover .group-hover\:-my-8\/12{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-mx-8\/12{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-my-9\/12{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.group:hover .group-hover\:-mx-9\/12{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.group:hover .group-hover\:-my-10\/12{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.group:hover .group-hover\:-mx-10\/12{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.group:hover .group-hover\:-my-11\/12{
  margin-top     : -91.66667% !important;
  margin-bottom     : -91.66667% !important;
}

.group:hover .group-hover\:-mx-11\/12{
  margin-left     : -91.66667% !important;
  margin-right     : -91.66667% !important;
}

.group:hover .group-hover\:-my-full{
  margin-top     : -100% !important;
  margin-bottom     : -100% !important;
}

.group:hover .group-hover\:-mx-full{
  margin-left     : -100% !important;
  margin-right     : -100% !important;
}

.group:hover .group-hover\:mt-0{
  margin-top     : 0 !important;
}

.group:hover .group-hover\:mr-0{
  margin-right     : 0 !important;
}

.group:hover .group-hover\:mb-0{
  margin-bottom     : 0 !important;
}

.group:hover .group-hover\:ml-0{
  margin-left     : 0 !important;
}

.group:hover .group-hover\:mt-1{
  margin-top     : 0.25rem !important;
}

.group:hover .group-hover\:mr-1{
  margin-right     : 0.25rem !important;
}

.group:hover .group-hover\:mb-1{
  margin-bottom     : 0.25rem !important;
}

.group:hover .group-hover\:ml-1{
  margin-left     : 0.25rem !important;
}

.group:hover .group-hover\:mt-2{
  margin-top     : 0.5rem !important;
}

.group:hover .group-hover\:mr-2{
  margin-right     : 0.5rem !important;
}

.group:hover .group-hover\:mb-2{
  margin-bottom     : 0.5rem !important;
}

.group:hover .group-hover\:ml-2{
  margin-left     : 0.5rem !important;
}

.group:hover .group-hover\:mt-3{
  margin-top     : 0.75rem !important;
}

.group:hover .group-hover\:mr-3{
  margin-right     : 0.75rem !important;
}

.group:hover .group-hover\:mb-3{
  margin-bottom     : 0.75rem !important;
}

.group:hover .group-hover\:ml-3{
  margin-left     : 0.75rem !important;
}

.group:hover .group-hover\:mt-4{
  margin-top     : 1rem !important;
}

.group:hover .group-hover\:mr-4{
  margin-right     : 1rem !important;
}

.group:hover .group-hover\:mb-4{
  margin-bottom     : 1rem !important;
}

.group:hover .group-hover\:ml-4{
  margin-left     : 1rem !important;
}

.group:hover .group-hover\:mt-5{
  margin-top     : 1.25rem !important;
}

.group:hover .group-hover\:mr-5{
  margin-right     : 1.25rem !important;
}

.group:hover .group-hover\:mb-5{
  margin-bottom     : 1.25rem !important;
}

.group:hover .group-hover\:ml-5{
  margin-left     : 1.25rem !important;
}

.group:hover .group-hover\:mt-6{
  margin-top     : 1.5rem !important;
}

.group:hover .group-hover\:mr-6{
  margin-right     : 1.5rem !important;
}

.group:hover .group-hover\:mb-6{
  margin-bottom     : 1.5rem !important;
}

.group:hover .group-hover\:ml-6{
  margin-left     : 1.5rem !important;
}

.group:hover .group-hover\:mt-7{
  margin-top     : 1.75rem !important;
}

.group:hover .group-hover\:mr-7{
  margin-right     : 1.75rem !important;
}

.group:hover .group-hover\:mb-7{
  margin-bottom     : 1.75rem !important;
}

.group:hover .group-hover\:ml-7{
  margin-left     : 1.75rem !important;
}

.group:hover .group-hover\:mt-8{
  margin-top     : 2rem !important;
}

.group:hover .group-hover\:mr-8{
  margin-right     : 2rem !important;
}

.group:hover .group-hover\:mb-8{
  margin-bottom     : 2rem !important;
}

.group:hover .group-hover\:ml-8{
  margin-left     : 2rem !important;
}

.group:hover .group-hover\:mt-9{
  margin-top     : 2.25rem !important;
}

.group:hover .group-hover\:mr-9{
  margin-right     : 2.25rem !important;
}

.group:hover .group-hover\:mb-9{
  margin-bottom     : 2.25rem !important;
}

.group:hover .group-hover\:ml-9{
  margin-left     : 2.25rem !important;
}

.group:hover .group-hover\:mt-10{
  margin-top     : 2.5rem !important;
}

.group:hover .group-hover\:mr-10{
  margin-right     : 2.5rem !important;
}

.group:hover .group-hover\:mb-10{
  margin-bottom     : 2.5rem !important;
}

.group:hover .group-hover\:ml-10{
  margin-left     : 2.5rem !important;
}

.group:hover .group-hover\:mt-11{
  margin-top     : 2.75rem !important;
}

.group:hover .group-hover\:mr-11{
  margin-right     : 2.75rem !important;
}

.group:hover .group-hover\:mb-11{
  margin-bottom     : 2.75rem !important;
}

.group:hover .group-hover\:ml-11{
  margin-left     : 2.75rem !important;
}

.group:hover .group-hover\:mt-12{
  margin-top     : 3rem !important;
}

.group:hover .group-hover\:mr-12{
  margin-right     : 3rem !important;
}

.group:hover .group-hover\:mb-12{
  margin-bottom     : 3rem !important;
}

.group:hover .group-hover\:ml-12{
  margin-left     : 3rem !important;
}

.group:hover .group-hover\:mt-13{
  margin-top     : 3.25rem !important;
}

.group:hover .group-hover\:mr-13{
  margin-right     : 3.25rem !important;
}

.group:hover .group-hover\:mb-13{
  margin-bottom     : 3.25rem !important;
}

.group:hover .group-hover\:ml-13{
  margin-left     : 3.25rem !important;
}

.group:hover .group-hover\:mt-14{
  margin-top     : 3.5rem !important;
}

.group:hover .group-hover\:mr-14{
  margin-right     : 3.5rem !important;
}

.group:hover .group-hover\:mb-14{
  margin-bottom     : 3.5rem !important;
}

.group:hover .group-hover\:ml-14{
  margin-left     : 3.5rem !important;
}

.group:hover .group-hover\:mt-15{
  margin-top     : 3.75rem !important;
}

.group:hover .group-hover\:mr-15{
  margin-right     : 3.75rem !important;
}

.group:hover .group-hover\:mb-15{
  margin-bottom     : 3.75rem !important;
}

.group:hover .group-hover\:ml-15{
  margin-left     : 3.75rem !important;
}

.group:hover .group-hover\:mt-16{
  margin-top     : 4rem !important;
}

.group:hover .group-hover\:mr-16{
  margin-right     : 4rem !important;
}

.group:hover .group-hover\:mb-16{
  margin-bottom     : 4rem !important;
}

.group:hover .group-hover\:ml-16{
  margin-left     : 4rem !important;
}

.group:hover .group-hover\:mt-20{
  margin-top     : 5rem !important;
}

.group:hover .group-hover\:mr-20{
  margin-right     : 5rem !important;
}

.group:hover .group-hover\:mb-20{
  margin-bottom     : 5rem !important;
}

.group:hover .group-hover\:ml-20{
  margin-left     : 5rem !important;
}

.group:hover .group-hover\:mt-24{
  margin-top     : 6rem !important;
}

.group:hover .group-hover\:mr-24{
  margin-right     : 6rem !important;
}

.group:hover .group-hover\:mb-24{
  margin-bottom     : 6rem !important;
}

.group:hover .group-hover\:ml-24{
  margin-left     : 6rem !important;
}

.group:hover .group-hover\:mt-28{
  margin-top     : 7rem !important;
}

.group:hover .group-hover\:mr-28{
  margin-right     : 7rem !important;
}

.group:hover .group-hover\:mb-28{
  margin-bottom     : 7rem !important;
}

.group:hover .group-hover\:ml-28{
  margin-left     : 7rem !important;
}

.group:hover .group-hover\:mt-32{
  margin-top     : 8rem !important;
}

.group:hover .group-hover\:mr-32{
  margin-right     : 8rem !important;
}

.group:hover .group-hover\:mb-32{
  margin-bottom     : 8rem !important;
}

.group:hover .group-hover\:ml-32{
  margin-left     : 8rem !important;
}

.group:hover .group-hover\:mt-36{
  margin-top     : 9rem !important;
}

.group:hover .group-hover\:mr-36{
  margin-right     : 9rem !important;
}

.group:hover .group-hover\:mb-36{
  margin-bottom     : 9rem !important;
}

.group:hover .group-hover\:ml-36{
  margin-left     : 9rem !important;
}

.group:hover .group-hover\:mt-40{
  margin-top     : 10rem !important;
}

.group:hover .group-hover\:mr-40{
  margin-right     : 10rem !important;
}

.group:hover .group-hover\:mb-40{
  margin-bottom     : 10rem !important;
}

.group:hover .group-hover\:ml-40{
  margin-left     : 10rem !important;
}

.group:hover .group-hover\:mt-44{
  margin-top     : 11rem !important;
}

.group:hover .group-hover\:mr-44{
  margin-right     : 11rem !important;
}

.group:hover .group-hover\:mb-44{
  margin-bottom     : 11rem !important;
}

.group:hover .group-hover\:ml-44{
  margin-left     : 11rem !important;
}

.group:hover .group-hover\:mt-48{
  margin-top     : 12rem !important;
}

.group:hover .group-hover\:mr-48{
  margin-right     : 12rem !important;
}

.group:hover .group-hover\:mb-48{
  margin-bottom     : 12rem !important;
}

.group:hover .group-hover\:ml-48{
  margin-left     : 12rem !important;
}

.group:hover .group-hover\:mt-52{
  margin-top     : 13rem !important;
}

.group:hover .group-hover\:mr-52{
  margin-right     : 13rem !important;
}

.group:hover .group-hover\:mb-52{
  margin-bottom     : 13rem !important;
}

.group:hover .group-hover\:ml-52{
  margin-left     : 13rem !important;
}

.group:hover .group-hover\:mt-56{
  margin-top     : 14rem !important;
}

.group:hover .group-hover\:mr-56{
  margin-right     : 14rem !important;
}

.group:hover .group-hover\:mb-56{
  margin-bottom     : 14rem !important;
}

.group:hover .group-hover\:ml-56{
  margin-left     : 14rem !important;
}

.group:hover .group-hover\:mt-60{
  margin-top     : 15rem !important;
}

.group:hover .group-hover\:mr-60{
  margin-right     : 15rem !important;
}

.group:hover .group-hover\:mb-60{
  margin-bottom     : 15rem !important;
}

.group:hover .group-hover\:ml-60{
  margin-left     : 15rem !important;
}

.group:hover .group-hover\:mt-64{
  margin-top     : 16rem !important;
}

.group:hover .group-hover\:mr-64{
  margin-right     : 16rem !important;
}

.group:hover .group-hover\:mb-64{
  margin-bottom     : 16rem !important;
}

.group:hover .group-hover\:ml-64{
  margin-left     : 16rem !important;
}

.group:hover .group-hover\:mt-72{
  margin-top     : 18rem !important;
}

.group:hover .group-hover\:mr-72{
  margin-right     : 18rem !important;
}

.group:hover .group-hover\:mb-72{
  margin-bottom     : 18rem !important;
}

.group:hover .group-hover\:ml-72{
  margin-left     : 18rem !important;
}

.group:hover .group-hover\:mt-80{
  margin-top     : 20rem !important;
}

.group:hover .group-hover\:mr-80{
  margin-right     : 20rem !important;
}

.group:hover .group-hover\:mb-80{
  margin-bottom     : 20rem !important;
}

.group:hover .group-hover\:ml-80{
  margin-left     : 20rem !important;
}

.group:hover .group-hover\:mt-96{
  margin-top     : 24rem !important;
}

.group:hover .group-hover\:mr-96{
  margin-right     : 24rem !important;
}

.group:hover .group-hover\:mb-96{
  margin-bottom     : 24rem !important;
}

.group:hover .group-hover\:ml-96{
  margin-left     : 24rem !important;
}

.group:hover .group-hover\:mt-auto{
  margin-top     : auto !important;
}

.group:hover .group-hover\:mr-auto{
  margin-right     : auto !important;
}

.group:hover .group-hover\:mb-auto{
  margin-bottom     : auto !important;
}

.group:hover .group-hover\:ml-auto{
  margin-left     : auto !important;
}

.group:hover .group-hover\:mt-px{
  margin-top     : 1px !important;
}

.group:hover .group-hover\:mr-px{
  margin-right     : 1px !important;
}

.group:hover .group-hover\:mb-px{
  margin-bottom     : 1px !important;
}

.group:hover .group-hover\:ml-px{
  margin-left     : 1px !important;
}

.group:hover .group-hover\:mt-0\.5{
  margin-top     : 0.125rem !important;
}

.group:hover .group-hover\:mr-0\.5{
  margin-right     : 0.125rem !important;
}

.group:hover .group-hover\:mb-0\.5{
  margin-bottom     : 0.125rem !important;
}

.group:hover .group-hover\:ml-0\.5{
  margin-left     : 0.125rem !important;
}

.group:hover .group-hover\:mt-1\.5{
  margin-top     : 0.375rem !important;
}

.group:hover .group-hover\:mr-1\.5{
  margin-right     : 0.375rem !important;
}

.group:hover .group-hover\:mb-1\.5{
  margin-bottom     : 0.375rem !important;
}

.group:hover .group-hover\:ml-1\.5{
  margin-left     : 0.375rem !important;
}

.group:hover .group-hover\:mt-2\.5{
  margin-top     : 0.625rem !important;
}

.group:hover .group-hover\:mr-2\.5{
  margin-right     : 0.625rem !important;
}

.group:hover .group-hover\:mb-2\.5{
  margin-bottom     : 0.625rem !important;
}

.group:hover .group-hover\:ml-2\.5{
  margin-left     : 0.625rem !important;
}

.group:hover .group-hover\:mt-3\.5{
  margin-top     : 0.875rem !important;
}

.group:hover .group-hover\:mr-3\.5{
  margin-right     : 0.875rem !important;
}

.group:hover .group-hover\:mb-3\.5{
  margin-bottom     : 0.875rem !important;
}

.group:hover .group-hover\:ml-3\.5{
  margin-left     : 0.875rem !important;
}

.group:hover .group-hover\:mt-1\/2{
  margin-top     : 50% !important;
}

.group:hover .group-hover\:mr-1\/2{
  margin-right     : 50% !important;
}

.group:hover .group-hover\:mb-1\/2{
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:ml-1\/2{
  margin-left     : 50% !important;
}

.group:hover .group-hover\:mt-1\/3{
  margin-top     : 33.333333% !important;
}

.group:hover .group-hover\:mr-1\/3{
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:mb-1\/3{
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:ml-1\/3{
  margin-left     : 33.333333% !important;
}

.group:hover .group-hover\:mt-2\/3{
  margin-top     : 66.666667% !important;
}

.group:hover .group-hover\:mr-2\/3{
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:mb-2\/3{
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:ml-2\/3{
  margin-left     : 66.666667% !important;
}

.group:hover .group-hover\:mt-1\/4{
  margin-top     : 25% !important;
}

.group:hover .group-hover\:mr-1\/4{
  margin-right     : 25% !important;
}

.group:hover .group-hover\:mb-1\/4{
  margin-bottom     : 25% !important;
}

.group:hover .group-hover\:ml-1\/4{
  margin-left     : 25% !important;
}

.group:hover .group-hover\:mt-2\/4{
  margin-top     : 50% !important;
}

.group:hover .group-hover\:mr-2\/4{
  margin-right     : 50% !important;
}

.group:hover .group-hover\:mb-2\/4{
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:ml-2\/4{
  margin-left     : 50% !important;
}

.group:hover .group-hover\:mt-3\/4{
  margin-top     : 75% !important;
}

.group:hover .group-hover\:mr-3\/4{
  margin-right     : 75% !important;
}

.group:hover .group-hover\:mb-3\/4{
  margin-bottom     : 75% !important;
}

.group:hover .group-hover\:ml-3\/4{
  margin-left     : 75% !important;
}

.group:hover .group-hover\:mt-1\/5{
  margin-top     : 20% !important;
}

.group:hover .group-hover\:mr-1\/5{
  margin-right     : 20% !important;
}

.group:hover .group-hover\:mb-1\/5{
  margin-bottom     : 20% !important;
}

.group:hover .group-hover\:ml-1\/5{
  margin-left     : 20% !important;
}

.group:hover .group-hover\:mt-2\/5{
  margin-top     : 40% !important;
}

.group:hover .group-hover\:mr-2\/5{
  margin-right     : 40% !important;
}

.group:hover .group-hover\:mb-2\/5{
  margin-bottom     : 40% !important;
}

.group:hover .group-hover\:ml-2\/5{
  margin-left     : 40% !important;
}

.group:hover .group-hover\:mt-3\/5{
  margin-top     : 60% !important;
}

.group:hover .group-hover\:mr-3\/5{
  margin-right     : 60% !important;
}

.group:hover .group-hover\:mb-3\/5{
  margin-bottom     : 60% !important;
}

.group:hover .group-hover\:ml-3\/5{
  margin-left     : 60% !important;
}

.group:hover .group-hover\:mt-4\/5{
  margin-top     : 80% !important;
}

.group:hover .group-hover\:mr-4\/5{
  margin-right     : 80% !important;
}

.group:hover .group-hover\:mb-4\/5{
  margin-bottom     : 80% !important;
}

.group:hover .group-hover\:ml-4\/5{
  margin-left     : 80% !important;
}

.group:hover .group-hover\:mt-1\/6{
  margin-top     : 16.666667% !important;
}

.group:hover .group-hover\:mr-1\/6{
  margin-right     : 16.666667% !important;
}

.group:hover .group-hover\:mb-1\/6{
  margin-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:ml-1\/6{
  margin-left     : 16.666667% !important;
}

.group:hover .group-hover\:mt-2\/6{
  margin-top     : 33.333333% !important;
}

.group:hover .group-hover\:mr-2\/6{
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:mb-2\/6{
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:ml-2\/6{
  margin-left     : 33.333333% !important;
}

.group:hover .group-hover\:mt-3\/6{
  margin-top     : 50% !important;
}

.group:hover .group-hover\:mr-3\/6{
  margin-right     : 50% !important;
}

.group:hover .group-hover\:mb-3\/6{
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:ml-3\/6{
  margin-left     : 50% !important;
}

.group:hover .group-hover\:mt-4\/6{
  margin-top     : 66.666667% !important;
}

.group:hover .group-hover\:mr-4\/6{
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:mb-4\/6{
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:ml-4\/6{
  margin-left     : 66.666667% !important;
}

.group:hover .group-hover\:mt-5\/6{
  margin-top     : 83.333333% !important;
}

.group:hover .group-hover\:mr-5\/6{
  margin-right     : 83.333333% !important;
}

.group:hover .group-hover\:mb-5\/6{
  margin-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:ml-5\/6{
  margin-left     : 83.333333% !important;
}

.group:hover .group-hover\:mt-1\/12{
  margin-top     : 8.333333% !important;
}

.group:hover .group-hover\:mr-1\/12{
  margin-right     : 8.333333% !important;
}

.group:hover .group-hover\:mb-1\/12{
  margin-bottom     : 8.333333% !important;
}

.group:hover .group-hover\:ml-1\/12{
  margin-left     : 8.333333% !important;
}

.group:hover .group-hover\:mt-2\/12{
  margin-top     : 16.666667% !important;
}

.group:hover .group-hover\:mr-2\/12{
  margin-right     : 16.666667% !important;
}

.group:hover .group-hover\:mb-2\/12{
  margin-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:ml-2\/12{
  margin-left     : 16.666667% !important;
}

.group:hover .group-hover\:mt-3\/12{
  margin-top     : 25% !important;
}

.group:hover .group-hover\:mr-3\/12{
  margin-right     : 25% !important;
}

.group:hover .group-hover\:mb-3\/12{
  margin-bottom     : 25% !important;
}

.group:hover .group-hover\:ml-3\/12{
  margin-left     : 25% !important;
}

.group:hover .group-hover\:mt-4\/12{
  margin-top     : 33.333333% !important;
}

.group:hover .group-hover\:mr-4\/12{
  margin-right     : 33.333333% !important;
}

.group:hover .group-hover\:mb-4\/12{
  margin-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:ml-4\/12{
  margin-left     : 33.333333% !important;
}

.group:hover .group-hover\:mt-5\/12{
  margin-top     : 41.666667% !important;
}

.group:hover .group-hover\:mr-5\/12{
  margin-right     : 41.666667% !important;
}

.group:hover .group-hover\:mb-5\/12{
  margin-bottom     : 41.666667% !important;
}

.group:hover .group-hover\:ml-5\/12{
  margin-left     : 41.666667% !important;
}

.group:hover .group-hover\:mt-6\/12{
  margin-top     : 50% !important;
}

.group:hover .group-hover\:mr-6\/12{
  margin-right     : 50% !important;
}

.group:hover .group-hover\:mb-6\/12{
  margin-bottom     : 50% !important;
}

.group:hover .group-hover\:ml-6\/12{
  margin-left     : 50% !important;
}

.group:hover .group-hover\:mt-7\/12{
  margin-top     : 58.333333% !important;
}

.group:hover .group-hover\:mr-7\/12{
  margin-right     : 58.333333% !important;
}

.group:hover .group-hover\:mb-7\/12{
  margin-bottom     : 58.333333% !important;
}

.group:hover .group-hover\:ml-7\/12{
  margin-left     : 58.333333% !important;
}

.group:hover .group-hover\:mt-8\/12{
  margin-top     : 66.666667% !important;
}

.group:hover .group-hover\:mr-8\/12{
  margin-right     : 66.666667% !important;
}

.group:hover .group-hover\:mb-8\/12{
  margin-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:ml-8\/12{
  margin-left     : 66.666667% !important;
}

.group:hover .group-hover\:mt-9\/12{
  margin-top     : 75% !important;
}

.group:hover .group-hover\:mr-9\/12{
  margin-right     : 75% !important;
}

.group:hover .group-hover\:mb-9\/12{
  margin-bottom     : 75% !important;
}

.group:hover .group-hover\:ml-9\/12{
  margin-left     : 75% !important;
}

.group:hover .group-hover\:mt-10\/12{
  margin-top     : 83.333333% !important;
}

.group:hover .group-hover\:mr-10\/12{
  margin-right     : 83.333333% !important;
}

.group:hover .group-hover\:mb-10\/12{
  margin-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:ml-10\/12{
  margin-left     : 83.333333% !important;
}

.group:hover .group-hover\:mt-11\/12{
  margin-top     : 91.666667% !important;
}

.group:hover .group-hover\:mr-11\/12{
  margin-right     : 91.666667% !important;
}

.group:hover .group-hover\:mb-11\/12{
  margin-bottom     : 91.666667% !important;
}

.group:hover .group-hover\:ml-11\/12{
  margin-left     : 91.666667% !important;
}

.group:hover .group-hover\:mt-full{
  margin-top     : 100% !important;
}

.group:hover .group-hover\:mr-full{
  margin-right     : 100% !important;
}

.group:hover .group-hover\:mb-full{
  margin-bottom     : 100% !important;
}

.group:hover .group-hover\:ml-full{
  margin-left     : 100% !important;
}

.group:hover .group-hover\:-mt-1{
  margin-top     : -0.25rem !important;
}

.group:hover .group-hover\:-mr-1{
  margin-right     : -0.25rem !important;
}

.group:hover .group-hover\:-mb-1{
  margin-bottom     : -0.25rem !important;
}

.group:hover .group-hover\:-ml-1{
  margin-left     : -0.25rem !important;
}

.group:hover .group-hover\:-mt-2{
  margin-top     : -0.5rem !important;
}

.group:hover .group-hover\:-mr-2{
  margin-right     : -0.5rem !important;
}

.group:hover .group-hover\:-mb-2{
  margin-bottom     : -0.5rem !important;
}

.group:hover .group-hover\:-ml-2{
  margin-left     : -0.5rem !important;
}

.group:hover .group-hover\:-mt-3{
  margin-top     : -0.75rem !important;
}

.group:hover .group-hover\:-mr-3{
  margin-right     : -0.75rem !important;
}

.group:hover .group-hover\:-mb-3{
  margin-bottom     : -0.75rem !important;
}

.group:hover .group-hover\:-ml-3{
  margin-left     : -0.75rem !important;
}

.group:hover .group-hover\:-mt-4{
  margin-top     : -1rem !important;
}

.group:hover .group-hover\:-mr-4{
  margin-right     : -1rem !important;
}

.group:hover .group-hover\:-mb-4{
  margin-bottom     : -1rem !important;
}

.group:hover .group-hover\:-ml-4{
  margin-left     : -1rem !important;
}

.group:hover .group-hover\:-mt-5{
  margin-top     : -1.25rem !important;
}

.group:hover .group-hover\:-mr-5{
  margin-right     : -1.25rem !important;
}

.group:hover .group-hover\:-mb-5{
  margin-bottom     : -1.25rem !important;
}

.group:hover .group-hover\:-ml-5{
  margin-left     : -1.25rem !important;
}

.group:hover .group-hover\:-mt-6{
  margin-top     : -1.5rem !important;
}

.group:hover .group-hover\:-mr-6{
  margin-right     : -1.5rem !important;
}

.group:hover .group-hover\:-mb-6{
  margin-bottom     : -1.5rem !important;
}

.group:hover .group-hover\:-ml-6{
  margin-left     : -1.5rem !important;
}

.group:hover .group-hover\:-mt-7{
  margin-top     : -1.75rem !important;
}

.group:hover .group-hover\:-mr-7{
  margin-right     : -1.75rem !important;
}

.group:hover .group-hover\:-mb-7{
  margin-bottom     : -1.75rem !important;
}

.group:hover .group-hover\:-ml-7{
  margin-left     : -1.75rem !important;
}

.group:hover .group-hover\:-mt-8{
  margin-top     : -2rem !important;
}

.group:hover .group-hover\:-mr-8{
  margin-right     : -2rem !important;
}

.group:hover .group-hover\:-mb-8{
  margin-bottom     : -2rem !important;
}

.group:hover .group-hover\:-ml-8{
  margin-left     : -2rem !important;
}

.group:hover .group-hover\:-mt-9{
  margin-top     : -2.25rem !important;
}

.group:hover .group-hover\:-mr-9{
  margin-right     : -2.25rem !important;
}

.group:hover .group-hover\:-mb-9{
  margin-bottom     : -2.25rem !important;
}

.group:hover .group-hover\:-ml-9{
  margin-left     : -2.25rem !important;
}

.group:hover .group-hover\:-mt-10{
  margin-top     : -2.5rem !important;
}

.group:hover .group-hover\:-mr-10{
  margin-right     : -2.5rem !important;
}

.group:hover .group-hover\:-mb-10{
  margin-bottom     : -2.5rem !important;
}

.group:hover .group-hover\:-ml-10{
  margin-left     : -2.5rem !important;
}

.group:hover .group-hover\:-mt-11{
  margin-top     : -2.75rem !important;
}

.group:hover .group-hover\:-mr-11{
  margin-right     : -2.75rem !important;
}

.group:hover .group-hover\:-mb-11{
  margin-bottom     : -2.75rem !important;
}

.group:hover .group-hover\:-ml-11{
  margin-left     : -2.75rem !important;
}

.group:hover .group-hover\:-mt-12{
  margin-top     : -3rem !important;
}

.group:hover .group-hover\:-mr-12{
  margin-right     : -3rem !important;
}

.group:hover .group-hover\:-mb-12{
  margin-bottom     : -3rem !important;
}

.group:hover .group-hover\:-ml-12{
  margin-left     : -3rem !important;
}

.group:hover .group-hover\:-mt-13{
  margin-top     : -3.25rem !important;
}

.group:hover .group-hover\:-mr-13{
  margin-right     : -3.25rem !important;
}

.group:hover .group-hover\:-mb-13{
  margin-bottom     : -3.25rem !important;
}

.group:hover .group-hover\:-ml-13{
  margin-left     : -3.25rem !important;
}

.group:hover .group-hover\:-mt-14{
  margin-top     : -3.5rem !important;
}

.group:hover .group-hover\:-mr-14{
  margin-right     : -3.5rem !important;
}

.group:hover .group-hover\:-mb-14{
  margin-bottom     : -3.5rem !important;
}

.group:hover .group-hover\:-ml-14{
  margin-left     : -3.5rem !important;
}

.group:hover .group-hover\:-mt-15{
  margin-top     : -3.75rem !important;
}

.group:hover .group-hover\:-mr-15{
  margin-right     : -3.75rem !important;
}

.group:hover .group-hover\:-mb-15{
  margin-bottom     : -3.75rem !important;
}

.group:hover .group-hover\:-ml-15{
  margin-left     : -3.75rem !important;
}

.group:hover .group-hover\:-mt-16{
  margin-top     : -4rem !important;
}

.group:hover .group-hover\:-mr-16{
  margin-right     : -4rem !important;
}

.group:hover .group-hover\:-mb-16{
  margin-bottom     : -4rem !important;
}

.group:hover .group-hover\:-ml-16{
  margin-left     : -4rem !important;
}

.group:hover .group-hover\:-mt-20{
  margin-top     : -5rem !important;
}

.group:hover .group-hover\:-mr-20{
  margin-right     : -5rem !important;
}

.group:hover .group-hover\:-mb-20{
  margin-bottom     : -5rem !important;
}

.group:hover .group-hover\:-ml-20{
  margin-left     : -5rem !important;
}

.group:hover .group-hover\:-mt-24{
  margin-top     : -6rem !important;
}

.group:hover .group-hover\:-mr-24{
  margin-right     : -6rem !important;
}

.group:hover .group-hover\:-mb-24{
  margin-bottom     : -6rem !important;
}

.group:hover .group-hover\:-ml-24{
  margin-left     : -6rem !important;
}

.group:hover .group-hover\:-mt-28{
  margin-top     : -7rem !important;
}

.group:hover .group-hover\:-mr-28{
  margin-right     : -7rem !important;
}

.group:hover .group-hover\:-mb-28{
  margin-bottom     : -7rem !important;
}

.group:hover .group-hover\:-ml-28{
  margin-left     : -7rem !important;
}

.group:hover .group-hover\:-mt-32{
  margin-top     : -8rem !important;
}

.group:hover .group-hover\:-mr-32{
  margin-right     : -8rem !important;
}

.group:hover .group-hover\:-mb-32{
  margin-bottom     : -8rem !important;
}

.group:hover .group-hover\:-ml-32{
  margin-left     : -8rem !important;
}

.group:hover .group-hover\:-mt-36{
  margin-top     : -9rem !important;
}

.group:hover .group-hover\:-mr-36{
  margin-right     : -9rem !important;
}

.group:hover .group-hover\:-mb-36{
  margin-bottom     : -9rem !important;
}

.group:hover .group-hover\:-ml-36{
  margin-left     : -9rem !important;
}

.group:hover .group-hover\:-mt-40{
  margin-top     : -10rem !important;
}

.group:hover .group-hover\:-mr-40{
  margin-right     : -10rem !important;
}

.group:hover .group-hover\:-mb-40{
  margin-bottom     : -10rem !important;
}

.group:hover .group-hover\:-ml-40{
  margin-left     : -10rem !important;
}

.group:hover .group-hover\:-mt-44{
  margin-top     : -11rem !important;
}

.group:hover .group-hover\:-mr-44{
  margin-right     : -11rem !important;
}

.group:hover .group-hover\:-mb-44{
  margin-bottom     : -11rem !important;
}

.group:hover .group-hover\:-ml-44{
  margin-left     : -11rem !important;
}

.group:hover .group-hover\:-mt-48{
  margin-top     : -12rem !important;
}

.group:hover .group-hover\:-mr-48{
  margin-right     : -12rem !important;
}

.group:hover .group-hover\:-mb-48{
  margin-bottom     : -12rem !important;
}

.group:hover .group-hover\:-ml-48{
  margin-left     : -12rem !important;
}

.group:hover .group-hover\:-mt-52{
  margin-top     : -13rem !important;
}

.group:hover .group-hover\:-mr-52{
  margin-right     : -13rem !important;
}

.group:hover .group-hover\:-mb-52{
  margin-bottom     : -13rem !important;
}

.group:hover .group-hover\:-ml-52{
  margin-left     : -13rem !important;
}

.group:hover .group-hover\:-mt-56{
  margin-top     : -14rem !important;
}

.group:hover .group-hover\:-mr-56{
  margin-right     : -14rem !important;
}

.group:hover .group-hover\:-mb-56{
  margin-bottom     : -14rem !important;
}

.group:hover .group-hover\:-ml-56{
  margin-left     : -14rem !important;
}

.group:hover .group-hover\:-mt-60{
  margin-top     : -15rem !important;
}

.group:hover .group-hover\:-mr-60{
  margin-right     : -15rem !important;
}

.group:hover .group-hover\:-mb-60{
  margin-bottom     : -15rem !important;
}

.group:hover .group-hover\:-ml-60{
  margin-left     : -15rem !important;
}

.group:hover .group-hover\:-mt-64{
  margin-top     : -16rem !important;
}

.group:hover .group-hover\:-mr-64{
  margin-right     : -16rem !important;
}

.group:hover .group-hover\:-mb-64{
  margin-bottom     : -16rem !important;
}

.group:hover .group-hover\:-ml-64{
  margin-left     : -16rem !important;
}

.group:hover .group-hover\:-mt-72{
  margin-top     : -18rem !important;
}

.group:hover .group-hover\:-mr-72{
  margin-right     : -18rem !important;
}

.group:hover .group-hover\:-mb-72{
  margin-bottom     : -18rem !important;
}

.group:hover .group-hover\:-ml-72{
  margin-left     : -18rem !important;
}

.group:hover .group-hover\:-mt-80{
  margin-top     : -20rem !important;
}

.group:hover .group-hover\:-mr-80{
  margin-right     : -20rem !important;
}

.group:hover .group-hover\:-mb-80{
  margin-bottom     : -20rem !important;
}

.group:hover .group-hover\:-ml-80{
  margin-left     : -20rem !important;
}

.group:hover .group-hover\:-mt-96{
  margin-top     : -24rem !important;
}

.group:hover .group-hover\:-mr-96{
  margin-right     : -24rem !important;
}

.group:hover .group-hover\:-mb-96{
  margin-bottom     : -24rem !important;
}

.group:hover .group-hover\:-ml-96{
  margin-left     : -24rem !important;
}

.group:hover .group-hover\:-mt-px{
  margin-top     : -1px !important;
}

.group:hover .group-hover\:-mr-px{
  margin-right     : -1px !important;
}

.group:hover .group-hover\:-mb-px{
  margin-bottom     : -1px !important;
}

.group:hover .group-hover\:-ml-px{
  margin-left     : -1px !important;
}

.group:hover .group-hover\:-mt-0\.5{
  margin-top     : -0.125rem !important;
}

.group:hover .group-hover\:-mr-0\.5{
  margin-right     : -0.125rem !important;
}

.group:hover .group-hover\:-mb-0\.5{
  margin-bottom     : -0.125rem !important;
}

.group:hover .group-hover\:-ml-0\.5{
  margin-left     : -0.125rem !important;
}

.group:hover .group-hover\:-mt-1\.5{
  margin-top     : -0.375rem !important;
}

.group:hover .group-hover\:-mr-1\.5{
  margin-right     : -0.375rem !important;
}

.group:hover .group-hover\:-mb-1\.5{
  margin-bottom     : -0.375rem !important;
}

.group:hover .group-hover\:-ml-1\.5{
  margin-left     : -0.375rem !important;
}

.group:hover .group-hover\:-mt-2\.5{
  margin-top     : -0.625rem !important;
}

.group:hover .group-hover\:-mr-2\.5{
  margin-right     : -0.625rem !important;
}

.group:hover .group-hover\:-mb-2\.5{
  margin-bottom     : -0.625rem !important;
}

.group:hover .group-hover\:-ml-2\.5{
  margin-left     : -0.625rem !important;
}

.group:hover .group-hover\:-mt-3\.5{
  margin-top     : -0.875rem !important;
}

.group:hover .group-hover\:-mr-3\.5{
  margin-right     : -0.875rem !important;
}

.group:hover .group-hover\:-mb-3\.5{
  margin-bottom     : -0.875rem !important;
}

.group:hover .group-hover\:-ml-3\.5{
  margin-left     : -0.875rem !important;
}

.group:hover .group-hover\:-mt-1\/2{
  margin-top     : -50% !important;
}

.group:hover .group-hover\:-mr-1\/2{
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-mb-1\/2{
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-ml-1\/2{
  margin-left     : -50% !important;
}

.group:hover .group-hover\:-mt-1\/3{
  margin-top     : -33.33333% !important;
}

.group:hover .group-hover\:-mr-1\/3{
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-mb-1\/3{
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-ml-1\/3{
  margin-left     : -33.33333% !important;
}

.group:hover .group-hover\:-mt-2\/3{
  margin-top     : -66.66667% !important;
}

.group:hover .group-hover\:-mr-2\/3{
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-mb-2\/3{
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-ml-2\/3{
  margin-left     : -66.66667% !important;
}

.group:hover .group-hover\:-mt-1\/4{
  margin-top     : -25% !important;
}

.group:hover .group-hover\:-mr-1\/4{
  margin-right     : -25% !important;
}

.group:hover .group-hover\:-mb-1\/4{
  margin-bottom     : -25% !important;
}

.group:hover .group-hover\:-ml-1\/4{
  margin-left     : -25% !important;
}

.group:hover .group-hover\:-mt-2\/4{
  margin-top     : -50% !important;
}

.group:hover .group-hover\:-mr-2\/4{
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-mb-2\/4{
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-ml-2\/4{
  margin-left     : -50% !important;
}

.group:hover .group-hover\:-mt-3\/4{
  margin-top     : -75% !important;
}

.group:hover .group-hover\:-mr-3\/4{
  margin-right     : -75% !important;
}

.group:hover .group-hover\:-mb-3\/4{
  margin-bottom     : -75% !important;
}

.group:hover .group-hover\:-ml-3\/4{
  margin-left     : -75% !important;
}

.group:hover .group-hover\:-mt-1\/5{
  margin-top     : -20% !important;
}

.group:hover .group-hover\:-mr-1\/5{
  margin-right     : -20% !important;
}

.group:hover .group-hover\:-mb-1\/5{
  margin-bottom     : -20% !important;
}

.group:hover .group-hover\:-ml-1\/5{
  margin-left     : -20% !important;
}

.group:hover .group-hover\:-mt-2\/5{
  margin-top     : -40% !important;
}

.group:hover .group-hover\:-mr-2\/5{
  margin-right     : -40% !important;
}

.group:hover .group-hover\:-mb-2\/5{
  margin-bottom     : -40% !important;
}

.group:hover .group-hover\:-ml-2\/5{
  margin-left     : -40% !important;
}

.group:hover .group-hover\:-mt-3\/5{
  margin-top     : -60% !important;
}

.group:hover .group-hover\:-mr-3\/5{
  margin-right     : -60% !important;
}

.group:hover .group-hover\:-mb-3\/5{
  margin-bottom     : -60% !important;
}

.group:hover .group-hover\:-ml-3\/5{
  margin-left     : -60% !important;
}

.group:hover .group-hover\:-mt-4\/5{
  margin-top     : -80% !important;
}

.group:hover .group-hover\:-mr-4\/5{
  margin-right     : -80% !important;
}

.group:hover .group-hover\:-mb-4\/5{
  margin-bottom     : -80% !important;
}

.group:hover .group-hover\:-ml-4\/5{
  margin-left     : -80% !important;
}

.group:hover .group-hover\:-mt-1\/6{
  margin-top     : -16.66667% !important;
}

.group:hover .group-hover\:-mr-1\/6{
  margin-right     : -16.66667% !important;
}

.group:hover .group-hover\:-mb-1\/6{
  margin-bottom     : -16.66667% !important;
}

.group:hover .group-hover\:-ml-1\/6{
  margin-left     : -16.66667% !important;
}

.group:hover .group-hover\:-mt-2\/6{
  margin-top     : -33.33333% !important;
}

.group:hover .group-hover\:-mr-2\/6{
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-mb-2\/6{
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-ml-2\/6{
  margin-left     : -33.33333% !important;
}

.group:hover .group-hover\:-mt-3\/6{
  margin-top     : -50% !important;
}

.group:hover .group-hover\:-mr-3\/6{
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-mb-3\/6{
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-ml-3\/6{
  margin-left     : -50% !important;
}

.group:hover .group-hover\:-mt-4\/6{
  margin-top     : -66.66667% !important;
}

.group:hover .group-hover\:-mr-4\/6{
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-mb-4\/6{
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-ml-4\/6{
  margin-left     : -66.66667% !important;
}

.group:hover .group-hover\:-mt-5\/6{
  margin-top     : -83.33333% !important;
}

.group:hover .group-hover\:-mr-5\/6{
  margin-right     : -83.33333% !important;
}

.group:hover .group-hover\:-mb-5\/6{
  margin-bottom     : -83.33333% !important;
}

.group:hover .group-hover\:-ml-5\/6{
  margin-left     : -83.33333% !important;
}

.group:hover .group-hover\:-mt-1\/12{
  margin-top     : -8.33333% !important;
}

.group:hover .group-hover\:-mr-1\/12{
  margin-right     : -8.33333% !important;
}

.group:hover .group-hover\:-mb-1\/12{
  margin-bottom     : -8.33333% !important;
}

.group:hover .group-hover\:-ml-1\/12{
  margin-left     : -8.33333% !important;
}

.group:hover .group-hover\:-mt-2\/12{
  margin-top     : -16.66667% !important;
}

.group:hover .group-hover\:-mr-2\/12{
  margin-right     : -16.66667% !important;
}

.group:hover .group-hover\:-mb-2\/12{
  margin-bottom     : -16.66667% !important;
}

.group:hover .group-hover\:-ml-2\/12{
  margin-left     : -16.66667% !important;
}

.group:hover .group-hover\:-mt-3\/12{
  margin-top     : -25% !important;
}

.group:hover .group-hover\:-mr-3\/12{
  margin-right     : -25% !important;
}

.group:hover .group-hover\:-mb-3\/12{
  margin-bottom     : -25% !important;
}

.group:hover .group-hover\:-ml-3\/12{
  margin-left     : -25% !important;
}

.group:hover .group-hover\:-mt-4\/12{
  margin-top     : -33.33333% !important;
}

.group:hover .group-hover\:-mr-4\/12{
  margin-right     : -33.33333% !important;
}

.group:hover .group-hover\:-mb-4\/12{
  margin-bottom     : -33.33333% !important;
}

.group:hover .group-hover\:-ml-4\/12{
  margin-left     : -33.33333% !important;
}

.group:hover .group-hover\:-mt-5\/12{
  margin-top     : -41.66667% !important;
}

.group:hover .group-hover\:-mr-5\/12{
  margin-right     : -41.66667% !important;
}

.group:hover .group-hover\:-mb-5\/12{
  margin-bottom     : -41.66667% !important;
}

.group:hover .group-hover\:-ml-5\/12{
  margin-left     : -41.66667% !important;
}

.group:hover .group-hover\:-mt-6\/12{
  margin-top     : -50% !important;
}

.group:hover .group-hover\:-mr-6\/12{
  margin-right     : -50% !important;
}

.group:hover .group-hover\:-mb-6\/12{
  margin-bottom     : -50% !important;
}

.group:hover .group-hover\:-ml-6\/12{
  margin-left     : -50% !important;
}

.group:hover .group-hover\:-mt-7\/12{
  margin-top     : -58.33333% !important;
}

.group:hover .group-hover\:-mr-7\/12{
  margin-right     : -58.33333% !important;
}

.group:hover .group-hover\:-mb-7\/12{
  margin-bottom     : -58.33333% !important;
}

.group:hover .group-hover\:-ml-7\/12{
  margin-left     : -58.33333% !important;
}

.group:hover .group-hover\:-mt-8\/12{
  margin-top     : -66.66667% !important;
}

.group:hover .group-hover\:-mr-8\/12{
  margin-right     : -66.66667% !important;
}

.group:hover .group-hover\:-mb-8\/12{
  margin-bottom     : -66.66667% !important;
}

.group:hover .group-hover\:-ml-8\/12{
  margin-left     : -66.66667% !important;
}

.group:hover .group-hover\:-mt-9\/12{
  margin-top     : -75% !important;
}

.group:hover .group-hover\:-mr-9\/12{
  margin-right     : -75% !important;
}

.group:hover .group-hover\:-mb-9\/12{
  margin-bottom     : -75% !important;
}

.group:hover .group-hover\:-ml-9\/12{
  margin-left     : -75% !important;
}

.group:hover .group-hover\:-mt-10\/12{
  margin-top     : -83.33333% !important;
}

.group:hover .group-hover\:-mr-10\/12{
  margin-right     : -83.33333% !important;
}

.group:hover .group-hover\:-mb-10\/12{
  margin-bottom     : -83.33333% !important;
}

.group:hover .group-hover\:-ml-10\/12{
  margin-left     : -83.33333% !important;
}

.group:hover .group-hover\:-mt-11\/12{
  margin-top     : -91.66667% !important;
}

.group:hover .group-hover\:-mr-11\/12{
  margin-right     : -91.66667% !important;
}

.group:hover .group-hover\:-mb-11\/12{
  margin-bottom     : -91.66667% !important;
}

.group:hover .group-hover\:-ml-11\/12{
  margin-left     : -91.66667% !important;
}

.group:hover .group-hover\:-mt-full{
  margin-top     : -100% !important;
}

.group:hover .group-hover\:-mr-full{
  margin-right     : -100% !important;
}

.group:hover .group-hover\:-mb-full{
  margin-bottom     : -100% !important;
}

.group:hover .group-hover\:-ml-full{
  margin-left     : -100% !important;
}

.hover\:m-0:hover{
  margin     : 0 !important;
}

.hover\:m-1:hover{
  margin     : 0.25rem !important;
}

.hover\:m-2:hover{
  margin     : 0.5rem !important;
}

.hover\:m-3:hover{
  margin     : 0.75rem !important;
}

.hover\:m-4:hover{
  margin     : 1rem !important;
}

.hover\:m-5:hover{
  margin     : 1.25rem !important;
}

.hover\:m-6:hover{
  margin     : 1.5rem !important;
}

.hover\:m-7:hover{
  margin     : 1.75rem !important;
}

.hover\:m-8:hover{
  margin     : 2rem !important;
}

.hover\:m-9:hover{
  margin     : 2.25rem !important;
}

.hover\:m-10:hover{
  margin     : 2.5rem !important;
}

.hover\:m-11:hover{
  margin     : 2.75rem !important;
}

.hover\:m-12:hover{
  margin     : 3rem !important;
}

.hover\:m-13:hover{
  margin     : 3.25rem !important;
}

.hover\:m-14:hover{
  margin     : 3.5rem !important;
}

.hover\:m-15:hover{
  margin     : 3.75rem !important;
}

.hover\:m-16:hover{
  margin     : 4rem !important;
}

.hover\:m-20:hover{
  margin     : 5rem !important;
}

.hover\:m-24:hover{
  margin     : 6rem !important;
}

.hover\:m-28:hover{
  margin     : 7rem !important;
}

.hover\:m-32:hover{
  margin     : 8rem !important;
}

.hover\:m-36:hover{
  margin     : 9rem !important;
}

.hover\:m-40:hover{
  margin     : 10rem !important;
}

.hover\:m-44:hover{
  margin     : 11rem !important;
}

.hover\:m-48:hover{
  margin     : 12rem !important;
}

.hover\:m-52:hover{
  margin     : 13rem !important;
}

.hover\:m-56:hover{
  margin     : 14rem !important;
}

.hover\:m-60:hover{
  margin     : 15rem !important;
}

.hover\:m-64:hover{
  margin     : 16rem !important;
}

.hover\:m-72:hover{
  margin     : 18rem !important;
}

.hover\:m-80:hover{
  margin     : 20rem !important;
}

.hover\:m-96:hover{
  margin     : 24rem !important;
}

.hover\:m-auto:hover{
  margin     : auto !important;
}

.hover\:m-px:hover{
  margin     : 1px !important;
}

.hover\:m-0\.5:hover{
  margin     : 0.125rem !important;
}

.hover\:m-1\.5:hover{
  margin     : 0.375rem !important;
}

.hover\:m-2\.5:hover{
  margin     : 0.625rem !important;
}

.hover\:m-3\.5:hover{
  margin     : 0.875rem !important;
}

.hover\:m-1\/2:hover{
  margin     : 50% !important;
}

.hover\:m-1\/3:hover{
  margin     : 33.333333% !important;
}

.hover\:m-2\/3:hover{
  margin     : 66.666667% !important;
}

.hover\:m-1\/4:hover{
  margin     : 25% !important;
}

.hover\:m-2\/4:hover{
  margin     : 50% !important;
}

.hover\:m-3\/4:hover{
  margin     : 75% !important;
}

.hover\:m-1\/5:hover{
  margin     : 20% !important;
}

.hover\:m-2\/5:hover{
  margin     : 40% !important;
}

.hover\:m-3\/5:hover{
  margin     : 60% !important;
}

.hover\:m-4\/5:hover{
  margin     : 80% !important;
}

.hover\:m-1\/6:hover{
  margin     : 16.666667% !important;
}

.hover\:m-2\/6:hover{
  margin     : 33.333333% !important;
}

.hover\:m-3\/6:hover{
  margin     : 50% !important;
}

.hover\:m-4\/6:hover{
  margin     : 66.666667% !important;
}

.hover\:m-5\/6:hover{
  margin     : 83.333333% !important;
}

.hover\:m-1\/12:hover{
  margin     : 8.333333% !important;
}

.hover\:m-2\/12:hover{
  margin     : 16.666667% !important;
}

.hover\:m-3\/12:hover{
  margin     : 25% !important;
}

.hover\:m-4\/12:hover{
  margin     : 33.333333% !important;
}

.hover\:m-5\/12:hover{
  margin     : 41.666667% !important;
}

.hover\:m-6\/12:hover{
  margin     : 50% !important;
}

.hover\:m-7\/12:hover{
  margin     : 58.333333% !important;
}

.hover\:m-8\/12:hover{
  margin     : 66.666667% !important;
}

.hover\:m-9\/12:hover{
  margin     : 75% !important;
}

.hover\:m-10\/12:hover{
  margin     : 83.333333% !important;
}

.hover\:m-11\/12:hover{
  margin     : 91.666667% !important;
}

.hover\:m-full:hover{
  margin     : 100% !important;
}

.hover\:-m-1:hover{
  margin     : -0.25rem !important;
}

.hover\:-m-2:hover{
  margin     : -0.5rem !important;
}

.hover\:-m-3:hover{
  margin     : -0.75rem !important;
}

.hover\:-m-4:hover{
  margin     : -1rem !important;
}

.hover\:-m-5:hover{
  margin     : -1.25rem !important;
}

.hover\:-m-6:hover{
  margin     : -1.5rem !important;
}

.hover\:-m-7:hover{
  margin     : -1.75rem !important;
}

.hover\:-m-8:hover{
  margin     : -2rem !important;
}

.hover\:-m-9:hover{
  margin     : -2.25rem !important;
}

.hover\:-m-10:hover{
  margin     : -2.5rem !important;
}

.hover\:-m-11:hover{
  margin     : -2.75rem !important;
}

.hover\:-m-12:hover{
  margin     : -3rem !important;
}

.hover\:-m-13:hover{
  margin     : -3.25rem !important;
}

.hover\:-m-14:hover{
  margin     : -3.5rem !important;
}

.hover\:-m-15:hover{
  margin     : -3.75rem !important;
}

.hover\:-m-16:hover{
  margin     : -4rem !important;
}

.hover\:-m-20:hover{
  margin     : -5rem !important;
}

.hover\:-m-24:hover{
  margin     : -6rem !important;
}

.hover\:-m-28:hover{
  margin     : -7rem !important;
}

.hover\:-m-32:hover{
  margin     : -8rem !important;
}

.hover\:-m-36:hover{
  margin     : -9rem !important;
}

.hover\:-m-40:hover{
  margin     : -10rem !important;
}

.hover\:-m-44:hover{
  margin     : -11rem !important;
}

.hover\:-m-48:hover{
  margin     : -12rem !important;
}

.hover\:-m-52:hover{
  margin     : -13rem !important;
}

.hover\:-m-56:hover{
  margin     : -14rem !important;
}

.hover\:-m-60:hover{
  margin     : -15rem !important;
}

.hover\:-m-64:hover{
  margin     : -16rem !important;
}

.hover\:-m-72:hover{
  margin     : -18rem !important;
}

.hover\:-m-80:hover{
  margin     : -20rem !important;
}

.hover\:-m-96:hover{
  margin     : -24rem !important;
}

.hover\:-m-px:hover{
  margin     : -1px !important;
}

.hover\:-m-0\.5:hover{
  margin     : -0.125rem !important;
}

.hover\:-m-1\.5:hover{
  margin     : -0.375rem !important;
}

.hover\:-m-2\.5:hover{
  margin     : -0.625rem !important;
}

.hover\:-m-3\.5:hover{
  margin     : -0.875rem !important;
}

.hover\:-m-1\/2:hover{
  margin     : -50% !important;
}

.hover\:-m-1\/3:hover{
  margin     : -33.33333% !important;
}

.hover\:-m-2\/3:hover{
  margin     : -66.66667% !important;
}

.hover\:-m-1\/4:hover{
  margin     : -25% !important;
}

.hover\:-m-2\/4:hover{
  margin     : -50% !important;
}

.hover\:-m-3\/4:hover{
  margin     : -75% !important;
}

.hover\:-m-1\/5:hover{
  margin     : -20% !important;
}

.hover\:-m-2\/5:hover{
  margin     : -40% !important;
}

.hover\:-m-3\/5:hover{
  margin     : -60% !important;
}

.hover\:-m-4\/5:hover{
  margin     : -80% !important;
}

.hover\:-m-1\/6:hover{
  margin     : -16.66667% !important;
}

.hover\:-m-2\/6:hover{
  margin     : -33.33333% !important;
}

.hover\:-m-3\/6:hover{
  margin     : -50% !important;
}

.hover\:-m-4\/6:hover{
  margin     : -66.66667% !important;
}

.hover\:-m-5\/6:hover{
  margin     : -83.33333% !important;
}

.hover\:-m-1\/12:hover{
  margin     : -8.33333% !important;
}

.hover\:-m-2\/12:hover{
  margin     : -16.66667% !important;
}

.hover\:-m-3\/12:hover{
  margin     : -25% !important;
}

.hover\:-m-4\/12:hover{
  margin     : -33.33333% !important;
}

.hover\:-m-5\/12:hover{
  margin     : -41.66667% !important;
}

.hover\:-m-6\/12:hover{
  margin     : -50% !important;
}

.hover\:-m-7\/12:hover{
  margin     : -58.33333% !important;
}

.hover\:-m-8\/12:hover{
  margin     : -66.66667% !important;
}

.hover\:-m-9\/12:hover{
  margin     : -75% !important;
}

.hover\:-m-10\/12:hover{
  margin     : -83.33333% !important;
}

.hover\:-m-11\/12:hover{
  margin     : -91.66667% !important;
}

.hover\:-m-full:hover{
  margin     : -100% !important;
}

.hover\:my-0:hover{
  margin-top     : 0 !important;
  margin-bottom     : 0 !important;
}

.hover\:mx-0:hover{
  margin-left     : 0 !important;
  margin-right     : 0 !important;
}

.hover\:my-1:hover{
  margin-top     : 0.25rem !important;
  margin-bottom     : 0.25rem !important;
}

.hover\:mx-1:hover{
  margin-left     : 0.25rem !important;
  margin-right     : 0.25rem !important;
}

.hover\:my-2:hover{
  margin-top     : 0.5rem !important;
  margin-bottom     : 0.5rem !important;
}

.hover\:mx-2:hover{
  margin-left     : 0.5rem !important;
  margin-right     : 0.5rem !important;
}

.hover\:my-3:hover{
  margin-top     : 0.75rem !important;
  margin-bottom     : 0.75rem !important;
}

.hover\:mx-3:hover{
  margin-left     : 0.75rem !important;
  margin-right     : 0.75rem !important;
}

.hover\:my-4:hover{
  margin-top     : 1rem !important;
  margin-bottom     : 1rem !important;
}

.hover\:mx-4:hover{
  margin-left     : 1rem !important;
  margin-right     : 1rem !important;
}

.hover\:my-5:hover{
  margin-top     : 1.25rem !important;
  margin-bottom     : 1.25rem !important;
}

.hover\:mx-5:hover{
  margin-left     : 1.25rem !important;
  margin-right     : 1.25rem !important;
}

.hover\:my-6:hover{
  margin-top     : 1.5rem !important;
  margin-bottom     : 1.5rem !important;
}

.hover\:mx-6:hover{
  margin-left     : 1.5rem !important;
  margin-right     : 1.5rem !important;
}

.hover\:my-7:hover{
  margin-top     : 1.75rem !important;
  margin-bottom     : 1.75rem !important;
}

.hover\:mx-7:hover{
  margin-left     : 1.75rem !important;
  margin-right     : 1.75rem !important;
}

.hover\:my-8:hover{
  margin-top     : 2rem !important;
  margin-bottom     : 2rem !important;
}

.hover\:mx-8:hover{
  margin-left     : 2rem !important;
  margin-right     : 2rem !important;
}

.hover\:my-9:hover{
  margin-top     : 2.25rem !important;
  margin-bottom     : 2.25rem !important;
}

.hover\:mx-9:hover{
  margin-left     : 2.25rem !important;
  margin-right     : 2.25rem !important;
}

.hover\:my-10:hover{
  margin-top     : 2.5rem !important;
  margin-bottom     : 2.5rem !important;
}

.hover\:mx-10:hover{
  margin-left     : 2.5rem !important;
  margin-right     : 2.5rem !important;
}

.hover\:my-11:hover{
  margin-top     : 2.75rem !important;
  margin-bottom     : 2.75rem !important;
}

.hover\:mx-11:hover{
  margin-left     : 2.75rem !important;
  margin-right     : 2.75rem !important;
}

.hover\:my-12:hover{
  margin-top     : 3rem !important;
  margin-bottom     : 3rem !important;
}

.hover\:mx-12:hover{
  margin-left     : 3rem !important;
  margin-right     : 3rem !important;
}

.hover\:my-13:hover{
  margin-top     : 3.25rem !important;
  margin-bottom     : 3.25rem !important;
}

.hover\:mx-13:hover{
  margin-left     : 3.25rem !important;
  margin-right     : 3.25rem !important;
}

.hover\:my-14:hover{
  margin-top     : 3.5rem !important;
  margin-bottom     : 3.5rem !important;
}

.hover\:mx-14:hover{
  margin-left     : 3.5rem !important;
  margin-right     : 3.5rem !important;
}

.hover\:my-15:hover{
  margin-top     : 3.75rem !important;
  margin-bottom     : 3.75rem !important;
}

.hover\:mx-15:hover{
  margin-left     : 3.75rem !important;
  margin-right     : 3.75rem !important;
}

.hover\:my-16:hover{
  margin-top     : 4rem !important;
  margin-bottom     : 4rem !important;
}

.hover\:mx-16:hover{
  margin-left     : 4rem !important;
  margin-right     : 4rem !important;
}

.hover\:my-20:hover{
  margin-top     : 5rem !important;
  margin-bottom     : 5rem !important;
}

.hover\:mx-20:hover{
  margin-left     : 5rem !important;
  margin-right     : 5rem !important;
}

.hover\:my-24:hover{
  margin-top     : 6rem !important;
  margin-bottom     : 6rem !important;
}

.hover\:mx-24:hover{
  margin-left     : 6rem !important;
  margin-right     : 6rem !important;
}

.hover\:my-28:hover{
  margin-top     : 7rem !important;
  margin-bottom     : 7rem !important;
}

.hover\:mx-28:hover{
  margin-left     : 7rem !important;
  margin-right     : 7rem !important;
}

.hover\:my-32:hover{
  margin-top     : 8rem !important;
  margin-bottom     : 8rem !important;
}

.hover\:mx-32:hover{
  margin-left     : 8rem !important;
  margin-right     : 8rem !important;
}

.hover\:my-36:hover{
  margin-top     : 9rem !important;
  margin-bottom     : 9rem !important;
}

.hover\:mx-36:hover{
  margin-left     : 9rem !important;
  margin-right     : 9rem !important;
}

.hover\:my-40:hover{
  margin-top     : 10rem !important;
  margin-bottom     : 10rem !important;
}

.hover\:mx-40:hover{
  margin-left     : 10rem !important;
  margin-right     : 10rem !important;
}

.hover\:my-44:hover{
  margin-top     : 11rem !important;
  margin-bottom     : 11rem !important;
}

.hover\:mx-44:hover{
  margin-left     : 11rem !important;
  margin-right     : 11rem !important;
}

.hover\:my-48:hover{
  margin-top     : 12rem !important;
  margin-bottom     : 12rem !important;
}

.hover\:mx-48:hover{
  margin-left     : 12rem !important;
  margin-right     : 12rem !important;
}

.hover\:my-52:hover{
  margin-top     : 13rem !important;
  margin-bottom     : 13rem !important;
}

.hover\:mx-52:hover{
  margin-left     : 13rem !important;
  margin-right     : 13rem !important;
}

.hover\:my-56:hover{
  margin-top     : 14rem !important;
  margin-bottom     : 14rem !important;
}

.hover\:mx-56:hover{
  margin-left     : 14rem !important;
  margin-right     : 14rem !important;
}

.hover\:my-60:hover{
  margin-top     : 15rem !important;
  margin-bottom     : 15rem !important;
}

.hover\:mx-60:hover{
  margin-left     : 15rem !important;
  margin-right     : 15rem !important;
}

.hover\:my-64:hover{
  margin-top     : 16rem !important;
  margin-bottom     : 16rem !important;
}

.hover\:mx-64:hover{
  margin-left     : 16rem !important;
  margin-right     : 16rem !important;
}

.hover\:my-72:hover{
  margin-top     : 18rem !important;
  margin-bottom     : 18rem !important;
}

.hover\:mx-72:hover{
  margin-left     : 18rem !important;
  margin-right     : 18rem !important;
}

.hover\:my-80:hover{
  margin-top     : 20rem !important;
  margin-bottom     : 20rem !important;
}

.hover\:mx-80:hover{
  margin-left     : 20rem !important;
  margin-right     : 20rem !important;
}

.hover\:my-96:hover{
  margin-top     : 24rem !important;
  margin-bottom     : 24rem !important;
}

.hover\:mx-96:hover{
  margin-left     : 24rem !important;
  margin-right     : 24rem !important;
}

.hover\:my-auto:hover{
  margin-top     : auto !important;
  margin-bottom     : auto !important;
}

.hover\:mx-auto:hover{
  margin-left     : auto !important;
  margin-right     : auto !important;
}

.hover\:my-px:hover{
  margin-top     : 1px !important;
  margin-bottom     : 1px !important;
}

.hover\:mx-px:hover{
  margin-left     : 1px !important;
  margin-right     : 1px !important;
}

.hover\:my-0\.5:hover{
  margin-top     : 0.125rem !important;
  margin-bottom     : 0.125rem !important;
}

.hover\:mx-0\.5:hover{
  margin-left     : 0.125rem !important;
  margin-right     : 0.125rem !important;
}

.hover\:my-1\.5:hover{
  margin-top     : 0.375rem !important;
  margin-bottom     : 0.375rem !important;
}

.hover\:mx-1\.5:hover{
  margin-left     : 0.375rem !important;
  margin-right     : 0.375rem !important;
}

.hover\:my-2\.5:hover{
  margin-top     : 0.625rem !important;
  margin-bottom     : 0.625rem !important;
}

.hover\:mx-2\.5:hover{
  margin-left     : 0.625rem !important;
  margin-right     : 0.625rem !important;
}

.hover\:my-3\.5:hover{
  margin-top     : 0.875rem !important;
  margin-bottom     : 0.875rem !important;
}

.hover\:mx-3\.5:hover{
  margin-left     : 0.875rem !important;
  margin-right     : 0.875rem !important;
}

.hover\:my-1\/2:hover{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.hover\:mx-1\/2:hover{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.hover\:my-1\/3:hover{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.hover\:mx-1\/3:hover{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.hover\:my-2\/3:hover{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.hover\:mx-2\/3:hover{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.hover\:my-1\/4:hover{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.hover\:mx-1\/4:hover{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.hover\:my-2\/4:hover{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.hover\:mx-2\/4:hover{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.hover\:my-3\/4:hover{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.hover\:mx-3\/4:hover{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.hover\:my-1\/5:hover{
  margin-top     : 20% !important;
  margin-bottom     : 20% !important;
}

.hover\:mx-1\/5:hover{
  margin-left     : 20% !important;
  margin-right     : 20% !important;
}

.hover\:my-2\/5:hover{
  margin-top     : 40% !important;
  margin-bottom     : 40% !important;
}

.hover\:mx-2\/5:hover{
  margin-left     : 40% !important;
  margin-right     : 40% !important;
}

.hover\:my-3\/5:hover{
  margin-top     : 60% !important;
  margin-bottom     : 60% !important;
}

.hover\:mx-3\/5:hover{
  margin-left     : 60% !important;
  margin-right     : 60% !important;
}

.hover\:my-4\/5:hover{
  margin-top     : 80% !important;
  margin-bottom     : 80% !important;
}

.hover\:mx-4\/5:hover{
  margin-left     : 80% !important;
  margin-right     : 80% !important;
}

.hover\:my-1\/6:hover{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.hover\:mx-1\/6:hover{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.hover\:my-2\/6:hover{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.hover\:mx-2\/6:hover{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.hover\:my-3\/6:hover{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.hover\:mx-3\/6:hover{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.hover\:my-4\/6:hover{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.hover\:mx-4\/6:hover{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.hover\:my-5\/6:hover{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.hover\:mx-5\/6:hover{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.hover\:my-1\/12:hover{
  margin-top     : 8.333333% !important;
  margin-bottom     : 8.333333% !important;
}

.hover\:mx-1\/12:hover{
  margin-left     : 8.333333% !important;
  margin-right     : 8.333333% !important;
}

.hover\:my-2\/12:hover{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.hover\:mx-2\/12:hover{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.hover\:my-3\/12:hover{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.hover\:mx-3\/12:hover{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.hover\:my-4\/12:hover{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.hover\:mx-4\/12:hover{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.hover\:my-5\/12:hover{
  margin-top     : 41.666667% !important;
  margin-bottom     : 41.666667% !important;
}

.hover\:mx-5\/12:hover{
  margin-left     : 41.666667% !important;
  margin-right     : 41.666667% !important;
}

.hover\:my-6\/12:hover{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.hover\:mx-6\/12:hover{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.hover\:my-7\/12:hover{
  margin-top     : 58.333333% !important;
  margin-bottom     : 58.333333% !important;
}

.hover\:mx-7\/12:hover{
  margin-left     : 58.333333% !important;
  margin-right     : 58.333333% !important;
}

.hover\:my-8\/12:hover{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.hover\:mx-8\/12:hover{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.hover\:my-9\/12:hover{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.hover\:mx-9\/12:hover{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.hover\:my-10\/12:hover{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.hover\:mx-10\/12:hover{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.hover\:my-11\/12:hover{
  margin-top     : 91.666667% !important;
  margin-bottom     : 91.666667% !important;
}

.hover\:mx-11\/12:hover{
  margin-left     : 91.666667% !important;
  margin-right     : 91.666667% !important;
}

.hover\:my-full:hover{
  margin-top     : 100% !important;
  margin-bottom     : 100% !important;
}

.hover\:mx-full:hover{
  margin-left     : 100% !important;
  margin-right     : 100% !important;
}

.hover\:-my-1:hover{
  margin-top     : -0.25rem !important;
  margin-bottom     : -0.25rem !important;
}

.hover\:-mx-1:hover{
  margin-left     : -0.25rem !important;
  margin-right     : -0.25rem !important;
}

.hover\:-my-2:hover{
  margin-top     : -0.5rem !important;
  margin-bottom     : -0.5rem !important;
}

.hover\:-mx-2:hover{
  margin-left     : -0.5rem !important;
  margin-right     : -0.5rem !important;
}

.hover\:-my-3:hover{
  margin-top     : -0.75rem !important;
  margin-bottom     : -0.75rem !important;
}

.hover\:-mx-3:hover{
  margin-left     : -0.75rem !important;
  margin-right     : -0.75rem !important;
}

.hover\:-my-4:hover{
  margin-top     : -1rem !important;
  margin-bottom     : -1rem !important;
}

.hover\:-mx-4:hover{
  margin-left     : -1rem !important;
  margin-right     : -1rem !important;
}

.hover\:-my-5:hover{
  margin-top     : -1.25rem !important;
  margin-bottom     : -1.25rem !important;
}

.hover\:-mx-5:hover{
  margin-left     : -1.25rem !important;
  margin-right     : -1.25rem !important;
}

.hover\:-my-6:hover{
  margin-top     : -1.5rem !important;
  margin-bottom     : -1.5rem !important;
}

.hover\:-mx-6:hover{
  margin-left     : -1.5rem !important;
  margin-right     : -1.5rem !important;
}

.hover\:-my-7:hover{
  margin-top     : -1.75rem !important;
  margin-bottom     : -1.75rem !important;
}

.hover\:-mx-7:hover{
  margin-left     : -1.75rem !important;
  margin-right     : -1.75rem !important;
}

.hover\:-my-8:hover{
  margin-top     : -2rem !important;
  margin-bottom     : -2rem !important;
}

.hover\:-mx-8:hover{
  margin-left     : -2rem !important;
  margin-right     : -2rem !important;
}

.hover\:-my-9:hover{
  margin-top     : -2.25rem !important;
  margin-bottom     : -2.25rem !important;
}

.hover\:-mx-9:hover{
  margin-left     : -2.25rem !important;
  margin-right     : -2.25rem !important;
}

.hover\:-my-10:hover{
  margin-top     : -2.5rem !important;
  margin-bottom     : -2.5rem !important;
}

.hover\:-mx-10:hover{
  margin-left     : -2.5rem !important;
  margin-right     : -2.5rem !important;
}

.hover\:-my-11:hover{
  margin-top     : -2.75rem !important;
  margin-bottom     : -2.75rem !important;
}

.hover\:-mx-11:hover{
  margin-left     : -2.75rem !important;
  margin-right     : -2.75rem !important;
}

.hover\:-my-12:hover{
  margin-top     : -3rem !important;
  margin-bottom     : -3rem !important;
}

.hover\:-mx-12:hover{
  margin-left     : -3rem !important;
  margin-right     : -3rem !important;
}

.hover\:-my-13:hover{
  margin-top     : -3.25rem !important;
  margin-bottom     : -3.25rem !important;
}

.hover\:-mx-13:hover{
  margin-left     : -3.25rem !important;
  margin-right     : -3.25rem !important;
}

.hover\:-my-14:hover{
  margin-top     : -3.5rem !important;
  margin-bottom     : -3.5rem !important;
}

.hover\:-mx-14:hover{
  margin-left     : -3.5rem !important;
  margin-right     : -3.5rem !important;
}

.hover\:-my-15:hover{
  margin-top     : -3.75rem !important;
  margin-bottom     : -3.75rem !important;
}

.hover\:-mx-15:hover{
  margin-left     : -3.75rem !important;
  margin-right     : -3.75rem !important;
}

.hover\:-my-16:hover{
  margin-top     : -4rem !important;
  margin-bottom     : -4rem !important;
}

.hover\:-mx-16:hover{
  margin-left     : -4rem !important;
  margin-right     : -4rem !important;
}

.hover\:-my-20:hover{
  margin-top     : -5rem !important;
  margin-bottom     : -5rem !important;
}

.hover\:-mx-20:hover{
  margin-left     : -5rem !important;
  margin-right     : -5rem !important;
}

.hover\:-my-24:hover{
  margin-top     : -6rem !important;
  margin-bottom     : -6rem !important;
}

.hover\:-mx-24:hover{
  margin-left     : -6rem !important;
  margin-right     : -6rem !important;
}

.hover\:-my-28:hover{
  margin-top     : -7rem !important;
  margin-bottom     : -7rem !important;
}

.hover\:-mx-28:hover{
  margin-left     : -7rem !important;
  margin-right     : -7rem !important;
}

.hover\:-my-32:hover{
  margin-top     : -8rem !important;
  margin-bottom     : -8rem !important;
}

.hover\:-mx-32:hover{
  margin-left     : -8rem !important;
  margin-right     : -8rem !important;
}

.hover\:-my-36:hover{
  margin-top     : -9rem !important;
  margin-bottom     : -9rem !important;
}

.hover\:-mx-36:hover{
  margin-left     : -9rem !important;
  margin-right     : -9rem !important;
}

.hover\:-my-40:hover{
  margin-top     : -10rem !important;
  margin-bottom     : -10rem !important;
}

.hover\:-mx-40:hover{
  margin-left     : -10rem !important;
  margin-right     : -10rem !important;
}

.hover\:-my-44:hover{
  margin-top     : -11rem !important;
  margin-bottom     : -11rem !important;
}

.hover\:-mx-44:hover{
  margin-left     : -11rem !important;
  margin-right     : -11rem !important;
}

.hover\:-my-48:hover{
  margin-top     : -12rem !important;
  margin-bottom     : -12rem !important;
}

.hover\:-mx-48:hover{
  margin-left     : -12rem !important;
  margin-right     : -12rem !important;
}

.hover\:-my-52:hover{
  margin-top     : -13rem !important;
  margin-bottom     : -13rem !important;
}

.hover\:-mx-52:hover{
  margin-left     : -13rem !important;
  margin-right     : -13rem !important;
}

.hover\:-my-56:hover{
  margin-top     : -14rem !important;
  margin-bottom     : -14rem !important;
}

.hover\:-mx-56:hover{
  margin-left     : -14rem !important;
  margin-right     : -14rem !important;
}

.hover\:-my-60:hover{
  margin-top     : -15rem !important;
  margin-bottom     : -15rem !important;
}

.hover\:-mx-60:hover{
  margin-left     : -15rem !important;
  margin-right     : -15rem !important;
}

.hover\:-my-64:hover{
  margin-top     : -16rem !important;
  margin-bottom     : -16rem !important;
}

.hover\:-mx-64:hover{
  margin-left     : -16rem !important;
  margin-right     : -16rem !important;
}

.hover\:-my-72:hover{
  margin-top     : -18rem !important;
  margin-bottom     : -18rem !important;
}

.hover\:-mx-72:hover{
  margin-left     : -18rem !important;
  margin-right     : -18rem !important;
}

.hover\:-my-80:hover{
  margin-top     : -20rem !important;
  margin-bottom     : -20rem !important;
}

.hover\:-mx-80:hover{
  margin-left     : -20rem !important;
  margin-right     : -20rem !important;
}

.hover\:-my-96:hover{
  margin-top     : -24rem !important;
  margin-bottom     : -24rem !important;
}

.hover\:-mx-96:hover{
  margin-left     : -24rem !important;
  margin-right     : -24rem !important;
}

.hover\:-my-px:hover{
  margin-top     : -1px !important;
  margin-bottom     : -1px !important;
}

.hover\:-mx-px:hover{
  margin-left     : -1px !important;
  margin-right     : -1px !important;
}

.hover\:-my-0\.5:hover{
  margin-top     : -0.125rem !important;
  margin-bottom     : -0.125rem !important;
}

.hover\:-mx-0\.5:hover{
  margin-left     : -0.125rem !important;
  margin-right     : -0.125rem !important;
}

.hover\:-my-1\.5:hover{
  margin-top     : -0.375rem !important;
  margin-bottom     : -0.375rem !important;
}

.hover\:-mx-1\.5:hover{
  margin-left     : -0.375rem !important;
  margin-right     : -0.375rem !important;
}

.hover\:-my-2\.5:hover{
  margin-top     : -0.625rem !important;
  margin-bottom     : -0.625rem !important;
}

.hover\:-mx-2\.5:hover{
  margin-left     : -0.625rem !important;
  margin-right     : -0.625rem !important;
}

.hover\:-my-3\.5:hover{
  margin-top     : -0.875rem !important;
  margin-bottom     : -0.875rem !important;
}

.hover\:-mx-3\.5:hover{
  margin-left     : -0.875rem !important;
  margin-right     : -0.875rem !important;
}

.hover\:-my-1\/2:hover{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.hover\:-mx-1\/2:hover{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.hover\:-my-1\/3:hover{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.hover\:-mx-1\/3:hover{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.hover\:-my-2\/3:hover{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.hover\:-mx-2\/3:hover{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.hover\:-my-1\/4:hover{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.hover\:-mx-1\/4:hover{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.hover\:-my-2\/4:hover{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.hover\:-mx-2\/4:hover{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.hover\:-my-3\/4:hover{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.hover\:-mx-3\/4:hover{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.hover\:-my-1\/5:hover{
  margin-top     : -20% !important;
  margin-bottom     : -20% !important;
}

.hover\:-mx-1\/5:hover{
  margin-left     : -20% !important;
  margin-right     : -20% !important;
}

.hover\:-my-2\/5:hover{
  margin-top     : -40% !important;
  margin-bottom     : -40% !important;
}

.hover\:-mx-2\/5:hover{
  margin-left     : -40% !important;
  margin-right     : -40% !important;
}

.hover\:-my-3\/5:hover{
  margin-top     : -60% !important;
  margin-bottom     : -60% !important;
}

.hover\:-mx-3\/5:hover{
  margin-left     : -60% !important;
  margin-right     : -60% !important;
}

.hover\:-my-4\/5:hover{
  margin-top     : -80% !important;
  margin-bottom     : -80% !important;
}

.hover\:-mx-4\/5:hover{
  margin-left     : -80% !important;
  margin-right     : -80% !important;
}

.hover\:-my-1\/6:hover{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.hover\:-mx-1\/6:hover{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.hover\:-my-2\/6:hover{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.hover\:-mx-2\/6:hover{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.hover\:-my-3\/6:hover{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.hover\:-mx-3\/6:hover{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.hover\:-my-4\/6:hover{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.hover\:-mx-4\/6:hover{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.hover\:-my-5\/6:hover{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.hover\:-mx-5\/6:hover{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.hover\:-my-1\/12:hover{
  margin-top     : -8.33333% !important;
  margin-bottom     : -8.33333% !important;
}

.hover\:-mx-1\/12:hover{
  margin-left     : -8.33333% !important;
  margin-right     : -8.33333% !important;
}

.hover\:-my-2\/12:hover{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.hover\:-mx-2\/12:hover{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.hover\:-my-3\/12:hover{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.hover\:-mx-3\/12:hover{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.hover\:-my-4\/12:hover{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.hover\:-mx-4\/12:hover{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.hover\:-my-5\/12:hover{
  margin-top     : -41.66667% !important;
  margin-bottom     : -41.66667% !important;
}

.hover\:-mx-5\/12:hover{
  margin-left     : -41.66667% !important;
  margin-right     : -41.66667% !important;
}

.hover\:-my-6\/12:hover{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.hover\:-mx-6\/12:hover{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.hover\:-my-7\/12:hover{
  margin-top     : -58.33333% !important;
  margin-bottom     : -58.33333% !important;
}

.hover\:-mx-7\/12:hover{
  margin-left     : -58.33333% !important;
  margin-right     : -58.33333% !important;
}

.hover\:-my-8\/12:hover{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.hover\:-mx-8\/12:hover{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.hover\:-my-9\/12:hover{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.hover\:-mx-9\/12:hover{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.hover\:-my-10\/12:hover{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.hover\:-mx-10\/12:hover{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.hover\:-my-11\/12:hover{
  margin-top     : -91.66667% !important;
  margin-bottom     : -91.66667% !important;
}

.hover\:-mx-11\/12:hover{
  margin-left     : -91.66667% !important;
  margin-right     : -91.66667% !important;
}

.hover\:-my-full:hover{
  margin-top     : -100% !important;
  margin-bottom     : -100% !important;
}

.hover\:-mx-full:hover{
  margin-left     : -100% !important;
  margin-right     : -100% !important;
}

.hover\:mt-0:hover{
  margin-top     : 0 !important;
}

.hover\:mr-0:hover{
  margin-right     : 0 !important;
}

.hover\:mb-0:hover{
  margin-bottom     : 0 !important;
}

.hover\:ml-0:hover{
  margin-left     : 0 !important;
}

.hover\:mt-1:hover{
  margin-top     : 0.25rem !important;
}

.hover\:mr-1:hover{
  margin-right     : 0.25rem !important;
}

.hover\:mb-1:hover{
  margin-bottom     : 0.25rem !important;
}

.hover\:ml-1:hover{
  margin-left     : 0.25rem !important;
}

.hover\:mt-2:hover{
  margin-top     : 0.5rem !important;
}

.hover\:mr-2:hover{
  margin-right     : 0.5rem !important;
}

.hover\:mb-2:hover{
  margin-bottom     : 0.5rem !important;
}

.hover\:ml-2:hover{
  margin-left     : 0.5rem !important;
}

.hover\:mt-3:hover{
  margin-top     : 0.75rem !important;
}

.hover\:mr-3:hover{
  margin-right     : 0.75rem !important;
}

.hover\:mb-3:hover{
  margin-bottom     : 0.75rem !important;
}

.hover\:ml-3:hover{
  margin-left     : 0.75rem !important;
}

.hover\:mt-4:hover{
  margin-top     : 1rem !important;
}

.hover\:mr-4:hover{
  margin-right     : 1rem !important;
}

.hover\:mb-4:hover{
  margin-bottom     : 1rem !important;
}

.hover\:ml-4:hover{
  margin-left     : 1rem !important;
}

.hover\:mt-5:hover{
  margin-top     : 1.25rem !important;
}

.hover\:mr-5:hover{
  margin-right     : 1.25rem !important;
}

.hover\:mb-5:hover{
  margin-bottom     : 1.25rem !important;
}

.hover\:ml-5:hover{
  margin-left     : 1.25rem !important;
}

.hover\:mt-6:hover{
  margin-top     : 1.5rem !important;
}

.hover\:mr-6:hover{
  margin-right     : 1.5rem !important;
}

.hover\:mb-6:hover{
  margin-bottom     : 1.5rem !important;
}

.hover\:ml-6:hover{
  margin-left     : 1.5rem !important;
}

.hover\:mt-7:hover{
  margin-top     : 1.75rem !important;
}

.hover\:mr-7:hover{
  margin-right     : 1.75rem !important;
}

.hover\:mb-7:hover{
  margin-bottom     : 1.75rem !important;
}

.hover\:ml-7:hover{
  margin-left     : 1.75rem !important;
}

.hover\:mt-8:hover{
  margin-top     : 2rem !important;
}

.hover\:mr-8:hover{
  margin-right     : 2rem !important;
}

.hover\:mb-8:hover{
  margin-bottom     : 2rem !important;
}

.hover\:ml-8:hover{
  margin-left     : 2rem !important;
}

.hover\:mt-9:hover{
  margin-top     : 2.25rem !important;
}

.hover\:mr-9:hover{
  margin-right     : 2.25rem !important;
}

.hover\:mb-9:hover{
  margin-bottom     : 2.25rem !important;
}

.hover\:ml-9:hover{
  margin-left     : 2.25rem !important;
}

.hover\:mt-10:hover{
  margin-top     : 2.5rem !important;
}

.hover\:mr-10:hover{
  margin-right     : 2.5rem !important;
}

.hover\:mb-10:hover{
  margin-bottom     : 2.5rem !important;
}

.hover\:ml-10:hover{
  margin-left     : 2.5rem !important;
}

.hover\:mt-11:hover{
  margin-top     : 2.75rem !important;
}

.hover\:mr-11:hover{
  margin-right     : 2.75rem !important;
}

.hover\:mb-11:hover{
  margin-bottom     : 2.75rem !important;
}

.hover\:ml-11:hover{
  margin-left     : 2.75rem !important;
}

.hover\:mt-12:hover{
  margin-top     : 3rem !important;
}

.hover\:mr-12:hover{
  margin-right     : 3rem !important;
}

.hover\:mb-12:hover{
  margin-bottom     : 3rem !important;
}

.hover\:ml-12:hover{
  margin-left     : 3rem !important;
}

.hover\:mt-13:hover{
  margin-top     : 3.25rem !important;
}

.hover\:mr-13:hover{
  margin-right     : 3.25rem !important;
}

.hover\:mb-13:hover{
  margin-bottom     : 3.25rem !important;
}

.hover\:ml-13:hover{
  margin-left     : 3.25rem !important;
}

.hover\:mt-14:hover{
  margin-top     : 3.5rem !important;
}

.hover\:mr-14:hover{
  margin-right     : 3.5rem !important;
}

.hover\:mb-14:hover{
  margin-bottom     : 3.5rem !important;
}

.hover\:ml-14:hover{
  margin-left     : 3.5rem !important;
}

.hover\:mt-15:hover{
  margin-top     : 3.75rem !important;
}

.hover\:mr-15:hover{
  margin-right     : 3.75rem !important;
}

.hover\:mb-15:hover{
  margin-bottom     : 3.75rem !important;
}

.hover\:ml-15:hover{
  margin-left     : 3.75rem !important;
}

.hover\:mt-16:hover{
  margin-top     : 4rem !important;
}

.hover\:mr-16:hover{
  margin-right     : 4rem !important;
}

.hover\:mb-16:hover{
  margin-bottom     : 4rem !important;
}

.hover\:ml-16:hover{
  margin-left     : 4rem !important;
}

.hover\:mt-20:hover{
  margin-top     : 5rem !important;
}

.hover\:mr-20:hover{
  margin-right     : 5rem !important;
}

.hover\:mb-20:hover{
  margin-bottom     : 5rem !important;
}

.hover\:ml-20:hover{
  margin-left     : 5rem !important;
}

.hover\:mt-24:hover{
  margin-top     : 6rem !important;
}

.hover\:mr-24:hover{
  margin-right     : 6rem !important;
}

.hover\:mb-24:hover{
  margin-bottom     : 6rem !important;
}

.hover\:ml-24:hover{
  margin-left     : 6rem !important;
}

.hover\:mt-28:hover{
  margin-top     : 7rem !important;
}

.hover\:mr-28:hover{
  margin-right     : 7rem !important;
}

.hover\:mb-28:hover{
  margin-bottom     : 7rem !important;
}

.hover\:ml-28:hover{
  margin-left     : 7rem !important;
}

.hover\:mt-32:hover{
  margin-top     : 8rem !important;
}

.hover\:mr-32:hover{
  margin-right     : 8rem !important;
}

.hover\:mb-32:hover{
  margin-bottom     : 8rem !important;
}

.hover\:ml-32:hover{
  margin-left     : 8rem !important;
}

.hover\:mt-36:hover{
  margin-top     : 9rem !important;
}

.hover\:mr-36:hover{
  margin-right     : 9rem !important;
}

.hover\:mb-36:hover{
  margin-bottom     : 9rem !important;
}

.hover\:ml-36:hover{
  margin-left     : 9rem !important;
}

.hover\:mt-40:hover{
  margin-top     : 10rem !important;
}

.hover\:mr-40:hover{
  margin-right     : 10rem !important;
}

.hover\:mb-40:hover{
  margin-bottom     : 10rem !important;
}

.hover\:ml-40:hover{
  margin-left     : 10rem !important;
}

.hover\:mt-44:hover{
  margin-top     : 11rem !important;
}

.hover\:mr-44:hover{
  margin-right     : 11rem !important;
}

.hover\:mb-44:hover{
  margin-bottom     : 11rem !important;
}

.hover\:ml-44:hover{
  margin-left     : 11rem !important;
}

.hover\:mt-48:hover{
  margin-top     : 12rem !important;
}

.hover\:mr-48:hover{
  margin-right     : 12rem !important;
}

.hover\:mb-48:hover{
  margin-bottom     : 12rem !important;
}

.hover\:ml-48:hover{
  margin-left     : 12rem !important;
}

.hover\:mt-52:hover{
  margin-top     : 13rem !important;
}

.hover\:mr-52:hover{
  margin-right     : 13rem !important;
}

.hover\:mb-52:hover{
  margin-bottom     : 13rem !important;
}

.hover\:ml-52:hover{
  margin-left     : 13rem !important;
}

.hover\:mt-56:hover{
  margin-top     : 14rem !important;
}

.hover\:mr-56:hover{
  margin-right     : 14rem !important;
}

.hover\:mb-56:hover{
  margin-bottom     : 14rem !important;
}

.hover\:ml-56:hover{
  margin-left     : 14rem !important;
}

.hover\:mt-60:hover{
  margin-top     : 15rem !important;
}

.hover\:mr-60:hover{
  margin-right     : 15rem !important;
}

.hover\:mb-60:hover{
  margin-bottom     : 15rem !important;
}

.hover\:ml-60:hover{
  margin-left     : 15rem !important;
}

.hover\:mt-64:hover{
  margin-top     : 16rem !important;
}

.hover\:mr-64:hover{
  margin-right     : 16rem !important;
}

.hover\:mb-64:hover{
  margin-bottom     : 16rem !important;
}

.hover\:ml-64:hover{
  margin-left     : 16rem !important;
}

.hover\:mt-72:hover{
  margin-top     : 18rem !important;
}

.hover\:mr-72:hover{
  margin-right     : 18rem !important;
}

.hover\:mb-72:hover{
  margin-bottom     : 18rem !important;
}

.hover\:ml-72:hover{
  margin-left     : 18rem !important;
}

.hover\:mt-80:hover{
  margin-top     : 20rem !important;
}

.hover\:mr-80:hover{
  margin-right     : 20rem !important;
}

.hover\:mb-80:hover{
  margin-bottom     : 20rem !important;
}

.hover\:ml-80:hover{
  margin-left     : 20rem !important;
}

.hover\:mt-96:hover{
  margin-top     : 24rem !important;
}

.hover\:mr-96:hover{
  margin-right     : 24rem !important;
}

.hover\:mb-96:hover{
  margin-bottom     : 24rem !important;
}

.hover\:ml-96:hover{
  margin-left     : 24rem !important;
}

.hover\:mt-auto:hover{
  margin-top     : auto !important;
}

.hover\:mr-auto:hover{
  margin-right     : auto !important;
}

.hover\:mb-auto:hover{
  margin-bottom     : auto !important;
}

.hover\:ml-auto:hover{
  margin-left     : auto !important;
}

.hover\:mt-px:hover{
  margin-top     : 1px !important;
}

.hover\:mr-px:hover{
  margin-right     : 1px !important;
}

.hover\:mb-px:hover{
  margin-bottom     : 1px !important;
}

.hover\:ml-px:hover{
  margin-left     : 1px !important;
}

.hover\:mt-0\.5:hover{
  margin-top     : 0.125rem !important;
}

.hover\:mr-0\.5:hover{
  margin-right     : 0.125rem !important;
}

.hover\:mb-0\.5:hover{
  margin-bottom     : 0.125rem !important;
}

.hover\:ml-0\.5:hover{
  margin-left     : 0.125rem !important;
}

.hover\:mt-1\.5:hover{
  margin-top     : 0.375rem !important;
}

.hover\:mr-1\.5:hover{
  margin-right     : 0.375rem !important;
}

.hover\:mb-1\.5:hover{
  margin-bottom     : 0.375rem !important;
}

.hover\:ml-1\.5:hover{
  margin-left     : 0.375rem !important;
}

.hover\:mt-2\.5:hover{
  margin-top     : 0.625rem !important;
}

.hover\:mr-2\.5:hover{
  margin-right     : 0.625rem !important;
}

.hover\:mb-2\.5:hover{
  margin-bottom     : 0.625rem !important;
}

.hover\:ml-2\.5:hover{
  margin-left     : 0.625rem !important;
}

.hover\:mt-3\.5:hover{
  margin-top     : 0.875rem !important;
}

.hover\:mr-3\.5:hover{
  margin-right     : 0.875rem !important;
}

.hover\:mb-3\.5:hover{
  margin-bottom     : 0.875rem !important;
}

.hover\:ml-3\.5:hover{
  margin-left     : 0.875rem !important;
}

.hover\:mt-1\/2:hover{
  margin-top     : 50% !important;
}

.hover\:mr-1\/2:hover{
  margin-right     : 50% !important;
}

.hover\:mb-1\/2:hover{
  margin-bottom     : 50% !important;
}

.hover\:ml-1\/2:hover{
  margin-left     : 50% !important;
}

.hover\:mt-1\/3:hover{
  margin-top     : 33.333333% !important;
}

.hover\:mr-1\/3:hover{
  margin-right     : 33.333333% !important;
}

.hover\:mb-1\/3:hover{
  margin-bottom     : 33.333333% !important;
}

.hover\:ml-1\/3:hover{
  margin-left     : 33.333333% !important;
}

.hover\:mt-2\/3:hover{
  margin-top     : 66.666667% !important;
}

.hover\:mr-2\/3:hover{
  margin-right     : 66.666667% !important;
}

.hover\:mb-2\/3:hover{
  margin-bottom     : 66.666667% !important;
}

.hover\:ml-2\/3:hover{
  margin-left     : 66.666667% !important;
}

.hover\:mt-1\/4:hover{
  margin-top     : 25% !important;
}

.hover\:mr-1\/4:hover{
  margin-right     : 25% !important;
}

.hover\:mb-1\/4:hover{
  margin-bottom     : 25% !important;
}

.hover\:ml-1\/4:hover{
  margin-left     : 25% !important;
}

.hover\:mt-2\/4:hover{
  margin-top     : 50% !important;
}

.hover\:mr-2\/4:hover{
  margin-right     : 50% !important;
}

.hover\:mb-2\/4:hover{
  margin-bottom     : 50% !important;
}

.hover\:ml-2\/4:hover{
  margin-left     : 50% !important;
}

.hover\:mt-3\/4:hover{
  margin-top     : 75% !important;
}

.hover\:mr-3\/4:hover{
  margin-right     : 75% !important;
}

.hover\:mb-3\/4:hover{
  margin-bottom     : 75% !important;
}

.hover\:ml-3\/4:hover{
  margin-left     : 75% !important;
}

.hover\:mt-1\/5:hover{
  margin-top     : 20% !important;
}

.hover\:mr-1\/5:hover{
  margin-right     : 20% !important;
}

.hover\:mb-1\/5:hover{
  margin-bottom     : 20% !important;
}

.hover\:ml-1\/5:hover{
  margin-left     : 20% !important;
}

.hover\:mt-2\/5:hover{
  margin-top     : 40% !important;
}

.hover\:mr-2\/5:hover{
  margin-right     : 40% !important;
}

.hover\:mb-2\/5:hover{
  margin-bottom     : 40% !important;
}

.hover\:ml-2\/5:hover{
  margin-left     : 40% !important;
}

.hover\:mt-3\/5:hover{
  margin-top     : 60% !important;
}

.hover\:mr-3\/5:hover{
  margin-right     : 60% !important;
}

.hover\:mb-3\/5:hover{
  margin-bottom     : 60% !important;
}

.hover\:ml-3\/5:hover{
  margin-left     : 60% !important;
}

.hover\:mt-4\/5:hover{
  margin-top     : 80% !important;
}

.hover\:mr-4\/5:hover{
  margin-right     : 80% !important;
}

.hover\:mb-4\/5:hover{
  margin-bottom     : 80% !important;
}

.hover\:ml-4\/5:hover{
  margin-left     : 80% !important;
}

.hover\:mt-1\/6:hover{
  margin-top     : 16.666667% !important;
}

.hover\:mr-1\/6:hover{
  margin-right     : 16.666667% !important;
}

.hover\:mb-1\/6:hover{
  margin-bottom     : 16.666667% !important;
}

.hover\:ml-1\/6:hover{
  margin-left     : 16.666667% !important;
}

.hover\:mt-2\/6:hover{
  margin-top     : 33.333333% !important;
}

.hover\:mr-2\/6:hover{
  margin-right     : 33.333333% !important;
}

.hover\:mb-2\/6:hover{
  margin-bottom     : 33.333333% !important;
}

.hover\:ml-2\/6:hover{
  margin-left     : 33.333333% !important;
}

.hover\:mt-3\/6:hover{
  margin-top     : 50% !important;
}

.hover\:mr-3\/6:hover{
  margin-right     : 50% !important;
}

.hover\:mb-3\/6:hover{
  margin-bottom     : 50% !important;
}

.hover\:ml-3\/6:hover{
  margin-left     : 50% !important;
}

.hover\:mt-4\/6:hover{
  margin-top     : 66.666667% !important;
}

.hover\:mr-4\/6:hover{
  margin-right     : 66.666667% !important;
}

.hover\:mb-4\/6:hover{
  margin-bottom     : 66.666667% !important;
}

.hover\:ml-4\/6:hover{
  margin-left     : 66.666667% !important;
}

.hover\:mt-5\/6:hover{
  margin-top     : 83.333333% !important;
}

.hover\:mr-5\/6:hover{
  margin-right     : 83.333333% !important;
}

.hover\:mb-5\/6:hover{
  margin-bottom     : 83.333333% !important;
}

.hover\:ml-5\/6:hover{
  margin-left     : 83.333333% !important;
}

.hover\:mt-1\/12:hover{
  margin-top     : 8.333333% !important;
}

.hover\:mr-1\/12:hover{
  margin-right     : 8.333333% !important;
}

.hover\:mb-1\/12:hover{
  margin-bottom     : 8.333333% !important;
}

.hover\:ml-1\/12:hover{
  margin-left     : 8.333333% !important;
}

.hover\:mt-2\/12:hover{
  margin-top     : 16.666667% !important;
}

.hover\:mr-2\/12:hover{
  margin-right     : 16.666667% !important;
}

.hover\:mb-2\/12:hover{
  margin-bottom     : 16.666667% !important;
}

.hover\:ml-2\/12:hover{
  margin-left     : 16.666667% !important;
}

.hover\:mt-3\/12:hover{
  margin-top     : 25% !important;
}

.hover\:mr-3\/12:hover{
  margin-right     : 25% !important;
}

.hover\:mb-3\/12:hover{
  margin-bottom     : 25% !important;
}

.hover\:ml-3\/12:hover{
  margin-left     : 25% !important;
}

.hover\:mt-4\/12:hover{
  margin-top     : 33.333333% !important;
}

.hover\:mr-4\/12:hover{
  margin-right     : 33.333333% !important;
}

.hover\:mb-4\/12:hover{
  margin-bottom     : 33.333333% !important;
}

.hover\:ml-4\/12:hover{
  margin-left     : 33.333333% !important;
}

.hover\:mt-5\/12:hover{
  margin-top     : 41.666667% !important;
}

.hover\:mr-5\/12:hover{
  margin-right     : 41.666667% !important;
}

.hover\:mb-5\/12:hover{
  margin-bottom     : 41.666667% !important;
}

.hover\:ml-5\/12:hover{
  margin-left     : 41.666667% !important;
}

.hover\:mt-6\/12:hover{
  margin-top     : 50% !important;
}

.hover\:mr-6\/12:hover{
  margin-right     : 50% !important;
}

.hover\:mb-6\/12:hover{
  margin-bottom     : 50% !important;
}

.hover\:ml-6\/12:hover{
  margin-left     : 50% !important;
}

.hover\:mt-7\/12:hover{
  margin-top     : 58.333333% !important;
}

.hover\:mr-7\/12:hover{
  margin-right     : 58.333333% !important;
}

.hover\:mb-7\/12:hover{
  margin-bottom     : 58.333333% !important;
}

.hover\:ml-7\/12:hover{
  margin-left     : 58.333333% !important;
}

.hover\:mt-8\/12:hover{
  margin-top     : 66.666667% !important;
}

.hover\:mr-8\/12:hover{
  margin-right     : 66.666667% !important;
}

.hover\:mb-8\/12:hover{
  margin-bottom     : 66.666667% !important;
}

.hover\:ml-8\/12:hover{
  margin-left     : 66.666667% !important;
}

.hover\:mt-9\/12:hover{
  margin-top     : 75% !important;
}

.hover\:mr-9\/12:hover{
  margin-right     : 75% !important;
}

.hover\:mb-9\/12:hover{
  margin-bottom     : 75% !important;
}

.hover\:ml-9\/12:hover{
  margin-left     : 75% !important;
}

.hover\:mt-10\/12:hover{
  margin-top     : 83.333333% !important;
}

.hover\:mr-10\/12:hover{
  margin-right     : 83.333333% !important;
}

.hover\:mb-10\/12:hover{
  margin-bottom     : 83.333333% !important;
}

.hover\:ml-10\/12:hover{
  margin-left     : 83.333333% !important;
}

.hover\:mt-11\/12:hover{
  margin-top     : 91.666667% !important;
}

.hover\:mr-11\/12:hover{
  margin-right     : 91.666667% !important;
}

.hover\:mb-11\/12:hover{
  margin-bottom     : 91.666667% !important;
}

.hover\:ml-11\/12:hover{
  margin-left     : 91.666667% !important;
}

.hover\:mt-full:hover{
  margin-top     : 100% !important;
}

.hover\:mr-full:hover{
  margin-right     : 100% !important;
}

.hover\:mb-full:hover{
  margin-bottom     : 100% !important;
}

.hover\:ml-full:hover{
  margin-left     : 100% !important;
}

.hover\:-mt-1:hover{
  margin-top     : -0.25rem !important;
}

.hover\:-mr-1:hover{
  margin-right     : -0.25rem !important;
}

.hover\:-mb-1:hover{
  margin-bottom     : -0.25rem !important;
}

.hover\:-ml-1:hover{
  margin-left     : -0.25rem !important;
}

.hover\:-mt-2:hover{
  margin-top     : -0.5rem !important;
}

.hover\:-mr-2:hover{
  margin-right     : -0.5rem !important;
}

.hover\:-mb-2:hover{
  margin-bottom     : -0.5rem !important;
}

.hover\:-ml-2:hover{
  margin-left     : -0.5rem !important;
}

.hover\:-mt-3:hover{
  margin-top     : -0.75rem !important;
}

.hover\:-mr-3:hover{
  margin-right     : -0.75rem !important;
}

.hover\:-mb-3:hover{
  margin-bottom     : -0.75rem !important;
}

.hover\:-ml-3:hover{
  margin-left     : -0.75rem !important;
}

.hover\:-mt-4:hover{
  margin-top     : -1rem !important;
}

.hover\:-mr-4:hover{
  margin-right     : -1rem !important;
}

.hover\:-mb-4:hover{
  margin-bottom     : -1rem !important;
}

.hover\:-ml-4:hover{
  margin-left     : -1rem !important;
}

.hover\:-mt-5:hover{
  margin-top     : -1.25rem !important;
}

.hover\:-mr-5:hover{
  margin-right     : -1.25rem !important;
}

.hover\:-mb-5:hover{
  margin-bottom     : -1.25rem !important;
}

.hover\:-ml-5:hover{
  margin-left     : -1.25rem !important;
}

.hover\:-mt-6:hover{
  margin-top     : -1.5rem !important;
}

.hover\:-mr-6:hover{
  margin-right     : -1.5rem !important;
}

.hover\:-mb-6:hover{
  margin-bottom     : -1.5rem !important;
}

.hover\:-ml-6:hover{
  margin-left     : -1.5rem !important;
}

.hover\:-mt-7:hover{
  margin-top     : -1.75rem !important;
}

.hover\:-mr-7:hover{
  margin-right     : -1.75rem !important;
}

.hover\:-mb-7:hover{
  margin-bottom     : -1.75rem !important;
}

.hover\:-ml-7:hover{
  margin-left     : -1.75rem !important;
}

.hover\:-mt-8:hover{
  margin-top     : -2rem !important;
}

.hover\:-mr-8:hover{
  margin-right     : -2rem !important;
}

.hover\:-mb-8:hover{
  margin-bottom     : -2rem !important;
}

.hover\:-ml-8:hover{
  margin-left     : -2rem !important;
}

.hover\:-mt-9:hover{
  margin-top     : -2.25rem !important;
}

.hover\:-mr-9:hover{
  margin-right     : -2.25rem !important;
}

.hover\:-mb-9:hover{
  margin-bottom     : -2.25rem !important;
}

.hover\:-ml-9:hover{
  margin-left     : -2.25rem !important;
}

.hover\:-mt-10:hover{
  margin-top     : -2.5rem !important;
}

.hover\:-mr-10:hover{
  margin-right     : -2.5rem !important;
}

.hover\:-mb-10:hover{
  margin-bottom     : -2.5rem !important;
}

.hover\:-ml-10:hover{
  margin-left     : -2.5rem !important;
}

.hover\:-mt-11:hover{
  margin-top     : -2.75rem !important;
}

.hover\:-mr-11:hover{
  margin-right     : -2.75rem !important;
}

.hover\:-mb-11:hover{
  margin-bottom     : -2.75rem !important;
}

.hover\:-ml-11:hover{
  margin-left     : -2.75rem !important;
}

.hover\:-mt-12:hover{
  margin-top     : -3rem !important;
}

.hover\:-mr-12:hover{
  margin-right     : -3rem !important;
}

.hover\:-mb-12:hover{
  margin-bottom     : -3rem !important;
}

.hover\:-ml-12:hover{
  margin-left     : -3rem !important;
}

.hover\:-mt-13:hover{
  margin-top     : -3.25rem !important;
}

.hover\:-mr-13:hover{
  margin-right     : -3.25rem !important;
}

.hover\:-mb-13:hover{
  margin-bottom     : -3.25rem !important;
}

.hover\:-ml-13:hover{
  margin-left     : -3.25rem !important;
}

.hover\:-mt-14:hover{
  margin-top     : -3.5rem !important;
}

.hover\:-mr-14:hover{
  margin-right     : -3.5rem !important;
}

.hover\:-mb-14:hover{
  margin-bottom     : -3.5rem !important;
}

.hover\:-ml-14:hover{
  margin-left     : -3.5rem !important;
}

.hover\:-mt-15:hover{
  margin-top     : -3.75rem !important;
}

.hover\:-mr-15:hover{
  margin-right     : -3.75rem !important;
}

.hover\:-mb-15:hover{
  margin-bottom     : -3.75rem !important;
}

.hover\:-ml-15:hover{
  margin-left     : -3.75rem !important;
}

.hover\:-mt-16:hover{
  margin-top     : -4rem !important;
}

.hover\:-mr-16:hover{
  margin-right     : -4rem !important;
}

.hover\:-mb-16:hover{
  margin-bottom     : -4rem !important;
}

.hover\:-ml-16:hover{
  margin-left     : -4rem !important;
}

.hover\:-mt-20:hover{
  margin-top     : -5rem !important;
}

.hover\:-mr-20:hover{
  margin-right     : -5rem !important;
}

.hover\:-mb-20:hover{
  margin-bottom     : -5rem !important;
}

.hover\:-ml-20:hover{
  margin-left     : -5rem !important;
}

.hover\:-mt-24:hover{
  margin-top     : -6rem !important;
}

.hover\:-mr-24:hover{
  margin-right     : -6rem !important;
}

.hover\:-mb-24:hover{
  margin-bottom     : -6rem !important;
}

.hover\:-ml-24:hover{
  margin-left     : -6rem !important;
}

.hover\:-mt-28:hover{
  margin-top     : -7rem !important;
}

.hover\:-mr-28:hover{
  margin-right     : -7rem !important;
}

.hover\:-mb-28:hover{
  margin-bottom     : -7rem !important;
}

.hover\:-ml-28:hover{
  margin-left     : -7rem !important;
}

.hover\:-mt-32:hover{
  margin-top     : -8rem !important;
}

.hover\:-mr-32:hover{
  margin-right     : -8rem !important;
}

.hover\:-mb-32:hover{
  margin-bottom     : -8rem !important;
}

.hover\:-ml-32:hover{
  margin-left     : -8rem !important;
}

.hover\:-mt-36:hover{
  margin-top     : -9rem !important;
}

.hover\:-mr-36:hover{
  margin-right     : -9rem !important;
}

.hover\:-mb-36:hover{
  margin-bottom     : -9rem !important;
}

.hover\:-ml-36:hover{
  margin-left     : -9rem !important;
}

.hover\:-mt-40:hover{
  margin-top     : -10rem !important;
}

.hover\:-mr-40:hover{
  margin-right     : -10rem !important;
}

.hover\:-mb-40:hover{
  margin-bottom     : -10rem !important;
}

.hover\:-ml-40:hover{
  margin-left     : -10rem !important;
}

.hover\:-mt-44:hover{
  margin-top     : -11rem !important;
}

.hover\:-mr-44:hover{
  margin-right     : -11rem !important;
}

.hover\:-mb-44:hover{
  margin-bottom     : -11rem !important;
}

.hover\:-ml-44:hover{
  margin-left     : -11rem !important;
}

.hover\:-mt-48:hover{
  margin-top     : -12rem !important;
}

.hover\:-mr-48:hover{
  margin-right     : -12rem !important;
}

.hover\:-mb-48:hover{
  margin-bottom     : -12rem !important;
}

.hover\:-ml-48:hover{
  margin-left     : -12rem !important;
}

.hover\:-mt-52:hover{
  margin-top     : -13rem !important;
}

.hover\:-mr-52:hover{
  margin-right     : -13rem !important;
}

.hover\:-mb-52:hover{
  margin-bottom     : -13rem !important;
}

.hover\:-ml-52:hover{
  margin-left     : -13rem !important;
}

.hover\:-mt-56:hover{
  margin-top     : -14rem !important;
}

.hover\:-mr-56:hover{
  margin-right     : -14rem !important;
}

.hover\:-mb-56:hover{
  margin-bottom     : -14rem !important;
}

.hover\:-ml-56:hover{
  margin-left     : -14rem !important;
}

.hover\:-mt-60:hover{
  margin-top     : -15rem !important;
}

.hover\:-mr-60:hover{
  margin-right     : -15rem !important;
}

.hover\:-mb-60:hover{
  margin-bottom     : -15rem !important;
}

.hover\:-ml-60:hover{
  margin-left     : -15rem !important;
}

.hover\:-mt-64:hover{
  margin-top     : -16rem !important;
}

.hover\:-mr-64:hover{
  margin-right     : -16rem !important;
}

.hover\:-mb-64:hover{
  margin-bottom     : -16rem !important;
}

.hover\:-ml-64:hover{
  margin-left     : -16rem !important;
}

.hover\:-mt-72:hover{
  margin-top     : -18rem !important;
}

.hover\:-mr-72:hover{
  margin-right     : -18rem !important;
}

.hover\:-mb-72:hover{
  margin-bottom     : -18rem !important;
}

.hover\:-ml-72:hover{
  margin-left     : -18rem !important;
}

.hover\:-mt-80:hover{
  margin-top     : -20rem !important;
}

.hover\:-mr-80:hover{
  margin-right     : -20rem !important;
}

.hover\:-mb-80:hover{
  margin-bottom     : -20rem !important;
}

.hover\:-ml-80:hover{
  margin-left     : -20rem !important;
}

.hover\:-mt-96:hover{
  margin-top     : -24rem !important;
}

.hover\:-mr-96:hover{
  margin-right     : -24rem !important;
}

.hover\:-mb-96:hover{
  margin-bottom     : -24rem !important;
}

.hover\:-ml-96:hover{
  margin-left     : -24rem !important;
}

.hover\:-mt-px:hover{
  margin-top     : -1px !important;
}

.hover\:-mr-px:hover{
  margin-right     : -1px !important;
}

.hover\:-mb-px:hover{
  margin-bottom     : -1px !important;
}

.hover\:-ml-px:hover{
  margin-left     : -1px !important;
}

.hover\:-mt-0\.5:hover{
  margin-top     : -0.125rem !important;
}

.hover\:-mr-0\.5:hover{
  margin-right     : -0.125rem !important;
}

.hover\:-mb-0\.5:hover{
  margin-bottom     : -0.125rem !important;
}

.hover\:-ml-0\.5:hover{
  margin-left     : -0.125rem !important;
}

.hover\:-mt-1\.5:hover{
  margin-top     : -0.375rem !important;
}

.hover\:-mr-1\.5:hover{
  margin-right     : -0.375rem !important;
}

.hover\:-mb-1\.5:hover{
  margin-bottom     : -0.375rem !important;
}

.hover\:-ml-1\.5:hover{
  margin-left     : -0.375rem !important;
}

.hover\:-mt-2\.5:hover{
  margin-top     : -0.625rem !important;
}

.hover\:-mr-2\.5:hover{
  margin-right     : -0.625rem !important;
}

.hover\:-mb-2\.5:hover{
  margin-bottom     : -0.625rem !important;
}

.hover\:-ml-2\.5:hover{
  margin-left     : -0.625rem !important;
}

.hover\:-mt-3\.5:hover{
  margin-top     : -0.875rem !important;
}

.hover\:-mr-3\.5:hover{
  margin-right     : -0.875rem !important;
}

.hover\:-mb-3\.5:hover{
  margin-bottom     : -0.875rem !important;
}

.hover\:-ml-3\.5:hover{
  margin-left     : -0.875rem !important;
}

.hover\:-mt-1\/2:hover{
  margin-top     : -50% !important;
}

.hover\:-mr-1\/2:hover{
  margin-right     : -50% !important;
}

.hover\:-mb-1\/2:hover{
  margin-bottom     : -50% !important;
}

.hover\:-ml-1\/2:hover{
  margin-left     : -50% !important;
}

.hover\:-mt-1\/3:hover{
  margin-top     : -33.33333% !important;
}

.hover\:-mr-1\/3:hover{
  margin-right     : -33.33333% !important;
}

.hover\:-mb-1\/3:hover{
  margin-bottom     : -33.33333% !important;
}

.hover\:-ml-1\/3:hover{
  margin-left     : -33.33333% !important;
}

.hover\:-mt-2\/3:hover{
  margin-top     : -66.66667% !important;
}

.hover\:-mr-2\/3:hover{
  margin-right     : -66.66667% !important;
}

.hover\:-mb-2\/3:hover{
  margin-bottom     : -66.66667% !important;
}

.hover\:-ml-2\/3:hover{
  margin-left     : -66.66667% !important;
}

.hover\:-mt-1\/4:hover{
  margin-top     : -25% !important;
}

.hover\:-mr-1\/4:hover{
  margin-right     : -25% !important;
}

.hover\:-mb-1\/4:hover{
  margin-bottom     : -25% !important;
}

.hover\:-ml-1\/4:hover{
  margin-left     : -25% !important;
}

.hover\:-mt-2\/4:hover{
  margin-top     : -50% !important;
}

.hover\:-mr-2\/4:hover{
  margin-right     : -50% !important;
}

.hover\:-mb-2\/4:hover{
  margin-bottom     : -50% !important;
}

.hover\:-ml-2\/4:hover{
  margin-left     : -50% !important;
}

.hover\:-mt-3\/4:hover{
  margin-top     : -75% !important;
}

.hover\:-mr-3\/4:hover{
  margin-right     : -75% !important;
}

.hover\:-mb-3\/4:hover{
  margin-bottom     : -75% !important;
}

.hover\:-ml-3\/4:hover{
  margin-left     : -75% !important;
}

.hover\:-mt-1\/5:hover{
  margin-top     : -20% !important;
}

.hover\:-mr-1\/5:hover{
  margin-right     : -20% !important;
}

.hover\:-mb-1\/5:hover{
  margin-bottom     : -20% !important;
}

.hover\:-ml-1\/5:hover{
  margin-left     : -20% !important;
}

.hover\:-mt-2\/5:hover{
  margin-top     : -40% !important;
}

.hover\:-mr-2\/5:hover{
  margin-right     : -40% !important;
}

.hover\:-mb-2\/5:hover{
  margin-bottom     : -40% !important;
}

.hover\:-ml-2\/5:hover{
  margin-left     : -40% !important;
}

.hover\:-mt-3\/5:hover{
  margin-top     : -60% !important;
}

.hover\:-mr-3\/5:hover{
  margin-right     : -60% !important;
}

.hover\:-mb-3\/5:hover{
  margin-bottom     : -60% !important;
}

.hover\:-ml-3\/5:hover{
  margin-left     : -60% !important;
}

.hover\:-mt-4\/5:hover{
  margin-top     : -80% !important;
}

.hover\:-mr-4\/5:hover{
  margin-right     : -80% !important;
}

.hover\:-mb-4\/5:hover{
  margin-bottom     : -80% !important;
}

.hover\:-ml-4\/5:hover{
  margin-left     : -80% !important;
}

.hover\:-mt-1\/6:hover{
  margin-top     : -16.66667% !important;
}

.hover\:-mr-1\/6:hover{
  margin-right     : -16.66667% !important;
}

.hover\:-mb-1\/6:hover{
  margin-bottom     : -16.66667% !important;
}

.hover\:-ml-1\/6:hover{
  margin-left     : -16.66667% !important;
}

.hover\:-mt-2\/6:hover{
  margin-top     : -33.33333% !important;
}

.hover\:-mr-2\/6:hover{
  margin-right     : -33.33333% !important;
}

.hover\:-mb-2\/6:hover{
  margin-bottom     : -33.33333% !important;
}

.hover\:-ml-2\/6:hover{
  margin-left     : -33.33333% !important;
}

.hover\:-mt-3\/6:hover{
  margin-top     : -50% !important;
}

.hover\:-mr-3\/6:hover{
  margin-right     : -50% !important;
}

.hover\:-mb-3\/6:hover{
  margin-bottom     : -50% !important;
}

.hover\:-ml-3\/6:hover{
  margin-left     : -50% !important;
}

.hover\:-mt-4\/6:hover{
  margin-top     : -66.66667% !important;
}

.hover\:-mr-4\/6:hover{
  margin-right     : -66.66667% !important;
}

.hover\:-mb-4\/6:hover{
  margin-bottom     : -66.66667% !important;
}

.hover\:-ml-4\/6:hover{
  margin-left     : -66.66667% !important;
}

.hover\:-mt-5\/6:hover{
  margin-top     : -83.33333% !important;
}

.hover\:-mr-5\/6:hover{
  margin-right     : -83.33333% !important;
}

.hover\:-mb-5\/6:hover{
  margin-bottom     : -83.33333% !important;
}

.hover\:-ml-5\/6:hover{
  margin-left     : -83.33333% !important;
}

.hover\:-mt-1\/12:hover{
  margin-top     : -8.33333% !important;
}

.hover\:-mr-1\/12:hover{
  margin-right     : -8.33333% !important;
}

.hover\:-mb-1\/12:hover{
  margin-bottom     : -8.33333% !important;
}

.hover\:-ml-1\/12:hover{
  margin-left     : -8.33333% !important;
}

.hover\:-mt-2\/12:hover{
  margin-top     : -16.66667% !important;
}

.hover\:-mr-2\/12:hover{
  margin-right     : -16.66667% !important;
}

.hover\:-mb-2\/12:hover{
  margin-bottom     : -16.66667% !important;
}

.hover\:-ml-2\/12:hover{
  margin-left     : -16.66667% !important;
}

.hover\:-mt-3\/12:hover{
  margin-top     : -25% !important;
}

.hover\:-mr-3\/12:hover{
  margin-right     : -25% !important;
}

.hover\:-mb-3\/12:hover{
  margin-bottom     : -25% !important;
}

.hover\:-ml-3\/12:hover{
  margin-left     : -25% !important;
}

.hover\:-mt-4\/12:hover{
  margin-top     : -33.33333% !important;
}

.hover\:-mr-4\/12:hover{
  margin-right     : -33.33333% !important;
}

.hover\:-mb-4\/12:hover{
  margin-bottom     : -33.33333% !important;
}

.hover\:-ml-4\/12:hover{
  margin-left     : -33.33333% !important;
}

.hover\:-mt-5\/12:hover{
  margin-top     : -41.66667% !important;
}

.hover\:-mr-5\/12:hover{
  margin-right     : -41.66667% !important;
}

.hover\:-mb-5\/12:hover{
  margin-bottom     : -41.66667% !important;
}

.hover\:-ml-5\/12:hover{
  margin-left     : -41.66667% !important;
}

.hover\:-mt-6\/12:hover{
  margin-top     : -50% !important;
}

.hover\:-mr-6\/12:hover{
  margin-right     : -50% !important;
}

.hover\:-mb-6\/12:hover{
  margin-bottom     : -50% !important;
}

.hover\:-ml-6\/12:hover{
  margin-left     : -50% !important;
}

.hover\:-mt-7\/12:hover{
  margin-top     : -58.33333% !important;
}

.hover\:-mr-7\/12:hover{
  margin-right     : -58.33333% !important;
}

.hover\:-mb-7\/12:hover{
  margin-bottom     : -58.33333% !important;
}

.hover\:-ml-7\/12:hover{
  margin-left     : -58.33333% !important;
}

.hover\:-mt-8\/12:hover{
  margin-top     : -66.66667% !important;
}

.hover\:-mr-8\/12:hover{
  margin-right     : -66.66667% !important;
}

.hover\:-mb-8\/12:hover{
  margin-bottom     : -66.66667% !important;
}

.hover\:-ml-8\/12:hover{
  margin-left     : -66.66667% !important;
}

.hover\:-mt-9\/12:hover{
  margin-top     : -75% !important;
}

.hover\:-mr-9\/12:hover{
  margin-right     : -75% !important;
}

.hover\:-mb-9\/12:hover{
  margin-bottom     : -75% !important;
}

.hover\:-ml-9\/12:hover{
  margin-left     : -75% !important;
}

.hover\:-mt-10\/12:hover{
  margin-top     : -83.33333% !important;
}

.hover\:-mr-10\/12:hover{
  margin-right     : -83.33333% !important;
}

.hover\:-mb-10\/12:hover{
  margin-bottom     : -83.33333% !important;
}

.hover\:-ml-10\/12:hover{
  margin-left     : -83.33333% !important;
}

.hover\:-mt-11\/12:hover{
  margin-top     : -91.66667% !important;
}

.hover\:-mr-11\/12:hover{
  margin-right     : -91.66667% !important;
}

.hover\:-mb-11\/12:hover{
  margin-bottom     : -91.66667% !important;
}

.hover\:-ml-11\/12:hover{
  margin-left     : -91.66667% !important;
}

.hover\:-mt-full:hover{
  margin-top     : -100% !important;
}

.hover\:-mr-full:hover{
  margin-right     : -100% !important;
}

.hover\:-mb-full:hover{
  margin-bottom     : -100% !important;
}

.hover\:-ml-full:hover{
  margin-left     : -100% !important;
}

.focus\:m-0:focus{
  margin     : 0 !important;
}

.focus\:m-1:focus{
  margin     : 0.25rem !important;
}

.focus\:m-2:focus{
  margin     : 0.5rem !important;
}

.focus\:m-3:focus{
  margin     : 0.75rem !important;
}

.focus\:m-4:focus{
  margin     : 1rem !important;
}

.focus\:m-5:focus{
  margin     : 1.25rem !important;
}

.focus\:m-6:focus{
  margin     : 1.5rem !important;
}

.focus\:m-7:focus{
  margin     : 1.75rem !important;
}

.focus\:m-8:focus{
  margin     : 2rem !important;
}

.focus\:m-9:focus{
  margin     : 2.25rem !important;
}

.focus\:m-10:focus{
  margin     : 2.5rem !important;
}

.focus\:m-11:focus{
  margin     : 2.75rem !important;
}

.focus\:m-12:focus{
  margin     : 3rem !important;
}

.focus\:m-13:focus{
  margin     : 3.25rem !important;
}

.focus\:m-14:focus{
  margin     : 3.5rem !important;
}

.focus\:m-15:focus{
  margin     : 3.75rem !important;
}

.focus\:m-16:focus{
  margin     : 4rem !important;
}

.focus\:m-20:focus{
  margin     : 5rem !important;
}

.focus\:m-24:focus{
  margin     : 6rem !important;
}

.focus\:m-28:focus{
  margin     : 7rem !important;
}

.focus\:m-32:focus{
  margin     : 8rem !important;
}

.focus\:m-36:focus{
  margin     : 9rem !important;
}

.focus\:m-40:focus{
  margin     : 10rem !important;
}

.focus\:m-44:focus{
  margin     : 11rem !important;
}

.focus\:m-48:focus{
  margin     : 12rem !important;
}

.focus\:m-52:focus{
  margin     : 13rem !important;
}

.focus\:m-56:focus{
  margin     : 14rem !important;
}

.focus\:m-60:focus{
  margin     : 15rem !important;
}

.focus\:m-64:focus{
  margin     : 16rem !important;
}

.focus\:m-72:focus{
  margin     : 18rem !important;
}

.focus\:m-80:focus{
  margin     : 20rem !important;
}

.focus\:m-96:focus{
  margin     : 24rem !important;
}

.focus\:m-auto:focus{
  margin     : auto !important;
}

.focus\:m-px:focus{
  margin     : 1px !important;
}

.focus\:m-0\.5:focus{
  margin     : 0.125rem !important;
}

.focus\:m-1\.5:focus{
  margin     : 0.375rem !important;
}

.focus\:m-2\.5:focus{
  margin     : 0.625rem !important;
}

.focus\:m-3\.5:focus{
  margin     : 0.875rem !important;
}

.focus\:m-1\/2:focus{
  margin     : 50% !important;
}

.focus\:m-1\/3:focus{
  margin     : 33.333333% !important;
}

.focus\:m-2\/3:focus{
  margin     : 66.666667% !important;
}

.focus\:m-1\/4:focus{
  margin     : 25% !important;
}

.focus\:m-2\/4:focus{
  margin     : 50% !important;
}

.focus\:m-3\/4:focus{
  margin     : 75% !important;
}

.focus\:m-1\/5:focus{
  margin     : 20% !important;
}

.focus\:m-2\/5:focus{
  margin     : 40% !important;
}

.focus\:m-3\/5:focus{
  margin     : 60% !important;
}

.focus\:m-4\/5:focus{
  margin     : 80% !important;
}

.focus\:m-1\/6:focus{
  margin     : 16.666667% !important;
}

.focus\:m-2\/6:focus{
  margin     : 33.333333% !important;
}

.focus\:m-3\/6:focus{
  margin     : 50% !important;
}

.focus\:m-4\/6:focus{
  margin     : 66.666667% !important;
}

.focus\:m-5\/6:focus{
  margin     : 83.333333% !important;
}

.focus\:m-1\/12:focus{
  margin     : 8.333333% !important;
}

.focus\:m-2\/12:focus{
  margin     : 16.666667% !important;
}

.focus\:m-3\/12:focus{
  margin     : 25% !important;
}

.focus\:m-4\/12:focus{
  margin     : 33.333333% !important;
}

.focus\:m-5\/12:focus{
  margin     : 41.666667% !important;
}

.focus\:m-6\/12:focus{
  margin     : 50% !important;
}

.focus\:m-7\/12:focus{
  margin     : 58.333333% !important;
}

.focus\:m-8\/12:focus{
  margin     : 66.666667% !important;
}

.focus\:m-9\/12:focus{
  margin     : 75% !important;
}

.focus\:m-10\/12:focus{
  margin     : 83.333333% !important;
}

.focus\:m-11\/12:focus{
  margin     : 91.666667% !important;
}

.focus\:m-full:focus{
  margin     : 100% !important;
}

.focus\:-m-1:focus{
  margin     : -0.25rem !important;
}

.focus\:-m-2:focus{
  margin     : -0.5rem !important;
}

.focus\:-m-3:focus{
  margin     : -0.75rem !important;
}

.focus\:-m-4:focus{
  margin     : -1rem !important;
}

.focus\:-m-5:focus{
  margin     : -1.25rem !important;
}

.focus\:-m-6:focus{
  margin     : -1.5rem !important;
}

.focus\:-m-7:focus{
  margin     : -1.75rem !important;
}

.focus\:-m-8:focus{
  margin     : -2rem !important;
}

.focus\:-m-9:focus{
  margin     : -2.25rem !important;
}

.focus\:-m-10:focus{
  margin     : -2.5rem !important;
}

.focus\:-m-11:focus{
  margin     : -2.75rem !important;
}

.focus\:-m-12:focus{
  margin     : -3rem !important;
}

.focus\:-m-13:focus{
  margin     : -3.25rem !important;
}

.focus\:-m-14:focus{
  margin     : -3.5rem !important;
}

.focus\:-m-15:focus{
  margin     : -3.75rem !important;
}

.focus\:-m-16:focus{
  margin     : -4rem !important;
}

.focus\:-m-20:focus{
  margin     : -5rem !important;
}

.focus\:-m-24:focus{
  margin     : -6rem !important;
}

.focus\:-m-28:focus{
  margin     : -7rem !important;
}

.focus\:-m-32:focus{
  margin     : -8rem !important;
}

.focus\:-m-36:focus{
  margin     : -9rem !important;
}

.focus\:-m-40:focus{
  margin     : -10rem !important;
}

.focus\:-m-44:focus{
  margin     : -11rem !important;
}

.focus\:-m-48:focus{
  margin     : -12rem !important;
}

.focus\:-m-52:focus{
  margin     : -13rem !important;
}

.focus\:-m-56:focus{
  margin     : -14rem !important;
}

.focus\:-m-60:focus{
  margin     : -15rem !important;
}

.focus\:-m-64:focus{
  margin     : -16rem !important;
}

.focus\:-m-72:focus{
  margin     : -18rem !important;
}

.focus\:-m-80:focus{
  margin     : -20rem !important;
}

.focus\:-m-96:focus{
  margin     : -24rem !important;
}

.focus\:-m-px:focus{
  margin     : -1px !important;
}

.focus\:-m-0\.5:focus{
  margin     : -0.125rem !important;
}

.focus\:-m-1\.5:focus{
  margin     : -0.375rem !important;
}

.focus\:-m-2\.5:focus{
  margin     : -0.625rem !important;
}

.focus\:-m-3\.5:focus{
  margin     : -0.875rem !important;
}

.focus\:-m-1\/2:focus{
  margin     : -50% !important;
}

.focus\:-m-1\/3:focus{
  margin     : -33.33333% !important;
}

.focus\:-m-2\/3:focus{
  margin     : -66.66667% !important;
}

.focus\:-m-1\/4:focus{
  margin     : -25% !important;
}

.focus\:-m-2\/4:focus{
  margin     : -50% !important;
}

.focus\:-m-3\/4:focus{
  margin     : -75% !important;
}

.focus\:-m-1\/5:focus{
  margin     : -20% !important;
}

.focus\:-m-2\/5:focus{
  margin     : -40% !important;
}

.focus\:-m-3\/5:focus{
  margin     : -60% !important;
}

.focus\:-m-4\/5:focus{
  margin     : -80% !important;
}

.focus\:-m-1\/6:focus{
  margin     : -16.66667% !important;
}

.focus\:-m-2\/6:focus{
  margin     : -33.33333% !important;
}

.focus\:-m-3\/6:focus{
  margin     : -50% !important;
}

.focus\:-m-4\/6:focus{
  margin     : -66.66667% !important;
}

.focus\:-m-5\/6:focus{
  margin     : -83.33333% !important;
}

.focus\:-m-1\/12:focus{
  margin     : -8.33333% !important;
}

.focus\:-m-2\/12:focus{
  margin     : -16.66667% !important;
}

.focus\:-m-3\/12:focus{
  margin     : -25% !important;
}

.focus\:-m-4\/12:focus{
  margin     : -33.33333% !important;
}

.focus\:-m-5\/12:focus{
  margin     : -41.66667% !important;
}

.focus\:-m-6\/12:focus{
  margin     : -50% !important;
}

.focus\:-m-7\/12:focus{
  margin     : -58.33333% !important;
}

.focus\:-m-8\/12:focus{
  margin     : -66.66667% !important;
}

.focus\:-m-9\/12:focus{
  margin     : -75% !important;
}

.focus\:-m-10\/12:focus{
  margin     : -83.33333% !important;
}

.focus\:-m-11\/12:focus{
  margin     : -91.66667% !important;
}

.focus\:-m-full:focus{
  margin     : -100% !important;
}

.focus\:my-0:focus{
  margin-top     : 0 !important;
  margin-bottom     : 0 !important;
}

.focus\:mx-0:focus{
  margin-left     : 0 !important;
  margin-right     : 0 !important;
}

.focus\:my-1:focus{
  margin-top     : 0.25rem !important;
  margin-bottom     : 0.25rem !important;
}

.focus\:mx-1:focus{
  margin-left     : 0.25rem !important;
  margin-right     : 0.25rem !important;
}

.focus\:my-2:focus{
  margin-top     : 0.5rem !important;
  margin-bottom     : 0.5rem !important;
}

.focus\:mx-2:focus{
  margin-left     : 0.5rem !important;
  margin-right     : 0.5rem !important;
}

.focus\:my-3:focus{
  margin-top     : 0.75rem !important;
  margin-bottom     : 0.75rem !important;
}

.focus\:mx-3:focus{
  margin-left     : 0.75rem !important;
  margin-right     : 0.75rem !important;
}

.focus\:my-4:focus{
  margin-top     : 1rem !important;
  margin-bottom     : 1rem !important;
}

.focus\:mx-4:focus{
  margin-left     : 1rem !important;
  margin-right     : 1rem !important;
}

.focus\:my-5:focus{
  margin-top     : 1.25rem !important;
  margin-bottom     : 1.25rem !important;
}

.focus\:mx-5:focus{
  margin-left     : 1.25rem !important;
  margin-right     : 1.25rem !important;
}

.focus\:my-6:focus{
  margin-top     : 1.5rem !important;
  margin-bottom     : 1.5rem !important;
}

.focus\:mx-6:focus{
  margin-left     : 1.5rem !important;
  margin-right     : 1.5rem !important;
}

.focus\:my-7:focus{
  margin-top     : 1.75rem !important;
  margin-bottom     : 1.75rem !important;
}

.focus\:mx-7:focus{
  margin-left     : 1.75rem !important;
  margin-right     : 1.75rem !important;
}

.focus\:my-8:focus{
  margin-top     : 2rem !important;
  margin-bottom     : 2rem !important;
}

.focus\:mx-8:focus{
  margin-left     : 2rem !important;
  margin-right     : 2rem !important;
}

.focus\:my-9:focus{
  margin-top     : 2.25rem !important;
  margin-bottom     : 2.25rem !important;
}

.focus\:mx-9:focus{
  margin-left     : 2.25rem !important;
  margin-right     : 2.25rem !important;
}

.focus\:my-10:focus{
  margin-top     : 2.5rem !important;
  margin-bottom     : 2.5rem !important;
}

.focus\:mx-10:focus{
  margin-left     : 2.5rem !important;
  margin-right     : 2.5rem !important;
}

.focus\:my-11:focus{
  margin-top     : 2.75rem !important;
  margin-bottom     : 2.75rem !important;
}

.focus\:mx-11:focus{
  margin-left     : 2.75rem !important;
  margin-right     : 2.75rem !important;
}

.focus\:my-12:focus{
  margin-top     : 3rem !important;
  margin-bottom     : 3rem !important;
}

.focus\:mx-12:focus{
  margin-left     : 3rem !important;
  margin-right     : 3rem !important;
}

.focus\:my-13:focus{
  margin-top     : 3.25rem !important;
  margin-bottom     : 3.25rem !important;
}

.focus\:mx-13:focus{
  margin-left     : 3.25rem !important;
  margin-right     : 3.25rem !important;
}

.focus\:my-14:focus{
  margin-top     : 3.5rem !important;
  margin-bottom     : 3.5rem !important;
}

.focus\:mx-14:focus{
  margin-left     : 3.5rem !important;
  margin-right     : 3.5rem !important;
}

.focus\:my-15:focus{
  margin-top     : 3.75rem !important;
  margin-bottom     : 3.75rem !important;
}

.focus\:mx-15:focus{
  margin-left     : 3.75rem !important;
  margin-right     : 3.75rem !important;
}

.focus\:my-16:focus{
  margin-top     : 4rem !important;
  margin-bottom     : 4rem !important;
}

.focus\:mx-16:focus{
  margin-left     : 4rem !important;
  margin-right     : 4rem !important;
}

.focus\:my-20:focus{
  margin-top     : 5rem !important;
  margin-bottom     : 5rem !important;
}

.focus\:mx-20:focus{
  margin-left     : 5rem !important;
  margin-right     : 5rem !important;
}

.focus\:my-24:focus{
  margin-top     : 6rem !important;
  margin-bottom     : 6rem !important;
}

.focus\:mx-24:focus{
  margin-left     : 6rem !important;
  margin-right     : 6rem !important;
}

.focus\:my-28:focus{
  margin-top     : 7rem !important;
  margin-bottom     : 7rem !important;
}

.focus\:mx-28:focus{
  margin-left     : 7rem !important;
  margin-right     : 7rem !important;
}

.focus\:my-32:focus{
  margin-top     : 8rem !important;
  margin-bottom     : 8rem !important;
}

.focus\:mx-32:focus{
  margin-left     : 8rem !important;
  margin-right     : 8rem !important;
}

.focus\:my-36:focus{
  margin-top     : 9rem !important;
  margin-bottom     : 9rem !important;
}

.focus\:mx-36:focus{
  margin-left     : 9rem !important;
  margin-right     : 9rem !important;
}

.focus\:my-40:focus{
  margin-top     : 10rem !important;
  margin-bottom     : 10rem !important;
}

.focus\:mx-40:focus{
  margin-left     : 10rem !important;
  margin-right     : 10rem !important;
}

.focus\:my-44:focus{
  margin-top     : 11rem !important;
  margin-bottom     : 11rem !important;
}

.focus\:mx-44:focus{
  margin-left     : 11rem !important;
  margin-right     : 11rem !important;
}

.focus\:my-48:focus{
  margin-top     : 12rem !important;
  margin-bottom     : 12rem !important;
}

.focus\:mx-48:focus{
  margin-left     : 12rem !important;
  margin-right     : 12rem !important;
}

.focus\:my-52:focus{
  margin-top     : 13rem !important;
  margin-bottom     : 13rem !important;
}

.focus\:mx-52:focus{
  margin-left     : 13rem !important;
  margin-right     : 13rem !important;
}

.focus\:my-56:focus{
  margin-top     : 14rem !important;
  margin-bottom     : 14rem !important;
}

.focus\:mx-56:focus{
  margin-left     : 14rem !important;
  margin-right     : 14rem !important;
}

.focus\:my-60:focus{
  margin-top     : 15rem !important;
  margin-bottom     : 15rem !important;
}

.focus\:mx-60:focus{
  margin-left     : 15rem !important;
  margin-right     : 15rem !important;
}

.focus\:my-64:focus{
  margin-top     : 16rem !important;
  margin-bottom     : 16rem !important;
}

.focus\:mx-64:focus{
  margin-left     : 16rem !important;
  margin-right     : 16rem !important;
}

.focus\:my-72:focus{
  margin-top     : 18rem !important;
  margin-bottom     : 18rem !important;
}

.focus\:mx-72:focus{
  margin-left     : 18rem !important;
  margin-right     : 18rem !important;
}

.focus\:my-80:focus{
  margin-top     : 20rem !important;
  margin-bottom     : 20rem !important;
}

.focus\:mx-80:focus{
  margin-left     : 20rem !important;
  margin-right     : 20rem !important;
}

.focus\:my-96:focus{
  margin-top     : 24rem !important;
  margin-bottom     : 24rem !important;
}

.focus\:mx-96:focus{
  margin-left     : 24rem !important;
  margin-right     : 24rem !important;
}

.focus\:my-auto:focus{
  margin-top     : auto !important;
  margin-bottom     : auto !important;
}

.focus\:mx-auto:focus{
  margin-left     : auto !important;
  margin-right     : auto !important;
}

.focus\:my-px:focus{
  margin-top     : 1px !important;
  margin-bottom     : 1px !important;
}

.focus\:mx-px:focus{
  margin-left     : 1px !important;
  margin-right     : 1px !important;
}

.focus\:my-0\.5:focus{
  margin-top     : 0.125rem !important;
  margin-bottom     : 0.125rem !important;
}

.focus\:mx-0\.5:focus{
  margin-left     : 0.125rem !important;
  margin-right     : 0.125rem !important;
}

.focus\:my-1\.5:focus{
  margin-top     : 0.375rem !important;
  margin-bottom     : 0.375rem !important;
}

.focus\:mx-1\.5:focus{
  margin-left     : 0.375rem !important;
  margin-right     : 0.375rem !important;
}

.focus\:my-2\.5:focus{
  margin-top     : 0.625rem !important;
  margin-bottom     : 0.625rem !important;
}

.focus\:mx-2\.5:focus{
  margin-left     : 0.625rem !important;
  margin-right     : 0.625rem !important;
}

.focus\:my-3\.5:focus{
  margin-top     : 0.875rem !important;
  margin-bottom     : 0.875rem !important;
}

.focus\:mx-3\.5:focus{
  margin-left     : 0.875rem !important;
  margin-right     : 0.875rem !important;
}

.focus\:my-1\/2:focus{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.focus\:mx-1\/2:focus{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.focus\:my-1\/3:focus{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.focus\:mx-1\/3:focus{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.focus\:my-2\/3:focus{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.focus\:mx-2\/3:focus{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.focus\:my-1\/4:focus{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.focus\:mx-1\/4:focus{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.focus\:my-2\/4:focus{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.focus\:mx-2\/4:focus{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.focus\:my-3\/4:focus{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.focus\:mx-3\/4:focus{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.focus\:my-1\/5:focus{
  margin-top     : 20% !important;
  margin-bottom     : 20% !important;
}

.focus\:mx-1\/5:focus{
  margin-left     : 20% !important;
  margin-right     : 20% !important;
}

.focus\:my-2\/5:focus{
  margin-top     : 40% !important;
  margin-bottom     : 40% !important;
}

.focus\:mx-2\/5:focus{
  margin-left     : 40% !important;
  margin-right     : 40% !important;
}

.focus\:my-3\/5:focus{
  margin-top     : 60% !important;
  margin-bottom     : 60% !important;
}

.focus\:mx-3\/5:focus{
  margin-left     : 60% !important;
  margin-right     : 60% !important;
}

.focus\:my-4\/5:focus{
  margin-top     : 80% !important;
  margin-bottom     : 80% !important;
}

.focus\:mx-4\/5:focus{
  margin-left     : 80% !important;
  margin-right     : 80% !important;
}

.focus\:my-1\/6:focus{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.focus\:mx-1\/6:focus{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.focus\:my-2\/6:focus{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.focus\:mx-2\/6:focus{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.focus\:my-3\/6:focus{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.focus\:mx-3\/6:focus{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.focus\:my-4\/6:focus{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.focus\:mx-4\/6:focus{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.focus\:my-5\/6:focus{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.focus\:mx-5\/6:focus{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.focus\:my-1\/12:focus{
  margin-top     : 8.333333% !important;
  margin-bottom     : 8.333333% !important;
}

.focus\:mx-1\/12:focus{
  margin-left     : 8.333333% !important;
  margin-right     : 8.333333% !important;
}

.focus\:my-2\/12:focus{
  margin-top     : 16.666667% !important;
  margin-bottom     : 16.666667% !important;
}

.focus\:mx-2\/12:focus{
  margin-left     : 16.666667% !important;
  margin-right     : 16.666667% !important;
}

.focus\:my-3\/12:focus{
  margin-top     : 25% !important;
  margin-bottom     : 25% !important;
}

.focus\:mx-3\/12:focus{
  margin-left     : 25% !important;
  margin-right     : 25% !important;
}

.focus\:my-4\/12:focus{
  margin-top     : 33.333333% !important;
  margin-bottom     : 33.333333% !important;
}

.focus\:mx-4\/12:focus{
  margin-left     : 33.333333% !important;
  margin-right     : 33.333333% !important;
}

.focus\:my-5\/12:focus{
  margin-top     : 41.666667% !important;
  margin-bottom     : 41.666667% !important;
}

.focus\:mx-5\/12:focus{
  margin-left     : 41.666667% !important;
  margin-right     : 41.666667% !important;
}

.focus\:my-6\/12:focus{
  margin-top     : 50% !important;
  margin-bottom     : 50% !important;
}

.focus\:mx-6\/12:focus{
  margin-left     : 50% !important;
  margin-right     : 50% !important;
}

.focus\:my-7\/12:focus{
  margin-top     : 58.333333% !important;
  margin-bottom     : 58.333333% !important;
}

.focus\:mx-7\/12:focus{
  margin-left     : 58.333333% !important;
  margin-right     : 58.333333% !important;
}

.focus\:my-8\/12:focus{
  margin-top     : 66.666667% !important;
  margin-bottom     : 66.666667% !important;
}

.focus\:mx-8\/12:focus{
  margin-left     : 66.666667% !important;
  margin-right     : 66.666667% !important;
}

.focus\:my-9\/12:focus{
  margin-top     : 75% !important;
  margin-bottom     : 75% !important;
}

.focus\:mx-9\/12:focus{
  margin-left     : 75% !important;
  margin-right     : 75% !important;
}

.focus\:my-10\/12:focus{
  margin-top     : 83.333333% !important;
  margin-bottom     : 83.333333% !important;
}

.focus\:mx-10\/12:focus{
  margin-left     : 83.333333% !important;
  margin-right     : 83.333333% !important;
}

.focus\:my-11\/12:focus{
  margin-top     : 91.666667% !important;
  margin-bottom     : 91.666667% !important;
}

.focus\:mx-11\/12:focus{
  margin-left     : 91.666667% !important;
  margin-right     : 91.666667% !important;
}

.focus\:my-full:focus{
  margin-top     : 100% !important;
  margin-bottom     : 100% !important;
}

.focus\:mx-full:focus{
  margin-left     : 100% !important;
  margin-right     : 100% !important;
}

.focus\:-my-1:focus{
  margin-top     : -0.25rem !important;
  margin-bottom     : -0.25rem !important;
}

.focus\:-mx-1:focus{
  margin-left     : -0.25rem !important;
  margin-right     : -0.25rem !important;
}

.focus\:-my-2:focus{
  margin-top     : -0.5rem !important;
  margin-bottom     : -0.5rem !important;
}

.focus\:-mx-2:focus{
  margin-left     : -0.5rem !important;
  margin-right     : -0.5rem !important;
}

.focus\:-my-3:focus{
  margin-top     : -0.75rem !important;
  margin-bottom     : -0.75rem !important;
}

.focus\:-mx-3:focus{
  margin-left     : -0.75rem !important;
  margin-right     : -0.75rem !important;
}

.focus\:-my-4:focus{
  margin-top     : -1rem !important;
  margin-bottom     : -1rem !important;
}

.focus\:-mx-4:focus{
  margin-left     : -1rem !important;
  margin-right     : -1rem !important;
}

.focus\:-my-5:focus{
  margin-top     : -1.25rem !important;
  margin-bottom     : -1.25rem !important;
}

.focus\:-mx-5:focus{
  margin-left     : -1.25rem !important;
  margin-right     : -1.25rem !important;
}

.focus\:-my-6:focus{
  margin-top     : -1.5rem !important;
  margin-bottom     : -1.5rem !important;
}

.focus\:-mx-6:focus{
  margin-left     : -1.5rem !important;
  margin-right     : -1.5rem !important;
}

.focus\:-my-7:focus{
  margin-top     : -1.75rem !important;
  margin-bottom     : -1.75rem !important;
}

.focus\:-mx-7:focus{
  margin-left     : -1.75rem !important;
  margin-right     : -1.75rem !important;
}

.focus\:-my-8:focus{
  margin-top     : -2rem !important;
  margin-bottom     : -2rem !important;
}

.focus\:-mx-8:focus{
  margin-left     : -2rem !important;
  margin-right     : -2rem !important;
}

.focus\:-my-9:focus{
  margin-top     : -2.25rem !important;
  margin-bottom     : -2.25rem !important;
}

.focus\:-mx-9:focus{
  margin-left     : -2.25rem !important;
  margin-right     : -2.25rem !important;
}

.focus\:-my-10:focus{
  margin-top     : -2.5rem !important;
  margin-bottom     : -2.5rem !important;
}

.focus\:-mx-10:focus{
  margin-left     : -2.5rem !important;
  margin-right     : -2.5rem !important;
}

.focus\:-my-11:focus{
  margin-top     : -2.75rem !important;
  margin-bottom     : -2.75rem !important;
}

.focus\:-mx-11:focus{
  margin-left     : -2.75rem !important;
  margin-right     : -2.75rem !important;
}

.focus\:-my-12:focus{
  margin-top     : -3rem !important;
  margin-bottom     : -3rem !important;
}

.focus\:-mx-12:focus{
  margin-left     : -3rem !important;
  margin-right     : -3rem !important;
}

.focus\:-my-13:focus{
  margin-top     : -3.25rem !important;
  margin-bottom     : -3.25rem !important;
}

.focus\:-mx-13:focus{
  margin-left     : -3.25rem !important;
  margin-right     : -3.25rem !important;
}

.focus\:-my-14:focus{
  margin-top     : -3.5rem !important;
  margin-bottom     : -3.5rem !important;
}

.focus\:-mx-14:focus{
  margin-left     : -3.5rem !important;
  margin-right     : -3.5rem !important;
}

.focus\:-my-15:focus{
  margin-top     : -3.75rem !important;
  margin-bottom     : -3.75rem !important;
}

.focus\:-mx-15:focus{
  margin-left     : -3.75rem !important;
  margin-right     : -3.75rem !important;
}

.focus\:-my-16:focus{
  margin-top     : -4rem !important;
  margin-bottom     : -4rem !important;
}

.focus\:-mx-16:focus{
  margin-left     : -4rem !important;
  margin-right     : -4rem !important;
}

.focus\:-my-20:focus{
  margin-top     : -5rem !important;
  margin-bottom     : -5rem !important;
}

.focus\:-mx-20:focus{
  margin-left     : -5rem !important;
  margin-right     : -5rem !important;
}

.focus\:-my-24:focus{
  margin-top     : -6rem !important;
  margin-bottom     : -6rem !important;
}

.focus\:-mx-24:focus{
  margin-left     : -6rem !important;
  margin-right     : -6rem !important;
}

.focus\:-my-28:focus{
  margin-top     : -7rem !important;
  margin-bottom     : -7rem !important;
}

.focus\:-mx-28:focus{
  margin-left     : -7rem !important;
  margin-right     : -7rem !important;
}

.focus\:-my-32:focus{
  margin-top     : -8rem !important;
  margin-bottom     : -8rem !important;
}

.focus\:-mx-32:focus{
  margin-left     : -8rem !important;
  margin-right     : -8rem !important;
}

.focus\:-my-36:focus{
  margin-top     : -9rem !important;
  margin-bottom     : -9rem !important;
}

.focus\:-mx-36:focus{
  margin-left     : -9rem !important;
  margin-right     : -9rem !important;
}

.focus\:-my-40:focus{
  margin-top     : -10rem !important;
  margin-bottom     : -10rem !important;
}

.focus\:-mx-40:focus{
  margin-left     : -10rem !important;
  margin-right     : -10rem !important;
}

.focus\:-my-44:focus{
  margin-top     : -11rem !important;
  margin-bottom     : -11rem !important;
}

.focus\:-mx-44:focus{
  margin-left     : -11rem !important;
  margin-right     : -11rem !important;
}

.focus\:-my-48:focus{
  margin-top     : -12rem !important;
  margin-bottom     : -12rem !important;
}

.focus\:-mx-48:focus{
  margin-left     : -12rem !important;
  margin-right     : -12rem !important;
}

.focus\:-my-52:focus{
  margin-top     : -13rem !important;
  margin-bottom     : -13rem !important;
}

.focus\:-mx-52:focus{
  margin-left     : -13rem !important;
  margin-right     : -13rem !important;
}

.focus\:-my-56:focus{
  margin-top     : -14rem !important;
  margin-bottom     : -14rem !important;
}

.focus\:-mx-56:focus{
  margin-left     : -14rem !important;
  margin-right     : -14rem !important;
}

.focus\:-my-60:focus{
  margin-top     : -15rem !important;
  margin-bottom     : -15rem !important;
}

.focus\:-mx-60:focus{
  margin-left     : -15rem !important;
  margin-right     : -15rem !important;
}

.focus\:-my-64:focus{
  margin-top     : -16rem !important;
  margin-bottom     : -16rem !important;
}

.focus\:-mx-64:focus{
  margin-left     : -16rem !important;
  margin-right     : -16rem !important;
}

.focus\:-my-72:focus{
  margin-top     : -18rem !important;
  margin-bottom     : -18rem !important;
}

.focus\:-mx-72:focus{
  margin-left     : -18rem !important;
  margin-right     : -18rem !important;
}

.focus\:-my-80:focus{
  margin-top     : -20rem !important;
  margin-bottom     : -20rem !important;
}

.focus\:-mx-80:focus{
  margin-left     : -20rem !important;
  margin-right     : -20rem !important;
}

.focus\:-my-96:focus{
  margin-top     : -24rem !important;
  margin-bottom     : -24rem !important;
}

.focus\:-mx-96:focus{
  margin-left     : -24rem !important;
  margin-right     : -24rem !important;
}

.focus\:-my-px:focus{
  margin-top     : -1px !important;
  margin-bottom     : -1px !important;
}

.focus\:-mx-px:focus{
  margin-left     : -1px !important;
  margin-right     : -1px !important;
}

.focus\:-my-0\.5:focus{
  margin-top     : -0.125rem !important;
  margin-bottom     : -0.125rem !important;
}

.focus\:-mx-0\.5:focus{
  margin-left     : -0.125rem !important;
  margin-right     : -0.125rem !important;
}

.focus\:-my-1\.5:focus{
  margin-top     : -0.375rem !important;
  margin-bottom     : -0.375rem !important;
}

.focus\:-mx-1\.5:focus{
  margin-left     : -0.375rem !important;
  margin-right     : -0.375rem !important;
}

.focus\:-my-2\.5:focus{
  margin-top     : -0.625rem !important;
  margin-bottom     : -0.625rem !important;
}

.focus\:-mx-2\.5:focus{
  margin-left     : -0.625rem !important;
  margin-right     : -0.625rem !important;
}

.focus\:-my-3\.5:focus{
  margin-top     : -0.875rem !important;
  margin-bottom     : -0.875rem !important;
}

.focus\:-mx-3\.5:focus{
  margin-left     : -0.875rem !important;
  margin-right     : -0.875rem !important;
}

.focus\:-my-1\/2:focus{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.focus\:-mx-1\/2:focus{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.focus\:-my-1\/3:focus{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.focus\:-mx-1\/3:focus{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.focus\:-my-2\/3:focus{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.focus\:-mx-2\/3:focus{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.focus\:-my-1\/4:focus{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.focus\:-mx-1\/4:focus{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.focus\:-my-2\/4:focus{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.focus\:-mx-2\/4:focus{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.focus\:-my-3\/4:focus{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.focus\:-mx-3\/4:focus{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.focus\:-my-1\/5:focus{
  margin-top     : -20% !important;
  margin-bottom     : -20% !important;
}

.focus\:-mx-1\/5:focus{
  margin-left     : -20% !important;
  margin-right     : -20% !important;
}

.focus\:-my-2\/5:focus{
  margin-top     : -40% !important;
  margin-bottom     : -40% !important;
}

.focus\:-mx-2\/5:focus{
  margin-left     : -40% !important;
  margin-right     : -40% !important;
}

.focus\:-my-3\/5:focus{
  margin-top     : -60% !important;
  margin-bottom     : -60% !important;
}

.focus\:-mx-3\/5:focus{
  margin-left     : -60% !important;
  margin-right     : -60% !important;
}

.focus\:-my-4\/5:focus{
  margin-top     : -80% !important;
  margin-bottom     : -80% !important;
}

.focus\:-mx-4\/5:focus{
  margin-left     : -80% !important;
  margin-right     : -80% !important;
}

.focus\:-my-1\/6:focus{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.focus\:-mx-1\/6:focus{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.focus\:-my-2\/6:focus{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.focus\:-mx-2\/6:focus{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.focus\:-my-3\/6:focus{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.focus\:-mx-3\/6:focus{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.focus\:-my-4\/6:focus{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.focus\:-mx-4\/6:focus{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.focus\:-my-5\/6:focus{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.focus\:-mx-5\/6:focus{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.focus\:-my-1\/12:focus{
  margin-top     : -8.33333% !important;
  margin-bottom     : -8.33333% !important;
}

.focus\:-mx-1\/12:focus{
  margin-left     : -8.33333% !important;
  margin-right     : -8.33333% !important;
}

.focus\:-my-2\/12:focus{
  margin-top     : -16.66667% !important;
  margin-bottom     : -16.66667% !important;
}

.focus\:-mx-2\/12:focus{
  margin-left     : -16.66667% !important;
  margin-right     : -16.66667% !important;
}

.focus\:-my-3\/12:focus{
  margin-top     : -25% !important;
  margin-bottom     : -25% !important;
}

.focus\:-mx-3\/12:focus{
  margin-left     : -25% !important;
  margin-right     : -25% !important;
}

.focus\:-my-4\/12:focus{
  margin-top     : -33.33333% !important;
  margin-bottom     : -33.33333% !important;
}

.focus\:-mx-4\/12:focus{
  margin-left     : -33.33333% !important;
  margin-right     : -33.33333% !important;
}

.focus\:-my-5\/12:focus{
  margin-top     : -41.66667% !important;
  margin-bottom     : -41.66667% !important;
}

.focus\:-mx-5\/12:focus{
  margin-left     : -41.66667% !important;
  margin-right     : -41.66667% !important;
}

.focus\:-my-6\/12:focus{
  margin-top     : -50% !important;
  margin-bottom     : -50% !important;
}

.focus\:-mx-6\/12:focus{
  margin-left     : -50% !important;
  margin-right     : -50% !important;
}

.focus\:-my-7\/12:focus{
  margin-top     : -58.33333% !important;
  margin-bottom     : -58.33333% !important;
}

.focus\:-mx-7\/12:focus{
  margin-left     : -58.33333% !important;
  margin-right     : -58.33333% !important;
}

.focus\:-my-8\/12:focus{
  margin-top     : -66.66667% !important;
  margin-bottom     : -66.66667% !important;
}

.focus\:-mx-8\/12:focus{
  margin-left     : -66.66667% !important;
  margin-right     : -66.66667% !important;
}

.focus\:-my-9\/12:focus{
  margin-top     : -75% !important;
  margin-bottom     : -75% !important;
}

.focus\:-mx-9\/12:focus{
  margin-left     : -75% !important;
  margin-right     : -75% !important;
}

.focus\:-my-10\/12:focus{
  margin-top     : -83.33333% !important;
  margin-bottom     : -83.33333% !important;
}

.focus\:-mx-10\/12:focus{
  margin-left     : -83.33333% !important;
  margin-right     : -83.33333% !important;
}

.focus\:-my-11\/12:focus{
  margin-top     : -91.66667% !important;
  margin-bottom     : -91.66667% !important;
}

.focus\:-mx-11\/12:focus{
  margin-left     : -91.66667% !important;
  margin-right     : -91.66667% !important;
}

.focus\:-my-full:focus{
  margin-top     : -100% !important;
  margin-bottom     : -100% !important;
}

.focus\:-mx-full:focus{
  margin-left     : -100% !important;
  margin-right     : -100% !important;
}

.focus\:mt-0:focus{
  margin-top     : 0 !important;
}

.focus\:mr-0:focus{
  margin-right     : 0 !important;
}

.focus\:mb-0:focus{
  margin-bottom     : 0 !important;
}

.focus\:ml-0:focus{
  margin-left     : 0 !important;
}

.focus\:mt-1:focus{
  margin-top     : 0.25rem !important;
}

.focus\:mr-1:focus{
  margin-right     : 0.25rem !important;
}

.focus\:mb-1:focus{
  margin-bottom     : 0.25rem !important;
}

.focus\:ml-1:focus{
  margin-left     : 0.25rem !important;
}

.focus\:mt-2:focus{
  margin-top     : 0.5rem !important;
}

.focus\:mr-2:focus{
  margin-right     : 0.5rem !important;
}

.focus\:mb-2:focus{
  margin-bottom     : 0.5rem !important;
}

.focus\:ml-2:focus{
  margin-left     : 0.5rem !important;
}

.focus\:mt-3:focus{
  margin-top     : 0.75rem !important;
}

.focus\:mr-3:focus{
  margin-right     : 0.75rem !important;
}

.focus\:mb-3:focus{
  margin-bottom     : 0.75rem !important;
}

.focus\:ml-3:focus{
  margin-left     : 0.75rem !important;
}

.focus\:mt-4:focus{
  margin-top     : 1rem !important;
}

.focus\:mr-4:focus{
  margin-right     : 1rem !important;
}

.focus\:mb-4:focus{
  margin-bottom     : 1rem !important;
}

.focus\:ml-4:focus{
  margin-left     : 1rem !important;
}

.focus\:mt-5:focus{
  margin-top     : 1.25rem !important;
}

.focus\:mr-5:focus{
  margin-right     : 1.25rem !important;
}

.focus\:mb-5:focus{
  margin-bottom     : 1.25rem !important;
}

.focus\:ml-5:focus{
  margin-left     : 1.25rem !important;
}

.focus\:mt-6:focus{
  margin-top     : 1.5rem !important;
}

.focus\:mr-6:focus{
  margin-right     : 1.5rem !important;
}

.focus\:mb-6:focus{
  margin-bottom     : 1.5rem !important;
}

.focus\:ml-6:focus{
  margin-left     : 1.5rem !important;
}

.focus\:mt-7:focus{
  margin-top     : 1.75rem !important;
}

.focus\:mr-7:focus{
  margin-right     : 1.75rem !important;
}

.focus\:mb-7:focus{
  margin-bottom     : 1.75rem !important;
}

.focus\:ml-7:focus{
  margin-left     : 1.75rem !important;
}

.focus\:mt-8:focus{
  margin-top     : 2rem !important;
}

.focus\:mr-8:focus{
  margin-right     : 2rem !important;
}

.focus\:mb-8:focus{
  margin-bottom     : 2rem !important;
}

.focus\:ml-8:focus{
  margin-left     : 2rem !important;
}

.focus\:mt-9:focus{
  margin-top     : 2.25rem !important;
}

.focus\:mr-9:focus{
  margin-right     : 2.25rem !important;
}

.focus\:mb-9:focus{
  margin-bottom     : 2.25rem !important;
}

.focus\:ml-9:focus{
  margin-left     : 2.25rem !important;
}

.focus\:mt-10:focus{
  margin-top     : 2.5rem !important;
}

.focus\:mr-10:focus{
  margin-right     : 2.5rem !important;
}

.focus\:mb-10:focus{
  margin-bottom     : 2.5rem !important;
}

.focus\:ml-10:focus{
  margin-left     : 2.5rem !important;
}

.focus\:mt-11:focus{
  margin-top     : 2.75rem !important;
}

.focus\:mr-11:focus{
  margin-right     : 2.75rem !important;
}

.focus\:mb-11:focus{
  margin-bottom     : 2.75rem !important;
}

.focus\:ml-11:focus{
  margin-left     : 2.75rem !important;
}

.focus\:mt-12:focus{
  margin-top     : 3rem !important;
}

.focus\:mr-12:focus{
  margin-right     : 3rem !important;
}

.focus\:mb-12:focus{
  margin-bottom     : 3rem !important;
}

.focus\:ml-12:focus{
  margin-left     : 3rem !important;
}

.focus\:mt-13:focus{
  margin-top     : 3.25rem !important;
}

.focus\:mr-13:focus{
  margin-right     : 3.25rem !important;
}

.focus\:mb-13:focus{
  margin-bottom     : 3.25rem !important;
}

.focus\:ml-13:focus{
  margin-left     : 3.25rem !important;
}

.focus\:mt-14:focus{
  margin-top     : 3.5rem !important;
}

.focus\:mr-14:focus{
  margin-right     : 3.5rem !important;
}

.focus\:mb-14:focus{
  margin-bottom     : 3.5rem !important;
}

.focus\:ml-14:focus{
  margin-left     : 3.5rem !important;
}

.focus\:mt-15:focus{
  margin-top     : 3.75rem !important;
}

.focus\:mr-15:focus{
  margin-right     : 3.75rem !important;
}

.focus\:mb-15:focus{
  margin-bottom     : 3.75rem !important;
}

.focus\:ml-15:focus{
  margin-left     : 3.75rem !important;
}

.focus\:mt-16:focus{
  margin-top     : 4rem !important;
}

.focus\:mr-16:focus{
  margin-right     : 4rem !important;
}

.focus\:mb-16:focus{
  margin-bottom     : 4rem !important;
}

.focus\:ml-16:focus{
  margin-left     : 4rem !important;
}

.focus\:mt-20:focus{
  margin-top     : 5rem !important;
}

.focus\:mr-20:focus{
  margin-right     : 5rem !important;
}

.focus\:mb-20:focus{
  margin-bottom     : 5rem !important;
}

.focus\:ml-20:focus{
  margin-left     : 5rem !important;
}

.focus\:mt-24:focus{
  margin-top     : 6rem !important;
}

.focus\:mr-24:focus{
  margin-right     : 6rem !important;
}

.focus\:mb-24:focus{
  margin-bottom     : 6rem !important;
}

.focus\:ml-24:focus{
  margin-left     : 6rem !important;
}

.focus\:mt-28:focus{
  margin-top     : 7rem !important;
}

.focus\:mr-28:focus{
  margin-right     : 7rem !important;
}

.focus\:mb-28:focus{
  margin-bottom     : 7rem !important;
}

.focus\:ml-28:focus{
  margin-left     : 7rem !important;
}

.focus\:mt-32:focus{
  margin-top     : 8rem !important;
}

.focus\:mr-32:focus{
  margin-right     : 8rem !important;
}

.focus\:mb-32:focus{
  margin-bottom     : 8rem !important;
}

.focus\:ml-32:focus{
  margin-left     : 8rem !important;
}

.focus\:mt-36:focus{
  margin-top     : 9rem !important;
}

.focus\:mr-36:focus{
  margin-right     : 9rem !important;
}

.focus\:mb-36:focus{
  margin-bottom     : 9rem !important;
}

.focus\:ml-36:focus{
  margin-left     : 9rem !important;
}

.focus\:mt-40:focus{
  margin-top     : 10rem !important;
}

.focus\:mr-40:focus{
  margin-right     : 10rem !important;
}

.focus\:mb-40:focus{
  margin-bottom     : 10rem !important;
}

.focus\:ml-40:focus{
  margin-left     : 10rem !important;
}

.focus\:mt-44:focus{
  margin-top     : 11rem !important;
}

.focus\:mr-44:focus{
  margin-right     : 11rem !important;
}

.focus\:mb-44:focus{
  margin-bottom     : 11rem !important;
}

.focus\:ml-44:focus{
  margin-left     : 11rem !important;
}

.focus\:mt-48:focus{
  margin-top     : 12rem !important;
}

.focus\:mr-48:focus{
  margin-right     : 12rem !important;
}

.focus\:mb-48:focus{
  margin-bottom     : 12rem !important;
}

.focus\:ml-48:focus{
  margin-left     : 12rem !important;
}

.focus\:mt-52:focus{
  margin-top     : 13rem !important;
}

.focus\:mr-52:focus{
  margin-right     : 13rem !important;
}

.focus\:mb-52:focus{
  margin-bottom     : 13rem !important;
}

.focus\:ml-52:focus{
  margin-left     : 13rem !important;
}

.focus\:mt-56:focus{
  margin-top     : 14rem !important;
}

.focus\:mr-56:focus{
  margin-right     : 14rem !important;
}

.focus\:mb-56:focus{
  margin-bottom     : 14rem !important;
}

.focus\:ml-56:focus{
  margin-left     : 14rem !important;
}

.focus\:mt-60:focus{
  margin-top     : 15rem !important;
}

.focus\:mr-60:focus{
  margin-right     : 15rem !important;
}

.focus\:mb-60:focus{
  margin-bottom     : 15rem !important;
}

.focus\:ml-60:focus{
  margin-left     : 15rem !important;
}

.focus\:mt-64:focus{
  margin-top     : 16rem !important;
}

.focus\:mr-64:focus{
  margin-right     : 16rem !important;
}

.focus\:mb-64:focus{
  margin-bottom     : 16rem !important;
}

.focus\:ml-64:focus{
  margin-left     : 16rem !important;
}

.focus\:mt-72:focus{
  margin-top     : 18rem !important;
}

.focus\:mr-72:focus{
  margin-right     : 18rem !important;
}

.focus\:mb-72:focus{
  margin-bottom     : 18rem !important;
}

.focus\:ml-72:focus{
  margin-left     : 18rem !important;
}

.focus\:mt-80:focus{
  margin-top     : 20rem !important;
}

.focus\:mr-80:focus{
  margin-right     : 20rem !important;
}

.focus\:mb-80:focus{
  margin-bottom     : 20rem !important;
}

.focus\:ml-80:focus{
  margin-left     : 20rem !important;
}

.focus\:mt-96:focus{
  margin-top     : 24rem !important;
}

.focus\:mr-96:focus{
  margin-right     : 24rem !important;
}

.focus\:mb-96:focus{
  margin-bottom     : 24rem !important;
}

.focus\:ml-96:focus{
  margin-left     : 24rem !important;
}

.focus\:mt-auto:focus{
  margin-top     : auto !important;
}

.focus\:mr-auto:focus{
  margin-right     : auto !important;
}

.focus\:mb-auto:focus{
  margin-bottom     : auto !important;
}

.focus\:ml-auto:focus{
  margin-left     : auto !important;
}

.focus\:mt-px:focus{
  margin-top     : 1px !important;
}

.focus\:mr-px:focus{
  margin-right     : 1px !important;
}

.focus\:mb-px:focus{
  margin-bottom     : 1px !important;
}

.focus\:ml-px:focus{
  margin-left     : 1px !important;
}

.focus\:mt-0\.5:focus{
  margin-top     : 0.125rem !important;
}

.focus\:mr-0\.5:focus{
  margin-right     : 0.125rem !important;
}

.focus\:mb-0\.5:focus{
  margin-bottom     : 0.125rem !important;
}

.focus\:ml-0\.5:focus{
  margin-left     : 0.125rem !important;
}

.focus\:mt-1\.5:focus{
  margin-top     : 0.375rem !important;
}

.focus\:mr-1\.5:focus{
  margin-right     : 0.375rem !important;
}

.focus\:mb-1\.5:focus{
  margin-bottom     : 0.375rem !important;
}

.focus\:ml-1\.5:focus{
  margin-left     : 0.375rem !important;
}

.focus\:mt-2\.5:focus{
  margin-top     : 0.625rem !important;
}

.focus\:mr-2\.5:focus{
  margin-right     : 0.625rem !important;
}

.focus\:mb-2\.5:focus{
  margin-bottom     : 0.625rem !important;
}

.focus\:ml-2\.5:focus{
  margin-left     : 0.625rem !important;
}

.focus\:mt-3\.5:focus{
  margin-top     : 0.875rem !important;
}

.focus\:mr-3\.5:focus{
  margin-right     : 0.875rem !important;
}

.focus\:mb-3\.5:focus{
  margin-bottom     : 0.875rem !important;
}

.focus\:ml-3\.5:focus{
  margin-left     : 0.875rem !important;
}

.focus\:mt-1\/2:focus{
  margin-top     : 50% !important;
}

.focus\:mr-1\/2:focus{
  margin-right     : 50% !important;
}

.focus\:mb-1\/2:focus{
  margin-bottom     : 50% !important;
}

.focus\:ml-1\/2:focus{
  margin-left     : 50% !important;
}

.focus\:mt-1\/3:focus{
  margin-top     : 33.333333% !important;
}

.focus\:mr-1\/3:focus{
  margin-right     : 33.333333% !important;
}

.focus\:mb-1\/3:focus{
  margin-bottom     : 33.333333% !important;
}

.focus\:ml-1\/3:focus{
  margin-left     : 33.333333% !important;
}

.focus\:mt-2\/3:focus{
  margin-top     : 66.666667% !important;
}

.focus\:mr-2\/3:focus{
  margin-right     : 66.666667% !important;
}

.focus\:mb-2\/3:focus{
  margin-bottom     : 66.666667% !important;
}

.focus\:ml-2\/3:focus{
  margin-left     : 66.666667% !important;
}

.focus\:mt-1\/4:focus{
  margin-top     : 25% !important;
}

.focus\:mr-1\/4:focus{
  margin-right     : 25% !important;
}

.focus\:mb-1\/4:focus{
  margin-bottom     : 25% !important;
}

.focus\:ml-1\/4:focus{
  margin-left     : 25% !important;
}

.focus\:mt-2\/4:focus{
  margin-top     : 50% !important;
}

.focus\:mr-2\/4:focus{
  margin-right     : 50% !important;
}

.focus\:mb-2\/4:focus{
  margin-bottom     : 50% !important;
}

.focus\:ml-2\/4:focus{
  margin-left     : 50% !important;
}

.focus\:mt-3\/4:focus{
  margin-top     : 75% !important;
}

.focus\:mr-3\/4:focus{
  margin-right     : 75% !important;
}

.focus\:mb-3\/4:focus{
  margin-bottom     : 75% !important;
}

.focus\:ml-3\/4:focus{
  margin-left     : 75% !important;
}

.focus\:mt-1\/5:focus{
  margin-top     : 20% !important;
}

.focus\:mr-1\/5:focus{
  margin-right     : 20% !important;
}

.focus\:mb-1\/5:focus{
  margin-bottom     : 20% !important;
}

.focus\:ml-1\/5:focus{
  margin-left     : 20% !important;
}

.focus\:mt-2\/5:focus{
  margin-top     : 40% !important;
}

.focus\:mr-2\/5:focus{
  margin-right     : 40% !important;
}

.focus\:mb-2\/5:focus{
  margin-bottom     : 40% !important;
}

.focus\:ml-2\/5:focus{
  margin-left     : 40% !important;
}

.focus\:mt-3\/5:focus{
  margin-top     : 60% !important;
}

.focus\:mr-3\/5:focus{
  margin-right     : 60% !important;
}

.focus\:mb-3\/5:focus{
  margin-bottom     : 60% !important;
}

.focus\:ml-3\/5:focus{
  margin-left     : 60% !important;
}

.focus\:mt-4\/5:focus{
  margin-top     : 80% !important;
}

.focus\:mr-4\/5:focus{
  margin-right     : 80% !important;
}

.focus\:mb-4\/5:focus{
  margin-bottom     : 80% !important;
}

.focus\:ml-4\/5:focus{
  margin-left     : 80% !important;
}

.focus\:mt-1\/6:focus{
  margin-top     : 16.666667% !important;
}

.focus\:mr-1\/6:focus{
  margin-right     : 16.666667% !important;
}

.focus\:mb-1\/6:focus{
  margin-bottom     : 16.666667% !important;
}

.focus\:ml-1\/6:focus{
  margin-left     : 16.666667% !important;
}

.focus\:mt-2\/6:focus{
  margin-top     : 33.333333% !important;
}

.focus\:mr-2\/6:focus{
  margin-right     : 33.333333% !important;
}

.focus\:mb-2\/6:focus{
  margin-bottom     : 33.333333% !important;
}

.focus\:ml-2\/6:focus{
  margin-left     : 33.333333% !important;
}

.focus\:mt-3\/6:focus{
  margin-top     : 50% !important;
}

.focus\:mr-3\/6:focus{
  margin-right     : 50% !important;
}

.focus\:mb-3\/6:focus{
  margin-bottom     : 50% !important;
}

.focus\:ml-3\/6:focus{
  margin-left     : 50% !important;
}

.focus\:mt-4\/6:focus{
  margin-top     : 66.666667% !important;
}

.focus\:mr-4\/6:focus{
  margin-right     : 66.666667% !important;
}

.focus\:mb-4\/6:focus{
  margin-bottom     : 66.666667% !important;
}

.focus\:ml-4\/6:focus{
  margin-left     : 66.666667% !important;
}

.focus\:mt-5\/6:focus{
  margin-top     : 83.333333% !important;
}

.focus\:mr-5\/6:focus{
  margin-right     : 83.333333% !important;
}

.focus\:mb-5\/6:focus{
  margin-bottom     : 83.333333% !important;
}

.focus\:ml-5\/6:focus{
  margin-left     : 83.333333% !important;
}

.focus\:mt-1\/12:focus{
  margin-top     : 8.333333% !important;
}

.focus\:mr-1\/12:focus{
  margin-right     : 8.333333% !important;
}

.focus\:mb-1\/12:focus{
  margin-bottom     : 8.333333% !important;
}

.focus\:ml-1\/12:focus{
  margin-left     : 8.333333% !important;
}

.focus\:mt-2\/12:focus{
  margin-top     : 16.666667% !important;
}

.focus\:mr-2\/12:focus{
  margin-right     : 16.666667% !important;
}

.focus\:mb-2\/12:focus{
  margin-bottom     : 16.666667% !important;
}

.focus\:ml-2\/12:focus{
  margin-left     : 16.666667% !important;
}

.focus\:mt-3\/12:focus{
  margin-top     : 25% !important;
}

.focus\:mr-3\/12:focus{
  margin-right     : 25% !important;
}

.focus\:mb-3\/12:focus{
  margin-bottom     : 25% !important;
}

.focus\:ml-3\/12:focus{
  margin-left     : 25% !important;
}

.focus\:mt-4\/12:focus{
  margin-top     : 33.333333% !important;
}

.focus\:mr-4\/12:focus{
  margin-right     : 33.333333% !important;
}

.focus\:mb-4\/12:focus{
  margin-bottom     : 33.333333% !important;
}

.focus\:ml-4\/12:focus{
  margin-left     : 33.333333% !important;
}

.focus\:mt-5\/12:focus{
  margin-top     : 41.666667% !important;
}

.focus\:mr-5\/12:focus{
  margin-right     : 41.666667% !important;
}

.focus\:mb-5\/12:focus{
  margin-bottom     : 41.666667% !important;
}

.focus\:ml-5\/12:focus{
  margin-left     : 41.666667% !important;
}

.focus\:mt-6\/12:focus{
  margin-top     : 50% !important;
}

.focus\:mr-6\/12:focus{
  margin-right     : 50% !important;
}

.focus\:mb-6\/12:focus{
  margin-bottom     : 50% !important;
}

.focus\:ml-6\/12:focus{
  margin-left     : 50% !important;
}

.focus\:mt-7\/12:focus{
  margin-top     : 58.333333% !important;
}

.focus\:mr-7\/12:focus{
  margin-right     : 58.333333% !important;
}

.focus\:mb-7\/12:focus{
  margin-bottom     : 58.333333% !important;
}

.focus\:ml-7\/12:focus{
  margin-left     : 58.333333% !important;
}

.focus\:mt-8\/12:focus{
  margin-top     : 66.666667% !important;
}

.focus\:mr-8\/12:focus{
  margin-right     : 66.666667% !important;
}

.focus\:mb-8\/12:focus{
  margin-bottom     : 66.666667% !important;
}

.focus\:ml-8\/12:focus{
  margin-left     : 66.666667% !important;
}

.focus\:mt-9\/12:focus{
  margin-top     : 75% !important;
}

.focus\:mr-9\/12:focus{
  margin-right     : 75% !important;
}

.focus\:mb-9\/12:focus{
  margin-bottom     : 75% !important;
}

.focus\:ml-9\/12:focus{
  margin-left     : 75% !important;
}

.focus\:mt-10\/12:focus{
  margin-top     : 83.333333% !important;
}

.focus\:mr-10\/12:focus{
  margin-right     : 83.333333% !important;
}

.focus\:mb-10\/12:focus{
  margin-bottom     : 83.333333% !important;
}

.focus\:ml-10\/12:focus{
  margin-left     : 83.333333% !important;
}

.focus\:mt-11\/12:focus{
  margin-top     : 91.666667% !important;
}

.focus\:mr-11\/12:focus{
  margin-right     : 91.666667% !important;
}

.focus\:mb-11\/12:focus{
  margin-bottom     : 91.666667% !important;
}

.focus\:ml-11\/12:focus{
  margin-left     : 91.666667% !important;
}

.focus\:mt-full:focus{
  margin-top     : 100% !important;
}

.focus\:mr-full:focus{
  margin-right     : 100% !important;
}

.focus\:mb-full:focus{
  margin-bottom     : 100% !important;
}

.focus\:ml-full:focus{
  margin-left     : 100% !important;
}

.focus\:-mt-1:focus{
  margin-top     : -0.25rem !important;
}

.focus\:-mr-1:focus{
  margin-right     : -0.25rem !important;
}

.focus\:-mb-1:focus{
  margin-bottom     : -0.25rem !important;
}

.focus\:-ml-1:focus{
  margin-left     : -0.25rem !important;
}

.focus\:-mt-2:focus{
  margin-top     : -0.5rem !important;
}

.focus\:-mr-2:focus{
  margin-right     : -0.5rem !important;
}

.focus\:-mb-2:focus{
  margin-bottom     : -0.5rem !important;
}

.focus\:-ml-2:focus{
  margin-left     : -0.5rem !important;
}

.focus\:-mt-3:focus{
  margin-top     : -0.75rem !important;
}

.focus\:-mr-3:focus{
  margin-right     : -0.75rem !important;
}

.focus\:-mb-3:focus{
  margin-bottom     : -0.75rem !important;
}

.focus\:-ml-3:focus{
  margin-left     : -0.75rem !important;
}

.focus\:-mt-4:focus{
  margin-top     : -1rem !important;
}

.focus\:-mr-4:focus{
  margin-right     : -1rem !important;
}

.focus\:-mb-4:focus{
  margin-bottom     : -1rem !important;
}

.focus\:-ml-4:focus{
  margin-left     : -1rem !important;
}

.focus\:-mt-5:focus{
  margin-top     : -1.25rem !important;
}

.focus\:-mr-5:focus{
  margin-right     : -1.25rem !important;
}

.focus\:-mb-5:focus{
  margin-bottom     : -1.25rem !important;
}

.focus\:-ml-5:focus{
  margin-left     : -1.25rem !important;
}

.focus\:-mt-6:focus{
  margin-top     : -1.5rem !important;
}

.focus\:-mr-6:focus{
  margin-right     : -1.5rem !important;
}

.focus\:-mb-6:focus{
  margin-bottom     : -1.5rem !important;
}

.focus\:-ml-6:focus{
  margin-left     : -1.5rem !important;
}

.focus\:-mt-7:focus{
  margin-top     : -1.75rem !important;
}

.focus\:-mr-7:focus{
  margin-right     : -1.75rem !important;
}

.focus\:-mb-7:focus{
  margin-bottom     : -1.75rem !important;
}

.focus\:-ml-7:focus{
  margin-left     : -1.75rem !important;
}

.focus\:-mt-8:focus{
  margin-top     : -2rem !important;
}

.focus\:-mr-8:focus{
  margin-right     : -2rem !important;
}

.focus\:-mb-8:focus{
  margin-bottom     : -2rem !important;
}

.focus\:-ml-8:focus{
  margin-left     : -2rem !important;
}

.focus\:-mt-9:focus{
  margin-top     : -2.25rem !important;
}

.focus\:-mr-9:focus{
  margin-right     : -2.25rem !important;
}

.focus\:-mb-9:focus{
  margin-bottom     : -2.25rem !important;
}

.focus\:-ml-9:focus{
  margin-left     : -2.25rem !important;
}

.focus\:-mt-10:focus{
  margin-top     : -2.5rem !important;
}

.focus\:-mr-10:focus{
  margin-right     : -2.5rem !important;
}

.focus\:-mb-10:focus{
  margin-bottom     : -2.5rem !important;
}

.focus\:-ml-10:focus{
  margin-left     : -2.5rem !important;
}

.focus\:-mt-11:focus{
  margin-top     : -2.75rem !important;
}

.focus\:-mr-11:focus{
  margin-right     : -2.75rem !important;
}

.focus\:-mb-11:focus{
  margin-bottom     : -2.75rem !important;
}

.focus\:-ml-11:focus{
  margin-left     : -2.75rem !important;
}

.focus\:-mt-12:focus{
  margin-top     : -3rem !important;
}

.focus\:-mr-12:focus{
  margin-right     : -3rem !important;
}

.focus\:-mb-12:focus{
  margin-bottom     : -3rem !important;
}

.focus\:-ml-12:focus{
  margin-left     : -3rem !important;
}

.focus\:-mt-13:focus{
  margin-top     : -3.25rem !important;
}

.focus\:-mr-13:focus{
  margin-right     : -3.25rem !important;
}

.focus\:-mb-13:focus{
  margin-bottom     : -3.25rem !important;
}

.focus\:-ml-13:focus{
  margin-left     : -3.25rem !important;
}

.focus\:-mt-14:focus{
  margin-top     : -3.5rem !important;
}

.focus\:-mr-14:focus{
  margin-right     : -3.5rem !important;
}

.focus\:-mb-14:focus{
  margin-bottom     : -3.5rem !important;
}

.focus\:-ml-14:focus{
  margin-left     : -3.5rem !important;
}

.focus\:-mt-15:focus{
  margin-top     : -3.75rem !important;
}

.focus\:-mr-15:focus{
  margin-right     : -3.75rem !important;
}

.focus\:-mb-15:focus{
  margin-bottom     : -3.75rem !important;
}

.focus\:-ml-15:focus{
  margin-left     : -3.75rem !important;
}

.focus\:-mt-16:focus{
  margin-top     : -4rem !important;
}

.focus\:-mr-16:focus{
  margin-right     : -4rem !important;
}

.focus\:-mb-16:focus{
  margin-bottom     : -4rem !important;
}

.focus\:-ml-16:focus{
  margin-left     : -4rem !important;
}

.focus\:-mt-20:focus{
  margin-top     : -5rem !important;
}

.focus\:-mr-20:focus{
  margin-right     : -5rem !important;
}

.focus\:-mb-20:focus{
  margin-bottom     : -5rem !important;
}

.focus\:-ml-20:focus{
  margin-left     : -5rem !important;
}

.focus\:-mt-24:focus{
  margin-top     : -6rem !important;
}

.focus\:-mr-24:focus{
  margin-right     : -6rem !important;
}

.focus\:-mb-24:focus{
  margin-bottom     : -6rem !important;
}

.focus\:-ml-24:focus{
  margin-left     : -6rem !important;
}

.focus\:-mt-28:focus{
  margin-top     : -7rem !important;
}

.focus\:-mr-28:focus{
  margin-right     : -7rem !important;
}

.focus\:-mb-28:focus{
  margin-bottom     : -7rem !important;
}

.focus\:-ml-28:focus{
  margin-left     : -7rem !important;
}

.focus\:-mt-32:focus{
  margin-top     : -8rem !important;
}

.focus\:-mr-32:focus{
  margin-right     : -8rem !important;
}

.focus\:-mb-32:focus{
  margin-bottom     : -8rem !important;
}

.focus\:-ml-32:focus{
  margin-left     : -8rem !important;
}

.focus\:-mt-36:focus{
  margin-top     : -9rem !important;
}

.focus\:-mr-36:focus{
  margin-right     : -9rem !important;
}

.focus\:-mb-36:focus{
  margin-bottom     : -9rem !important;
}

.focus\:-ml-36:focus{
  margin-left     : -9rem !important;
}

.focus\:-mt-40:focus{
  margin-top     : -10rem !important;
}

.focus\:-mr-40:focus{
  margin-right     : -10rem !important;
}

.focus\:-mb-40:focus{
  margin-bottom     : -10rem !important;
}

.focus\:-ml-40:focus{
  margin-left     : -10rem !important;
}

.focus\:-mt-44:focus{
  margin-top     : -11rem !important;
}

.focus\:-mr-44:focus{
  margin-right     : -11rem !important;
}

.focus\:-mb-44:focus{
  margin-bottom     : -11rem !important;
}

.focus\:-ml-44:focus{
  margin-left     : -11rem !important;
}

.focus\:-mt-48:focus{
  margin-top     : -12rem !important;
}

.focus\:-mr-48:focus{
  margin-right     : -12rem !important;
}

.focus\:-mb-48:focus{
  margin-bottom     : -12rem !important;
}

.focus\:-ml-48:focus{
  margin-left     : -12rem !important;
}

.focus\:-mt-52:focus{
  margin-top     : -13rem !important;
}

.focus\:-mr-52:focus{
  margin-right     : -13rem !important;
}

.focus\:-mb-52:focus{
  margin-bottom     : -13rem !important;
}

.focus\:-ml-52:focus{
  margin-left     : -13rem !important;
}

.focus\:-mt-56:focus{
  margin-top     : -14rem !important;
}

.focus\:-mr-56:focus{
  margin-right     : -14rem !important;
}

.focus\:-mb-56:focus{
  margin-bottom     : -14rem !important;
}

.focus\:-ml-56:focus{
  margin-left     : -14rem !important;
}

.focus\:-mt-60:focus{
  margin-top     : -15rem !important;
}

.focus\:-mr-60:focus{
  margin-right     : -15rem !important;
}

.focus\:-mb-60:focus{
  margin-bottom     : -15rem !important;
}

.focus\:-ml-60:focus{
  margin-left     : -15rem !important;
}

.focus\:-mt-64:focus{
  margin-top     : -16rem !important;
}

.focus\:-mr-64:focus{
  margin-right     : -16rem !important;
}

.focus\:-mb-64:focus{
  margin-bottom     : -16rem !important;
}

.focus\:-ml-64:focus{
  margin-left     : -16rem !important;
}

.focus\:-mt-72:focus{
  margin-top     : -18rem !important;
}

.focus\:-mr-72:focus{
  margin-right     : -18rem !important;
}

.focus\:-mb-72:focus{
  margin-bottom     : -18rem !important;
}

.focus\:-ml-72:focus{
  margin-left     : -18rem !important;
}

.focus\:-mt-80:focus{
  margin-top     : -20rem !important;
}

.focus\:-mr-80:focus{
  margin-right     : -20rem !important;
}

.focus\:-mb-80:focus{
  margin-bottom     : -20rem !important;
}

.focus\:-ml-80:focus{
  margin-left     : -20rem !important;
}

.focus\:-mt-96:focus{
  margin-top     : -24rem !important;
}

.focus\:-mr-96:focus{
  margin-right     : -24rem !important;
}

.focus\:-mb-96:focus{
  margin-bottom     : -24rem !important;
}

.focus\:-ml-96:focus{
  margin-left     : -24rem !important;
}

.focus\:-mt-px:focus{
  margin-top     : -1px !important;
}

.focus\:-mr-px:focus{
  margin-right     : -1px !important;
}

.focus\:-mb-px:focus{
  margin-bottom     : -1px !important;
}

.focus\:-ml-px:focus{
  margin-left     : -1px !important;
}

.focus\:-mt-0\.5:focus{
  margin-top     : -0.125rem !important;
}

.focus\:-mr-0\.5:focus{
  margin-right     : -0.125rem !important;
}

.focus\:-mb-0\.5:focus{
  margin-bottom     : -0.125rem !important;
}

.focus\:-ml-0\.5:focus{
  margin-left     : -0.125rem !important;
}

.focus\:-mt-1\.5:focus{
  margin-top     : -0.375rem !important;
}

.focus\:-mr-1\.5:focus{
  margin-right     : -0.375rem !important;
}

.focus\:-mb-1\.5:focus{
  margin-bottom     : -0.375rem !important;
}

.focus\:-ml-1\.5:focus{
  margin-left     : -0.375rem !important;
}

.focus\:-mt-2\.5:focus{
  margin-top     : -0.625rem !important;
}

.focus\:-mr-2\.5:focus{
  margin-right     : -0.625rem !important;
}

.focus\:-mb-2\.5:focus{
  margin-bottom     : -0.625rem !important;
}

.focus\:-ml-2\.5:focus{
  margin-left     : -0.625rem !important;
}

.focus\:-mt-3\.5:focus{
  margin-top     : -0.875rem !important;
}

.focus\:-mr-3\.5:focus{
  margin-right     : -0.875rem !important;
}

.focus\:-mb-3\.5:focus{
  margin-bottom     : -0.875rem !important;
}

.focus\:-ml-3\.5:focus{
  margin-left     : -0.875rem !important;
}

.focus\:-mt-1\/2:focus{
  margin-top     : -50% !important;
}

.focus\:-mr-1\/2:focus{
  margin-right     : -50% !important;
}

.focus\:-mb-1\/2:focus{
  margin-bottom     : -50% !important;
}

.focus\:-ml-1\/2:focus{
  margin-left     : -50% !important;
}

.focus\:-mt-1\/3:focus{
  margin-top     : -33.33333% !important;
}

.focus\:-mr-1\/3:focus{
  margin-right     : -33.33333% !important;
}

.focus\:-mb-1\/3:focus{
  margin-bottom     : -33.33333% !important;
}

.focus\:-ml-1\/3:focus{
  margin-left     : -33.33333% !important;
}

.focus\:-mt-2\/3:focus{
  margin-top     : -66.66667% !important;
}

.focus\:-mr-2\/3:focus{
  margin-right     : -66.66667% !important;
}

.focus\:-mb-2\/3:focus{
  margin-bottom     : -66.66667% !important;
}

.focus\:-ml-2\/3:focus{
  margin-left     : -66.66667% !important;
}

.focus\:-mt-1\/4:focus{
  margin-top     : -25% !important;
}

.focus\:-mr-1\/4:focus{
  margin-right     : -25% !important;
}

.focus\:-mb-1\/4:focus{
  margin-bottom     : -25% !important;
}

.focus\:-ml-1\/4:focus{
  margin-left     : -25% !important;
}

.focus\:-mt-2\/4:focus{
  margin-top     : -50% !important;
}

.focus\:-mr-2\/4:focus{
  margin-right     : -50% !important;
}

.focus\:-mb-2\/4:focus{
  margin-bottom     : -50% !important;
}

.focus\:-ml-2\/4:focus{
  margin-left     : -50% !important;
}

.focus\:-mt-3\/4:focus{
  margin-top     : -75% !important;
}

.focus\:-mr-3\/4:focus{
  margin-right     : -75% !important;
}

.focus\:-mb-3\/4:focus{
  margin-bottom     : -75% !important;
}

.focus\:-ml-3\/4:focus{
  margin-left     : -75% !important;
}

.focus\:-mt-1\/5:focus{
  margin-top     : -20% !important;
}

.focus\:-mr-1\/5:focus{
  margin-right     : -20% !important;
}

.focus\:-mb-1\/5:focus{
  margin-bottom     : -20% !important;
}

.focus\:-ml-1\/5:focus{
  margin-left     : -20% !important;
}

.focus\:-mt-2\/5:focus{
  margin-top     : -40% !important;
}

.focus\:-mr-2\/5:focus{
  margin-right     : -40% !important;
}

.focus\:-mb-2\/5:focus{
  margin-bottom     : -40% !important;
}

.focus\:-ml-2\/5:focus{
  margin-left     : -40% !important;
}

.focus\:-mt-3\/5:focus{
  margin-top     : -60% !important;
}

.focus\:-mr-3\/5:focus{
  margin-right     : -60% !important;
}

.focus\:-mb-3\/5:focus{
  margin-bottom     : -60% !important;
}

.focus\:-ml-3\/5:focus{
  margin-left     : -60% !important;
}

.focus\:-mt-4\/5:focus{
  margin-top     : -80% !important;
}

.focus\:-mr-4\/5:focus{
  margin-right     : -80% !important;
}

.focus\:-mb-4\/5:focus{
  margin-bottom     : -80% !important;
}

.focus\:-ml-4\/5:focus{
  margin-left     : -80% !important;
}

.focus\:-mt-1\/6:focus{
  margin-top     : -16.66667% !important;
}

.focus\:-mr-1\/6:focus{
  margin-right     : -16.66667% !important;
}

.focus\:-mb-1\/6:focus{
  margin-bottom     : -16.66667% !important;
}

.focus\:-ml-1\/6:focus{
  margin-left     : -16.66667% !important;
}

.focus\:-mt-2\/6:focus{
  margin-top     : -33.33333% !important;
}

.focus\:-mr-2\/6:focus{
  margin-right     : -33.33333% !important;
}

.focus\:-mb-2\/6:focus{
  margin-bottom     : -33.33333% !important;
}

.focus\:-ml-2\/6:focus{
  margin-left     : -33.33333% !important;
}

.focus\:-mt-3\/6:focus{
  margin-top     : -50% !important;
}

.focus\:-mr-3\/6:focus{
  margin-right     : -50% !important;
}

.focus\:-mb-3\/6:focus{
  margin-bottom     : -50% !important;
}

.focus\:-ml-3\/6:focus{
  margin-left     : -50% !important;
}

.focus\:-mt-4\/6:focus{
  margin-top     : -66.66667% !important;
}

.focus\:-mr-4\/6:focus{
  margin-right     : -66.66667% !important;
}

.focus\:-mb-4\/6:focus{
  margin-bottom     : -66.66667% !important;
}

.focus\:-ml-4\/6:focus{
  margin-left     : -66.66667% !important;
}

.focus\:-mt-5\/6:focus{
  margin-top     : -83.33333% !important;
}

.focus\:-mr-5\/6:focus{
  margin-right     : -83.33333% !important;
}

.focus\:-mb-5\/6:focus{
  margin-bottom     : -83.33333% !important;
}

.focus\:-ml-5\/6:focus{
  margin-left     : -83.33333% !important;
}

.focus\:-mt-1\/12:focus{
  margin-top     : -8.33333% !important;
}

.focus\:-mr-1\/12:focus{
  margin-right     : -8.33333% !important;
}

.focus\:-mb-1\/12:focus{
  margin-bottom     : -8.33333% !important;
}

.focus\:-ml-1\/12:focus{
  margin-left     : -8.33333% !important;
}

.focus\:-mt-2\/12:focus{
  margin-top     : -16.66667% !important;
}

.focus\:-mr-2\/12:focus{
  margin-right     : -16.66667% !important;
}

.focus\:-mb-2\/12:focus{
  margin-bottom     : -16.66667% !important;
}

.focus\:-ml-2\/12:focus{
  margin-left     : -16.66667% !important;
}

.focus\:-mt-3\/12:focus{
  margin-top     : -25% !important;
}

.focus\:-mr-3\/12:focus{
  margin-right     : -25% !important;
}

.focus\:-mb-3\/12:focus{
  margin-bottom     : -25% !important;
}

.focus\:-ml-3\/12:focus{
  margin-left     : -25% !important;
}

.focus\:-mt-4\/12:focus{
  margin-top     : -33.33333% !important;
}

.focus\:-mr-4\/12:focus{
  margin-right     : -33.33333% !important;
}

.focus\:-mb-4\/12:focus{
  margin-bottom     : -33.33333% !important;
}

.focus\:-ml-4\/12:focus{
  margin-left     : -33.33333% !important;
}

.focus\:-mt-5\/12:focus{
  margin-top     : -41.66667% !important;
}

.focus\:-mr-5\/12:focus{
  margin-right     : -41.66667% !important;
}

.focus\:-mb-5\/12:focus{
  margin-bottom     : -41.66667% !important;
}

.focus\:-ml-5\/12:focus{
  margin-left     : -41.66667% !important;
}

.focus\:-mt-6\/12:focus{
  margin-top     : -50% !important;
}

.focus\:-mr-6\/12:focus{
  margin-right     : -50% !important;
}

.focus\:-mb-6\/12:focus{
  margin-bottom     : -50% !important;
}

.focus\:-ml-6\/12:focus{
  margin-left     : -50% !important;
}

.focus\:-mt-7\/12:focus{
  margin-top     : -58.33333% !important;
}

.focus\:-mr-7\/12:focus{
  margin-right     : -58.33333% !important;
}

.focus\:-mb-7\/12:focus{
  margin-bottom     : -58.33333% !important;
}

.focus\:-ml-7\/12:focus{
  margin-left     : -58.33333% !important;
}

.focus\:-mt-8\/12:focus{
  margin-top     : -66.66667% !important;
}

.focus\:-mr-8\/12:focus{
  margin-right     : -66.66667% !important;
}

.focus\:-mb-8\/12:focus{
  margin-bottom     : -66.66667% !important;
}

.focus\:-ml-8\/12:focus{
  margin-left     : -66.66667% !important;
}

.focus\:-mt-9\/12:focus{
  margin-top     : -75% !important;
}

.focus\:-mr-9\/12:focus{
  margin-right     : -75% !important;
}

.focus\:-mb-9\/12:focus{
  margin-bottom     : -75% !important;
}

.focus\:-ml-9\/12:focus{
  margin-left     : -75% !important;
}

.focus\:-mt-10\/12:focus{
  margin-top     : -83.33333% !important;
}

.focus\:-mr-10\/12:focus{
  margin-right     : -83.33333% !important;
}

.focus\:-mb-10\/12:focus{
  margin-bottom     : -83.33333% !important;
}

.focus\:-ml-10\/12:focus{
  margin-left     : -83.33333% !important;
}

.focus\:-mt-11\/12:focus{
  margin-top     : -91.66667% !important;
}

.focus\:-mr-11\/12:focus{
  margin-right     : -91.66667% !important;
}

.focus\:-mb-11\/12:focus{
  margin-bottom     : -91.66667% !important;
}

.focus\:-ml-11\/12:focus{
  margin-left     : -91.66667% !important;
}

.focus\:-mt-full:focus{
  margin-top     : -100% !important;
}

.focus\:-mr-full:focus{
  margin-right     : -100% !important;
}

.focus\:-mb-full:focus{
  margin-bottom     : -100% !important;
}

.focus\:-ml-full:focus{
  margin-left     : -100% !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-20{
  max-height     : 5rem !important;
}

.max-h-24{
  max-height     : 6rem !important;
}

.max-h-28{
  max-height     : 7rem !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-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-96{
  max-height     : 24rem !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;
}

.group:hover .group-hover\:max-h-0{
  max-height     : 0 !important;
}

.group:hover .group-hover\:max-h-1{
  max-height     : 0.25rem !important;
}

.group:hover .group-hover\:max-h-2{
  max-height     : 0.5rem !important;
}

.group:hover .group-hover\:max-h-3{
  max-height     : 0.75rem !important;
}

.group:hover .group-hover\:max-h-4{
  max-height     : 1rem !important;
}

.group:hover .group-hover\:max-h-5{
  max-height     : 1.25rem !important;
}

.group:hover .group-hover\:max-h-6{
  max-height     : 1.5rem !important;
}

.group:hover .group-hover\:max-h-7{
  max-height     : 1.75rem !important;
}

.group:hover .group-hover\:max-h-8{
  max-height     : 2rem !important;
}

.group:hover .group-hover\:max-h-9{
  max-height     : 2.25rem !important;
}

.group:hover .group-hover\:max-h-10{
  max-height     : 2.5rem !important;
}

.group:hover .group-hover\:max-h-11{
  max-height     : 2.75rem !important;
}

.group:hover .group-hover\:max-h-12{
  max-height     : 3rem !important;
}

.group:hover .group-hover\:max-h-13{
  max-height     : 3.25rem !important;
}

.group:hover .group-hover\:max-h-14{
  max-height     : 3.5rem !important;
}

.group:hover .group-hover\:max-h-15{
  max-height     : 3.75rem !important;
}

.group:hover .group-hover\:max-h-16{
  max-height     : 4rem !important;
}

.group:hover .group-hover\:max-h-20{
  max-height     : 5rem !important;
}

.group:hover .group-hover\:max-h-24{
  max-height     : 6rem !important;
}

.group:hover .group-hover\:max-h-28{
  max-height     : 7rem !important;
}

.group:hover .group-hover\:max-h-32{
  max-height     : 8rem !important;
}

.group:hover .group-hover\:max-h-36{
  max-height     : 9rem !important;
}

.group:hover .group-hover\:max-h-40{
  max-height     : 10rem !important;
}

.group:hover .group-hover\:max-h-44{
  max-height     : 11rem !important;
}

.group:hover .group-hover\:max-h-48{
  max-height     : 12rem !important;
}

.group:hover .group-hover\:max-h-52{
  max-height     : 13rem !important;
}

.group:hover .group-hover\:max-h-56{
  max-height     : 14rem !important;
}

.group:hover .group-hover\:max-h-60{
  max-height     : 15rem !important;
}

.group:hover .group-hover\:max-h-64{
  max-height     : 16rem !important;
}

.group:hover .group-hover\:max-h-72{
  max-height     : 18rem !important;
}

.group:hover .group-hover\:max-h-80{
  max-height     : 20rem !important;
}

.group:hover .group-hover\:max-h-96{
  max-height     : 24rem !important;
}

.group:hover .group-hover\:max-h-screen{
  max-height     : 100vh !important;
}

.group:hover .group-hover\:max-h-px{
  max-height     : 1px !important;
}

.group:hover .group-hover\:max-h-0\.5{
  max-height     : 0.125rem !important;
}

.group:hover .group-hover\:max-h-1\.5{
  max-height     : 0.375rem !important;
}

.group:hover .group-hover\:max-h-2\.5{
  max-height     : 0.625rem !important;
}

.group:hover .group-hover\:max-h-3\.5{
  max-height     : 0.875rem !important;
}

.group:hover .group-hover\:max-h-1\/2{
  max-height     : 50% !important;
}

.group:hover .group-hover\:max-h-1\/3{
  max-height     : 33.333333% !important;
}

.group:hover .group-hover\:max-h-2\/3{
  max-height     : 66.666667% !important;
}

.group:hover .group-hover\:max-h-1\/4{
  max-height     : 25% !important;
}

.group:hover .group-hover\:max-h-2\/4{
  max-height     : 50% !important;
}

.group:hover .group-hover\:max-h-3\/4{
  max-height     : 75% !important;
}

.group:hover .group-hover\:max-h-1\/5{
  max-height     : 20% !important;
}

.group:hover .group-hover\:max-h-2\/5{
  max-height     : 40% !important;
}

.group:hover .group-hover\:max-h-3\/5{
  max-height     : 60% !important;
}

.group:hover .group-hover\:max-h-4\/5{
  max-height     : 80% !important;
}

.group:hover .group-hover\:max-h-1\/6{
  max-height     : 16.666667% !important;
}

.group:hover .group-hover\:max-h-2\/6{
  max-height     : 33.333333% !important;
}

.group:hover .group-hover\:max-h-3\/6{
  max-height     : 50% !important;
}

.group:hover .group-hover\:max-h-4\/6{
  max-height     : 66.666667% !important;
}

.group:hover .group-hover\:max-h-5\/6{
  max-height     : 83.333333% !important;
}

.group:hover .group-hover\:max-h-1\/12{
  max-height     : 8.333333% !important;
}

.group:hover .group-hover\:max-h-2\/12{
  max-height     : 16.666667% !important;
}

.group:hover .group-hover\:max-h-3\/12{
  max-height     : 25% !important;
}

.group:hover .group-hover\:max-h-4\/12{
  max-height     : 33.333333% !important;
}

.group:hover .group-hover\:max-h-5\/12{
  max-height     : 41.666667% !important;
}

.group:hover .group-hover\:max-h-6\/12{
  max-height     : 50% !important;
}

.group:hover .group-hover\:max-h-7\/12{
  max-height     : 58.333333% !important;
}

.group:hover .group-hover\:max-h-8\/12{
  max-height     : 66.666667% !important;
}

.group:hover .group-hover\:max-h-9\/12{
  max-height     : 75% !important;
}

.group:hover .group-hover\:max-h-10\/12{
  max-height     : 83.333333% !important;
}

.group:hover .group-hover\:max-h-11\/12{
  max-height     : 91.666667% !important;
}

.group:hover .group-hover\:max-h-full{
  max-height     : 100% !important;
}

.hover\:max-h-0:hover{
  max-height     : 0 !important;
}

.hover\:max-h-1:hover{
  max-height     : 0.25rem !important;
}

.hover\:max-h-2:hover{
  max-height     : 0.5rem !important;
}

.hover\:max-h-3:hover{
  max-height     : 0.75rem !important;
}

.hover\:max-h-4:hover{
  max-height     : 1rem !important;
}

.hover\:max-h-5:hover{
  max-height     : 1.25rem !important;
}

.hover\:max-h-6:hover{
  max-height     : 1.5rem !important;
}

.hover\:max-h-7:hover{
  max-height     : 1.75rem !important;
}

.hover\:max-h-8:hover{
  max-height     : 2rem !important;
}

.hover\:max-h-9:hover{
  max-height     : 2.25rem !important;
}

.hover\:max-h-10:hover{
  max-height     : 2.5rem !important;
}

.hover\:max-h-11:hover{
  max-height     : 2.75rem !important;
}

.hover\:max-h-12:hover{
  max-height     : 3rem !important;
}

.hover\:max-h-13:hover{
  max-height     : 3.25rem !important;
}

.hover\:max-h-14:hover{
  max-height     : 3.5rem !important;
}

.hover\:max-h-15:hover{
  max-height     : 3.75rem !important;
}

.hover\:max-h-16:hover{
  max-height     : 4rem !important;
}

.hover\:max-h-20:hover{
  max-height     : 5rem !important;
}

.hover\:max-h-24:hover{
  max-height     : 6rem !important;
}

.hover\:max-h-28:hover{
  max-height     : 7rem !important;
}

.hover\:max-h-32:hover{
  max-height     : 8rem !important;
}

.hover\:max-h-36:hover{
  max-height     : 9rem !important;
}

.hover\:max-h-40:hover{
  max-height     : 10rem !important;
}

.hover\:max-h-44:hover{
  max-height     : 11rem !important;
}

.hover\:max-h-48:hover{
  max-height     : 12rem !important;
}

.hover\:max-h-52:hover{
  max-height     : 13rem !important;
}

.hover\:max-h-56:hover{
  max-height     : 14rem !important;
}

.hover\:max-h-60:hover{
  max-height     : 15rem !important;
}

.hover\:max-h-64:hover{
  max-height     : 16rem !important;
}

.hover\:max-h-72:hover{
  max-height     : 18rem !important;
}

.hover\:max-h-80:hover{
  max-height     : 20rem !important;
}

.hover\:max-h-96:hover{
  max-height     : 24rem !important;
}

.hover\:max-h-screen:hover{
  max-height     : 100vh !important;
}

.hover\:max-h-px:hover{
  max-height     : 1px !important;
}

.hover\:max-h-0\.5:hover{
  max-height     : 0.125rem !important;
}

.hover\:max-h-1\.5:hover{
  max-height     : 0.375rem !important;
}

.hover\:max-h-2\.5:hover{
  max-height     : 0.625rem !important;
}

.hover\:max-h-3\.5:hover{
  max-height     : 0.875rem !important;
}

.hover\:max-h-1\/2:hover{
  max-height     : 50% !important;
}

.hover\:max-h-1\/3:hover{
  max-height     : 33.333333% !important;
}

.hover\:max-h-2\/3:hover{
  max-height     : 66.666667% !important;
}

.hover\:max-h-1\/4:hover{
  max-height     : 25% !important;
}

.hover\:max-h-2\/4:hover{
  max-height     : 50% !important;
}

.hover\:max-h-3\/4:hover{
  max-height     : 75% !important;
}

.hover\:max-h-1\/5:hover{
  max-height     : 20% !important;
}

.hover\:max-h-2\/5:hover{
  max-height     : 40% !important;
}

.hover\:max-h-3\/5:hover{
  max-height     : 60% !important;
}

.hover\:max-h-4\/5:hover{
  max-height     : 80% !important;
}

.hover\:max-h-1\/6:hover{
  max-height     : 16.666667% !important;
}

.hover\:max-h-2\/6:hover{
  max-height     : 33.333333% !important;
}

.hover\:max-h-3\/6:hover{
  max-height     : 50% !important;
}

.hover\:max-h-4\/6:hover{
  max-height     : 66.666667% !important;
}

.hover\:max-h-5\/6:hover{
  max-height     : 83.333333% !important;
}

.hover\:max-h-1\/12:hover{
  max-height     : 8.333333% !important;
}

.hover\:max-h-2\/12:hover{
  max-height     : 16.666667% !important;
}

.hover\:max-h-3\/12:hover{
  max-height     : 25% !important;
}

.hover\:max-h-4\/12:hover{
  max-height     : 33.333333% !important;
}

.hover\:max-h-5\/12:hover{
  max-height     : 41.666667% !important;
}

.hover\:max-h-6\/12:hover{
  max-height     : 50% !important;
}

.hover\:max-h-7\/12:hover{
  max-height     : 58.333333% !important;
}

.hover\:max-h-8\/12:hover{
  max-height     : 66.666667% !important;
}

.hover\:max-h-9\/12:hover{
  max-height     : 75% !important;
}

.hover\:max-h-10\/12:hover{
  max-height     : 83.333333% !important;
}

.hover\:max-h-11\/12:hover{
  max-height     : 91.666667% !important;
}

.hover\:max-h-full:hover{
  max-height     : 100% !important;
}

.focus\:max-h-0:focus{
  max-height     : 0 !important;
}

.focus\:max-h-1:focus{
  max-height     : 0.25rem !important;
}

.focus\:max-h-2:focus{
  max-height     : 0.5rem !important;
}

.focus\:max-h-3:focus{
  max-height     : 0.75rem !important;
}

.focus\:max-h-4:focus{
  max-height     : 1rem !important;
}

.focus\:max-h-5:focus{
  max-height     : 1.25rem !important;
}

.focus\:max-h-6:focus{
  max-height     : 1.5rem !important;
}

.focus\:max-h-7:focus{
  max-height     : 1.75rem !important;
}

.focus\:max-h-8:focus{
  max-height     : 2rem !important;
}

.focus\:max-h-9:focus{
  max-height     : 2.25rem !important;
}

.focus\:max-h-10:focus{
  max-height     : 2.5rem !important;
}

.focus\:max-h-11:focus{
  max-height     : 2.75rem !important;
}

.focus\:max-h-12:focus{
  max-height     : 3rem !important;
}

.focus\:max-h-13:focus{
  max-height     : 3.25rem !important;
}

.focus\:max-h-14:focus{
  max-height     : 3.5rem !important;
}

.focus\:max-h-15:focus{
  max-height     : 3.75rem !important;
}

.focus\:max-h-16:focus{
  max-height     : 4rem !important;
}

.focus\:max-h-20:focus{
  max-height     : 5rem !important;
}

.focus\:max-h-24:focus{
  max-height     : 6rem !important;
}

.focus\:max-h-28:focus{
  max-height     : 7rem !important;
}

.focus\:max-h-32:focus{
  max-height     : 8rem !important;
}

.focus\:max-h-36:focus{
  max-height     : 9rem !important;
}

.focus\:max-h-40:focus{
  max-height     : 10rem !important;
}

.focus\:max-h-44:focus{
  max-height     : 11rem !important;
}

.focus\:max-h-48:focus{
  max-height     : 12rem !important;
}

.focus\:max-h-52:focus{
  max-height     : 13rem !important;
}

.focus\:max-h-56:focus{
  max-height     : 14rem !important;
}

.focus\:max-h-60:focus{
  max-height     : 15rem !important;
}

.focus\:max-h-64:focus{
  max-height     : 16rem !important;
}

.focus\:max-h-72:focus{
  max-height     : 18rem !important;
}

.focus\:max-h-80:focus{
  max-height     : 20rem !important;
}

.focus\:max-h-96:focus{
  max-height     : 24rem !important;
}

.focus\:max-h-screen:focus{
  max-height     : 100vh !important;
}

.focus\:max-h-px:focus{
  max-height     : 1px !important;
}

.focus\:max-h-0\.5:focus{
  max-height     : 0.125rem !important;
}

.focus\:max-h-1\.5:focus{
  max-height     : 0.375rem !important;
}

.focus\:max-h-2\.5:focus{
  max-height     : 0.625rem !important;
}

.focus\:max-h-3\.5:focus{
  max-height     : 0.875rem !important;
}

.focus\:max-h-1\/2:focus{
  max-height     : 50% !important;
}

.focus\:max-h-1\/3:focus{
  max-height     : 33.333333% !important;
}

.focus\:max-h-2\/3:focus{
  max-height     : 66.666667% !important;
}

.focus\:max-h-1\/4:focus{
  max-height     : 25% !important;
}

.focus\:max-h-2\/4:focus{
  max-height     : 50% !important;
}

.focus\:max-h-3\/4:focus{
  max-height     : 75% !important;
}

.focus\:max-h-1\/5:focus{
  max-height     : 20% !important;
}

.focus\:max-h-2\/5:focus{
  max-height     : 40% !important;
}

.focus\:max-h-3\/5:focus{
  max-height     : 60% !important;
}

.focus\:max-h-4\/5:focus{
  max-height     : 80% !important;
}

.focus\:max-h-1\/6:focus{
  max-height     : 16.666667% !important;
}

.focus\:max-h-2\/6:focus{
  max-height     : 33.333333% !important;
}

.focus\:max-h-3\/6:focus{
  max-height     : 50% !important;
}

.focus\:max-h-4\/6:focus{
  max-height     : 66.666667% !important;
}

.focus\:max-h-5\/6:focus{
  max-height     : 83.333333% !important;
}

.focus\:max-h-1\/12:focus{
  max-height     : 8.333333% !important;
}

.focus\:max-h-2\/12:focus{
  max-height     : 16.666667% !important;
}

.focus\:max-h-3\/12:focus{
  max-height     : 25% !important;
}

.focus\:max-h-4\/12:focus{
  max-height     : 33.333333% !important;
}

.focus\:max-h-5\/12:focus{
  max-height     : 41.666667% !important;
}

.focus\:max-h-6\/12:focus{
  max-height     : 50% !important;
}

.focus\:max-h-7\/12:focus{
  max-height     : 58.333333% !important;
}

.focus\:max-h-8\/12:focus{
  max-height     : 66.666667% !important;
}

.focus\:max-h-9\/12:focus{
  max-height     : 75% !important;
}

.focus\:max-h-10\/12:focus{
  max-height     : 83.333333% !important;
}

.focus\:max-h-11\/12:focus{
  max-height     : 91.666667% !important;
}

.focus\:max-h-full:focus{
  max-height     : 100% !important;
}

.max-w-0{
  max-width     : 0rem !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-prose{
  max-width     : 65ch !important;
}

.max-w-screen-sm{
  max-width     : 640px !important;
}

.max-w-screen-md{
  max-width     : 768px !important;
}

.max-w-screen-lg{
  max-width     : 1024px !important;
}

.max-w-screen-xl{
  max-width     : 1280px !important;
}

.group:hover .group-hover\:max-w-0{
  max-width     : 0rem !important;
}

.group:hover .group-hover\:max-w-none{
  max-width     : none !important;
}

.group:hover .group-hover\:max-w-xs{
  max-width     : 20rem !important;
}

.group:hover .group-hover\:max-w-sm{
  max-width     : 24rem !important;
}

.group:hover .group-hover\:max-w-md{
  max-width     : 28rem !important;
}

.group:hover .group-hover\:max-w-lg{
  max-width     : 32rem !important;
}

.group:hover .group-hover\:max-w-xl{
  max-width     : 36rem !important;
}

.group:hover .group-hover\:max-w-2xl{
  max-width     : 42rem !important;
}

.group:hover .group-hover\:max-w-3xl{
  max-width     : 48rem !important;
}

.group:hover .group-hover\:max-w-4xl{
  max-width     : 56rem !important;
}

.group:hover .group-hover\:max-w-5xl{
  max-width     : 64rem !important;
}

.group:hover .group-hover\:max-w-6xl{
  max-width     : 72rem !important;
}

.group:hover .group-hover\:max-w-7xl{
  max-width     : 80rem !important;
}

.group:hover .group-hover\:max-w-full{
  max-width     : 100% !important;
}

.group:hover .group-hover\:max-w-min-content{
  max-width     : -webkit-min-content !important;
  max-width     : -moz-min-content !important;
  max-width     : min-content !important;
}

.group:hover .group-hover\:max-w-max-content{
  max-width     : -webkit-max-content !important;
  max-width     : -moz-max-content !important;
  max-width     : max-content !important;
}

.group:hover .group-hover\:max-w-prose{
  max-width     : 65ch !important;
}

.group:hover .group-hover\:max-w-screen-sm{
  max-width     : 640px !important;
}

.group:hover .group-hover\:max-w-screen-md{
  max-width     : 768px !important;
}

.group:hover .group-hover\:max-w-screen-lg{
  max-width     : 1024px !important;
}

.group:hover .group-hover\:max-w-screen-xl{
  max-width     : 1280px !important;
}

.hover\:max-w-0:hover{
  max-width     : 0rem !important;
}

.hover\:max-w-none:hover{
  max-width     : none !important;
}

.hover\:max-w-xs:hover{
  max-width     : 20rem !important;
}

.hover\:max-w-sm:hover{
  max-width     : 24rem !important;
}

.hover\:max-w-md:hover{
  max-width     : 28rem !important;
}

.hover\:max-w-lg:hover{
  max-width     : 32rem !important;
}

.hover\:max-w-xl:hover{
  max-width     : 36rem !important;
}

.hover\:max-w-2xl:hover{
  max-width     : 42rem !important;
}

.hover\:max-w-3xl:hover{
  max-width     : 48rem !important;
}

.hover\:max-w-4xl:hover{
  max-width     : 56rem !important;
}

.hover\:max-w-5xl:hover{
  max-width     : 64rem !important;
}

.hover\:max-w-6xl:hover{
  max-width     : 72rem !important;
}

.hover\:max-w-7xl:hover{
  max-width     : 80rem !important;
}

.hover\:max-w-full:hover{
  max-width     : 100% !important;
}

.hover\:max-w-min-content:hover{
  max-width     : -webkit-min-content !important;
  max-width     : -moz-min-content !important;
  max-width     : min-content !important;
}

.hover\:max-w-max-content:hover{
  max-width     : -webkit-max-content !important;
  max-width     : -moz-max-content !important;
  max-width     : max-content !important;
}

.hover\:max-w-prose:hover{
  max-width     : 65ch !important;
}

.hover\:max-w-screen-sm:hover{
  max-width     : 640px !important;
}

.hover\:max-w-screen-md:hover{
  max-width     : 768px !important;
}

.hover\:max-w-screen-lg:hover{
  max-width     : 1024px !important;
}

.hover\:max-w-screen-xl:hover{
  max-width     : 1280px !important;
}

.focus\:max-w-0:focus{
  max-width     : 0rem !important;
}

.focus\:max-w-none:focus{
  max-width     : none !important;
}

.focus\:max-w-xs:focus{
  max-width     : 20rem !important;
}

.focus\:max-w-sm:focus{
  max-width     : 24rem !important;
}

.focus\:max-w-md:focus{
  max-width     : 28rem !important;
}

.focus\:max-w-lg:focus{
  max-width     : 32rem !important;
}

.focus\:max-w-xl:focus{
  max-width     : 36rem !important;
}

.focus\:max-w-2xl:focus{
  max-width     : 42rem !important;
}

.focus\:max-w-3xl:focus{
  max-width     : 48rem !important;
}

.focus\:max-w-4xl:focus{
  max-width     : 56rem !important;
}

.focus\:max-w-5xl:focus{
  max-width     : 64rem !important;
}

.focus\:max-w-6xl:focus{
  max-width     : 72rem !important;
}

.focus\:max-w-7xl:focus{
  max-width     : 80rem !important;
}

.focus\:max-w-full:focus{
  max-width     : 100% !important;
}

.focus\:max-w-min-content:focus{
  max-width     : -webkit-min-content !important;
  max-width     : -moz-min-content !important;
  max-width     : min-content !important;
}

.focus\:max-w-max-content:focus{
  max-width     : -webkit-max-content !important;
  max-width     : -moz-max-content !important;
  max-width     : max-content !important;
}

.focus\:max-w-prose:focus{
  max-width     : 65ch !important;
}

.focus\:max-w-screen-sm:focus{
  max-width     : 640px !important;
}

.focus\:max-w-screen-md:focus{
  max-width     : 768px !important;
}

.focus\:max-w-screen-lg:focus{
  max-width     : 1024px !important;
}

.focus\:max-w-screen-xl:focus{
  max-width     : 1280px !important;
}

.min-h-0{
  min-height     : 0 !important;
}

.min-h-full{
  min-height     : 100% !important;
}

.min-h-screen{
  min-height     : 100vh !important;
}

.group:hover .group-hover\:min-h-0{
  min-height     : 0 !important;
}

.group:hover .group-hover\:min-h-full{
  min-height     : 100% !important;
}

.group:hover .group-hover\:min-h-screen{
  min-height     : 100vh !important;
}

.hover\:min-h-0:hover{
  min-height     : 0 !important;
}

.hover\:min-h-full:hover{
  min-height     : 100% !important;
}

.hover\:min-h-screen:hover{
  min-height     : 100vh !important;
}

.focus\:min-h-0:focus{
  min-height     : 0 !important;
}

.focus\:min-h-full:focus{
  min-height     : 100% !important;
}

.focus\:min-h-screen:focus{
  min-height     : 100vh !important;
}

.min-w-0{
  min-width     : 0 !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;
}

.group:hover .group-hover\:min-w-0{
  min-width     : 0 !important;
}

.group:hover .group-hover\:min-w-full{
  min-width     : 100% !important;
}

.group:hover .group-hover\:min-w-min-content{
  min-width     : -webkit-min-content !important;
  min-width     : -moz-min-content !important;
  min-width     : min-content !important;
}

.group:hover .group-hover\:min-w-max-content{
  min-width     : -webkit-max-content !important;
  min-width     : -moz-max-content !important;
  min-width     : max-content !important;
}

.hover\:min-w-0:hover{
  min-width     : 0 !important;
}

.hover\:min-w-full:hover{
  min-width     : 100% !important;
}

.hover\:min-w-min-content:hover{
  min-width     : -webkit-min-content !important;
  min-width     : -moz-min-content !important;
  min-width     : min-content !important;
}

.hover\:min-w-max-content:hover{
  min-width     : -webkit-max-content !important;
  min-width     : -moz-max-content !important;
  min-width     : max-content !important;
}

.focus\:min-w-0:focus{
  min-width     : 0 !important;
}

.focus\:min-w-full:focus{
  min-width     : 100% !important;
}

.focus\:min-w-min-content:focus{
  min-width     : -webkit-min-content !important;
  min-width     : -moz-min-content !important;
  min-width     : min-content !important;
}

.focus\:min-w-max-content:focus{
  min-width     : -webkit-max-content !important;
  min-width     : -moz-max-content !important;
  min-width     : max-content !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;
}

.group:hover .group-hover\:object-contain{
  -o-object-fit     : contain !important;
     object-fit     : contain !important;
}

.group:hover .group-hover\:object-cover{
  -o-object-fit     : cover !important;
     object-fit     : cover !important;
}

.group:hover .group-hover\:object-fill{
  -o-object-fit     : fill !important;
     object-fit     : fill !important;
}

.group:hover .group-hover\:object-none{
  -o-object-fit     : none !important;
     object-fit     : none !important;
}

.group:hover .group-hover\:object-scale-down{
  -o-object-fit     : scale-down !important;
     object-fit     : scale-down !important;
}

.hover\:object-contain:hover{
  -o-object-fit     : contain !important;
     object-fit     : contain !important;
}

.hover\:object-cover:hover{
  -o-object-fit     : cover !important;
     object-fit     : cover !important;
}

.hover\:object-fill:hover{
  -o-object-fit     : fill !important;
     object-fit     : fill !important;
}

.hover\:object-none:hover{
  -o-object-fit     : none !important;
     object-fit     : none !important;
}

.hover\:object-scale-down:hover{
  -o-object-fit     : scale-down !important;
     object-fit     : scale-down !important;
}

.focus\:object-contain:focus{
  -o-object-fit     : contain !important;
     object-fit     : contain !important;
}

.focus\:object-cover:focus{
  -o-object-fit     : cover !important;
     object-fit     : cover !important;
}

.focus\:object-fill:focus{
  -o-object-fit     : fill !important;
     object-fit     : fill !important;
}

.focus\:object-none:focus{
  -o-object-fit     : none !important;
     object-fit     : none !important;
}

.focus\:object-scale-down:focus{
  -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;
}

.group:hover .group-hover\:object-bottom{
  -o-object-position     : bottom !important;
     object-position     : bottom !important;
}

.group:hover .group-hover\:object-center{
  -o-object-position     : center !important;
     object-position     : center !important;
}

.group:hover .group-hover\:object-left{
  -o-object-position     : left !important;
     object-position     : left !important;
}

.group:hover .group-hover\:object-left-bottom{
  -o-object-position     : left bottom !important;
     object-position     : left bottom !important;
}

.group:hover .group-hover\:object-left-top{
  -o-object-position     : left top !important;
     object-position     : left top !important;
}

.group:hover .group-hover\:object-right{
  -o-object-position     : right !important;
     object-position     : right !important;
}

.group:hover .group-hover\:object-right-bottom{
  -o-object-position     : right bottom !important;
     object-position     : right bottom !important;
}

.group:hover .group-hover\:object-right-top{
  -o-object-position     : right top !important;
     object-position     : right top !important;
}

.group:hover .group-hover\:object-top{
  -o-object-position     : top !important;
     object-position     : top !important;
}

.hover\:object-bottom:hover{
  -o-object-position     : bottom !important;
     object-position     : bottom !important;
}

.hover\:object-center:hover{
  -o-object-position     : center !important;
     object-position     : center !important;
}

.hover\:object-left:hover{
  -o-object-position     : left !important;
     object-position     : left !important;
}

.hover\:object-left-bottom:hover{
  -o-object-position     : left bottom !important;
     object-position     : left bottom !important;
}

.hover\:object-left-top:hover{
  -o-object-position     : left top !important;
     object-position     : left top !important;
}

.hover\:object-right:hover{
  -o-object-position     : right !important;
     object-position     : right !important;
}

.hover\:object-right-bottom:hover{
  -o-object-position     : right bottom !important;
     object-position     : right bottom !important;
}

.hover\:object-right-top:hover{
  -o-object-position     : right top !important;
     object-position     : right top !important;
}

.hover\:object-top:hover{
  -o-object-position     : top !important;
     object-position     : top !important;
}

.focus\:object-bottom:focus{
  -o-object-position     : bottom !important;
     object-position     : bottom !important;
}

.focus\:object-center:focus{
  -o-object-position     : center !important;
     object-position     : center !important;
}

.focus\:object-left:focus{
  -o-object-position     : left !important;
     object-position     : left !important;
}

.focus\:object-left-bottom:focus{
  -o-object-position     : left bottom !important;
     object-position     : left bottom !important;
}

.focus\:object-left-top:focus{
  -o-object-position     : left top !important;
     object-position     : left top !important;
}

.focus\:object-right:focus{
  -o-object-position     : right !important;
     object-position     : right !important;
}

.focus\:object-right-bottom:focus{
  -o-object-position     : right bottom !important;
     object-position     : right bottom !important;
}

.focus\:object-right-top:focus{
  -o-object-position     : right top !important;
     object-position     : right top !important;
}

.focus\:object-top:focus{
  -o-object-position     : top !important;
     object-position     : top !important;
}

.opacity-0{
  opacity     : 0 !important;
}

.opacity-25{
  opacity     : 0.25 !important;
}

.opacity-50{
  opacity     : 0.5 !important;
}

.opacity-75{
  opacity     : 0.75 !important;
}

.opacity-100{
  opacity     : 1 !important;
}

.group:hover .group-hover\:opacity-0{
  opacity     : 0 !important;
}

.group:hover .group-hover\:opacity-25{
  opacity     : 0.25 !important;
}

.group:hover .group-hover\:opacity-50{
  opacity     : 0.5 !important;
}

.group:hover .group-hover\:opacity-75{
  opacity     : 0.75 !important;
}

.group:hover .group-hover\:opacity-100{
  opacity     : 1 !important;
}

.hover\:opacity-0:hover{
  opacity     : 0 !important;
}

.hover\:opacity-25:hover{
  opacity     : 0.25 !important;
}

.hover\:opacity-50:hover{
  opacity     : 0.5 !important;
}

.hover\:opacity-75:hover{
  opacity     : 0.75 !important;
}

.hover\:opacity-100:hover{
  opacity     : 1 !important;
}

.focus\:opacity-0:focus{
  opacity     : 0 !important;
}

.focus\:opacity-25:focus{
  opacity     : 0.25 !important;
}

.focus\:opacity-50:focus{
  opacity     : 0.5 !important;
}

.focus\:opacity-75:focus{
  opacity     : 0.75 !important;
}

.focus\:opacity-100:focus{
  opacity     : 1 !important;
}

.outline-none{
  outline     : 0 !important;
}

.group:hover .group-hover\:outline-none{
  outline     : 0 !important;
}

.hover\:outline-none:hover{
  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;
}

.group:hover .group-hover\:overflow-auto{
  overflow     : auto !important;
}

.group:hover .group-hover\:overflow-hidden{
  overflow     : hidden !important;
}

.group:hover .group-hover\:overflow-visible{
  overflow     : visible !important;
}

.group:hover .group-hover\:overflow-scroll{
  overflow     : scroll !important;
}

.group:hover .group-hover\:overflow-x-auto{
  overflow-x     : auto !important;
}

.group:hover .group-hover\:overflow-y-auto{
  overflow-y     : auto !important;
}

.group:hover .group-hover\:overflow-x-hidden{
  overflow-x     : hidden !important;
}

.group:hover .group-hover\:overflow-y-hidden{
  overflow-y     : hidden !important;
}

.group:hover .group-hover\:overflow-x-visible{
  overflow-x     : visible !important;
}

.group:hover .group-hover\:overflow-y-visible{
  overflow-y     : visible !important;
}

.group:hover .group-hover\:overflow-x-scroll{
  overflow-x     : scroll !important;
}

.group:hover .group-hover\:overflow-y-scroll{
  overflow-y     : scroll !important;
}

.group:hover .group-hover\:scrolling-touch{
  -webkit-overflow-scrolling     : touch !important;
}

.group:hover .group-hover\:scrolling-auto{
  -webkit-overflow-scrolling     : auto !important;
}

.hover\:overflow-auto:hover{
  overflow     : auto !important;
}

.hover\:overflow-hidden:hover{
  overflow     : hidden !important;
}

.hover\:overflow-visible:hover{
  overflow     : visible !important;
}

.hover\:overflow-scroll:hover{
  overflow     : scroll !important;
}

.hover\:overflow-x-auto:hover{
  overflow-x     : auto !important;
}

.hover\:overflow-y-auto:hover{
  overflow-y     : auto !important;
}

.hover\:overflow-x-hidden:hover{
  overflow-x     : hidden !important;
}

.hover\:overflow-y-hidden:hover{
  overflow-y     : hidden !important;
}

.hover\:overflow-x-visible:hover{
  overflow-x     : visible !important;
}

.hover\:overflow-y-visible:hover{
  overflow-y     : visible !important;
}

.hover\:overflow-x-scroll:hover{
  overflow-x     : scroll !important;
}

.hover\:overflow-y-scroll:hover{
  overflow-y     : scroll !important;
}

.hover\:scrolling-touch:hover{
  -webkit-overflow-scrolling     : touch !important;
}

.hover\:scrolling-auto:hover{
  -webkit-overflow-scrolling     : auto !important;
}

.focus\:overflow-auto:focus{
  overflow     : auto !important;
}

.focus\:overflow-hidden:focus{
  overflow     : hidden !important;
}

.focus\:overflow-visible:focus{
  overflow     : visible !important;
}

.focus\:overflow-scroll:focus{
  overflow     : scroll !important;
}

.focus\:overflow-x-auto:focus{
  overflow-x     : auto !important;
}

.focus\:overflow-y-auto:focus{
  overflow-y     : auto !important;
}

.focus\:overflow-x-hidden:focus{
  overflow-x     : hidden !important;
}

.focus\:overflow-y-hidden:focus{
  overflow-y     : hidden !important;
}

.focus\:overflow-x-visible:focus{
  overflow-x     : visible !important;
}

.focus\:overflow-y-visible:focus{
  overflow-y     : visible !important;
}

.focus\:overflow-x-scroll:focus{
  overflow-x     : scroll !important;
}

.focus\:overflow-y-scroll:focus{
  overflow-y     : scroll !important;
}

.focus\:scrolling-touch:focus{
  -webkit-overflow-scrolling     : touch !important;
}

.focus\:scrolling-auto:focus{
  -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;
}

.group:hover .group-hover\:overscroll-auto{
  -ms-scroll-chaining     : chained !important;
      overscroll-behavior     : auto !important;
}

.group:hover .group-hover\:overscroll-contain{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : contain !important;
}

.group:hover .group-hover\:overscroll-none{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : none !important;
}

.group:hover .group-hover\:overscroll-y-auto{
  overscroll-behavior-y     : auto !important;
}

.group:hover .group-hover\:overscroll-y-contain{
  overscroll-behavior-y     : contain !important;
}

.group:hover .group-hover\:overscroll-y-none{
  overscroll-behavior-y     : none !important;
}

.group:hover .group-hover\:overscroll-x-auto{
  overscroll-behavior-x     : auto !important;
}

.group:hover .group-hover\:overscroll-x-contain{
  overscroll-behavior-x     : contain !important;
}

.group:hover .group-hover\:overscroll-x-none{
  overscroll-behavior-x     : none !important;
}

.hover\:overscroll-auto:hover{
  -ms-scroll-chaining     : chained !important;
      overscroll-behavior     : auto !important;
}

.hover\:overscroll-contain:hover{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : contain !important;
}

.hover\:overscroll-none:hover{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : none !important;
}

.hover\:overscroll-y-auto:hover{
  overscroll-behavior-y     : auto !important;
}

.hover\:overscroll-y-contain:hover{
  overscroll-behavior-y     : contain !important;
}

.hover\:overscroll-y-none:hover{
  overscroll-behavior-y     : none !important;
}

.hover\:overscroll-x-auto:hover{
  overscroll-behavior-x     : auto !important;
}

.hover\:overscroll-x-contain:hover{
  overscroll-behavior-x     : contain !important;
}

.hover\:overscroll-x-none:hover{
  overscroll-behavior-x     : none !important;
}

.focus\:overscroll-auto:focus{
  -ms-scroll-chaining     : chained !important;
      overscroll-behavior     : auto !important;
}

.focus\:overscroll-contain:focus{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : contain !important;
}

.focus\:overscroll-none:focus{
  -ms-scroll-chaining     : none !important;
      overscroll-behavior     : none !important;
}

.focus\:overscroll-y-auto:focus{
  overscroll-behavior-y     : auto !important;
}

.focus\:overscroll-y-contain:focus{
  overscroll-behavior-y     : contain !important;
}

.focus\:overscroll-y-none:focus{
  overscroll-behavior-y     : none !important;
}

.focus\:overscroll-x-auto:focus{
  overscroll-behavior-x     : auto !important;
}

.focus\:overscroll-x-contain:focus{
  overscroll-behavior-x     : contain !important;
}

.focus\:overscroll-x-none:focus{
  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-20{
  padding     : 5rem !important;
}

.p-24{
  padding     : 6rem !important;
}

.p-28{
  padding     : 7rem !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-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-96{
  padding     : 24rem !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;
}

.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-20{
  padding-top     : 5rem !important;
  padding-bottom     : 5rem !important;
}

.px-20{
  padding-left     : 5rem !important;
  padding-right     : 5rem !important;
}

.py-24{
  padding-top     : 6rem !important;
  padding-bottom     : 6rem !important;
}

.px-24{
  padding-left     : 6rem !important;
  padding-right     : 6rem !important;
}

.py-28{
  padding-top     : 7rem !important;
  padding-bottom     : 7rem !important;
}

.px-28{
  padding-left     : 7rem !important;
  padding-right     : 7rem !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-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-96{
  padding-top     : 24rem !important;
  padding-bottom     : 24rem !important;
}

.px-96{
  padding-left     : 24rem !important;
  padding-right     : 24rem !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;
}

.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-20{
  padding-top     : 5rem !important;
}

.pr-20{
  padding-right     : 5rem !important;
}

.pb-20{
  padding-bottom     : 5rem !important;
}

.pl-20{
  padding-left     : 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-28{
  padding-top     : 7rem !important;
}

.pr-28{
  padding-right     : 7rem !important;
}

.pb-28{
  padding-bottom     : 7rem !important;
}

.pl-28{
  padding-left     : 7rem !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-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-96{
  padding-top     : 24rem !important;
}

.pr-96{
  padding-right     : 24rem !important;
}

.pb-96{
  padding-bottom     : 24rem !important;
}

.pl-96{
  padding-left     : 24rem !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;
}

.group:hover .group-hover\:p-0{
  padding     : 0 !important;
}

.group:hover .group-hover\:p-1{
  padding     : 0.25rem !important;
}

.group:hover .group-hover\:p-2{
  padding     : 0.5rem !important;
}

.group:hover .group-hover\:p-3{
  padding     : 0.75rem !important;
}

.group:hover .group-hover\:p-4{
  padding     : 1rem !important;
}

.group:hover .group-hover\:p-5{
  padding     : 1.25rem !important;
}

.group:hover .group-hover\:p-6{
  padding     : 1.5rem !important;
}

.group:hover .group-hover\:p-7{
  padding     : 1.75rem !important;
}

.group:hover .group-hover\:p-8{
  padding     : 2rem !important;
}

.group:hover .group-hover\:p-9{
  padding     : 2.25rem !important;
}

.group:hover .group-hover\:p-10{
  padding     : 2.5rem !important;
}

.group:hover .group-hover\:p-11{
  padding     : 2.75rem !important;
}

.group:hover .group-hover\:p-12{
  padding     : 3rem !important;
}

.group:hover .group-hover\:p-13{
  padding     : 3.25rem !important;
}

.group:hover .group-hover\:p-14{
  padding     : 3.5rem !important;
}

.group:hover .group-hover\:p-15{
  padding     : 3.75rem !important;
}

.group:hover .group-hover\:p-16{
  padding     : 4rem !important;
}

.group:hover .group-hover\:p-20{
  padding     : 5rem !important;
}

.group:hover .group-hover\:p-24{
  padding     : 6rem !important;
}

.group:hover .group-hover\:p-28{
  padding     : 7rem !important;
}

.group:hover .group-hover\:p-32{
  padding     : 8rem !important;
}

.group:hover .group-hover\:p-36{
  padding     : 9rem !important;
}

.group:hover .group-hover\:p-40{
  padding     : 10rem !important;
}

.group:hover .group-hover\:p-44{
  padding     : 11rem !important;
}

.group:hover .group-hover\:p-48{
  padding     : 12rem !important;
}

.group:hover .group-hover\:p-52{
  padding     : 13rem !important;
}

.group:hover .group-hover\:p-56{
  padding     : 14rem !important;
}

.group:hover .group-hover\:p-60{
  padding     : 15rem !important;
}

.group:hover .group-hover\:p-64{
  padding     : 16rem !important;
}

.group:hover .group-hover\:p-72{
  padding     : 18rem !important;
}

.group:hover .group-hover\:p-80{
  padding     : 20rem !important;
}

.group:hover .group-hover\:p-96{
  padding     : 24rem !important;
}

.group:hover .group-hover\:p-px{
  padding     : 1px !important;
}

.group:hover .group-hover\:p-0\.5{
  padding     : 0.125rem !important;
}

.group:hover .group-hover\:p-1\.5{
  padding     : 0.375rem !important;
}

.group:hover .group-hover\:p-2\.5{
  padding     : 0.625rem !important;
}

.group:hover .group-hover\:p-3\.5{
  padding     : 0.875rem !important;
}

.group:hover .group-hover\:p-1\/2{
  padding     : 50% !important;
}

.group:hover .group-hover\:p-1\/3{
  padding     : 33.333333% !important;
}

.group:hover .group-hover\:p-2\/3{
  padding     : 66.666667% !important;
}

.group:hover .group-hover\:p-1\/4{
  padding     : 25% !important;
}

.group:hover .group-hover\:p-2\/4{
  padding     : 50% !important;
}

.group:hover .group-hover\:p-3\/4{
  padding     : 75% !important;
}

.group:hover .group-hover\:p-1\/5{
  padding     : 20% !important;
}

.group:hover .group-hover\:p-2\/5{
  padding     : 40% !important;
}

.group:hover .group-hover\:p-3\/5{
  padding     : 60% !important;
}

.group:hover .group-hover\:p-4\/5{
  padding     : 80% !important;
}

.group:hover .group-hover\:p-1\/6{
  padding     : 16.666667% !important;
}

.group:hover .group-hover\:p-2\/6{
  padding     : 33.333333% !important;
}

.group:hover .group-hover\:p-3\/6{
  padding     : 50% !important;
}

.group:hover .group-hover\:p-4\/6{
  padding     : 66.666667% !important;
}

.group:hover .group-hover\:p-5\/6{
  padding     : 83.333333% !important;
}

.group:hover .group-hover\:p-1\/12{
  padding     : 8.333333% !important;
}

.group:hover .group-hover\:p-2\/12{
  padding     : 16.666667% !important;
}

.group:hover .group-hover\:p-3\/12{
  padding     : 25% !important;
}

.group:hover .group-hover\:p-4\/12{
  padding     : 33.333333% !important;
}

.group:hover .group-hover\:p-5\/12{
  padding     : 41.666667% !important;
}

.group:hover .group-hover\:p-6\/12{
  padding     : 50% !important;
}

.group:hover .group-hover\:p-7\/12{
  padding     : 58.333333% !important;
}

.group:hover .group-hover\:p-8\/12{
  padding     : 66.666667% !important;
}

.group:hover .group-hover\:p-9\/12{
  padding     : 75% !important;
}

.group:hover .group-hover\:p-10\/12{
  padding     : 83.333333% !important;
}

.group:hover .group-hover\:p-11\/12{
  padding     : 91.666667% !important;
}

.group:hover .group-hover\:p-full{
  padding     : 100% !important;
}

.group:hover .group-hover\:py-0{
  padding-top     : 0 !important;
  padding-bottom     : 0 !important;
}

.group:hover .group-hover\:px-0{
  padding-left     : 0 !important;
  padding-right     : 0 !important;
}

.group:hover .group-hover\:py-1{
  padding-top     : 0.25rem !important;
  padding-bottom     : 0.25rem !important;
}

.group:hover .group-hover\:px-1{
  padding-left     : 0.25rem !important;
  padding-right     : 0.25rem !important;
}

.group:hover .group-hover\:py-2{
  padding-top     : 0.5rem !important;
  padding-bottom     : 0.5rem !important;
}

.group:hover .group-hover\:px-2{
  padding-left     : 0.5rem !important;
  padding-right     : 0.5rem !important;
}

.group:hover .group-hover\:py-3{
  padding-top     : 0.75rem !important;
  padding-bottom     : 0.75rem !important;
}

.group:hover .group-hover\:px-3{
  padding-left     : 0.75rem !important;
  padding-right     : 0.75rem !important;
}

.group:hover .group-hover\:py-4{
  padding-top     : 1rem !important;
  padding-bottom     : 1rem !important;
}

.group:hover .group-hover\:px-4{
  padding-left     : 1rem !important;
  padding-right     : 1rem !important;
}

.group:hover .group-hover\:py-5{
  padding-top     : 1.25rem !important;
  padding-bottom     : 1.25rem !important;
}

.group:hover .group-hover\:px-5{
  padding-left     : 1.25rem !important;
  padding-right     : 1.25rem !important;
}

.group:hover .group-hover\:py-6{
  padding-top     : 1.5rem !important;
  padding-bottom     : 1.5rem !important;
}

.group:hover .group-hover\:px-6{
  padding-left     : 1.5rem !important;
  padding-right     : 1.5rem !important;
}

.group:hover .group-hover\:py-7{
  padding-top     : 1.75rem !important;
  padding-bottom     : 1.75rem !important;
}

.group:hover .group-hover\:px-7{
  padding-left     : 1.75rem !important;
  padding-right     : 1.75rem !important;
}

.group:hover .group-hover\:py-8{
  padding-top     : 2rem !important;
  padding-bottom     : 2rem !important;
}

.group:hover .group-hover\:px-8{
  padding-left     : 2rem !important;
  padding-right     : 2rem !important;
}

.group:hover .group-hover\:py-9{
  padding-top     : 2.25rem !important;
  padding-bottom     : 2.25rem !important;
}

.group:hover .group-hover\:px-9{
  padding-left     : 2.25rem !important;
  padding-right     : 2.25rem !important;
}

.group:hover .group-hover\:py-10{
  padding-top     : 2.5rem !important;
  padding-bottom     : 2.5rem !important;
}

.group:hover .group-hover\:px-10{
  padding-left     : 2.5rem !important;
  padding-right     : 2.5rem !important;
}

.group:hover .group-hover\:py-11{
  padding-top     : 2.75rem !important;
  padding-bottom     : 2.75rem !important;
}

.group:hover .group-hover\:px-11{
  padding-left     : 2.75rem !important;
  padding-right     : 2.75rem !important;
}

.group:hover .group-hover\:py-12{
  padding-top     : 3rem !important;
  padding-bottom     : 3rem !important;
}

.group:hover .group-hover\:px-12{
  padding-left     : 3rem !important;
  padding-right     : 3rem !important;
}

.group:hover .group-hover\:py-13{
  padding-top     : 3.25rem !important;
  padding-bottom     : 3.25rem !important;
}

.group:hover .group-hover\:px-13{
  padding-left     : 3.25rem !important;
  padding-right     : 3.25rem !important;
}

.group:hover .group-hover\:py-14{
  padding-top     : 3.5rem !important;
  padding-bottom     : 3.5rem !important;
}

.group:hover .group-hover\:px-14{
  padding-left     : 3.5rem !important;
  padding-right     : 3.5rem !important;
}

.group:hover .group-hover\:py-15{
  padding-top     : 3.75rem !important;
  padding-bottom     : 3.75rem !important;
}

.group:hover .group-hover\:px-15{
  padding-left     : 3.75rem !important;
  padding-right     : 3.75rem !important;
}

.group:hover .group-hover\:py-16{
  padding-top     : 4rem !important;
  padding-bottom     : 4rem !important;
}

.group:hover .group-hover\:px-16{
  padding-left     : 4rem !important;
  padding-right     : 4rem !important;
}

.group:hover .group-hover\:py-20{
  padding-top     : 5rem !important;
  padding-bottom     : 5rem !important;
}

.group:hover .group-hover\:px-20{
  padding-left     : 5rem !important;
  padding-right     : 5rem !important;
}

.group:hover .group-hover\:py-24{
  padding-top     : 6rem !important;
  padding-bottom     : 6rem !important;
}

.group:hover .group-hover\:px-24{
  padding-left     : 6rem !important;
  padding-right     : 6rem !important;
}

.group:hover .group-hover\:py-28{
  padding-top     : 7rem !important;
  padding-bottom     : 7rem !important;
}

.group:hover .group-hover\:px-28{
  padding-left     : 7rem !important;
  padding-right     : 7rem !important;
}

.group:hover .group-hover\:py-32{
  padding-top     : 8rem !important;
  padding-bottom     : 8rem !important;
}

.group:hover .group-hover\:px-32{
  padding-left     : 8rem !important;
  padding-right     : 8rem !important;
}

.group:hover .group-hover\:py-36{
  padding-top     : 9rem !important;
  padding-bottom     : 9rem !important;
}

.group:hover .group-hover\:px-36{
  padding-left     : 9rem !important;
  padding-right     : 9rem !important;
}

.group:hover .group-hover\:py-40{
  padding-top     : 10rem !important;
  padding-bottom     : 10rem !important;
}

.group:hover .group-hover\:px-40{
  padding-left     : 10rem !important;
  padding-right     : 10rem !important;
}

.group:hover .group-hover\:py-44{
  padding-top     : 11rem !important;
  padding-bottom     : 11rem !important;
}

.group:hover .group-hover\:px-44{
  padding-left     : 11rem !important;
  padding-right     : 11rem !important;
}

.group:hover .group-hover\:py-48{
  padding-top     : 12rem !important;
  padding-bottom     : 12rem !important;
}

.group:hover .group-hover\:px-48{
  padding-left     : 12rem !important;
  padding-right     : 12rem !important;
}

.group:hover .group-hover\:py-52{
  padding-top     : 13rem !important;
  padding-bottom     : 13rem !important;
}

.group:hover .group-hover\:px-52{
  padding-left     : 13rem !important;
  padding-right     : 13rem !important;
}

.group:hover .group-hover\:py-56{
  padding-top     : 14rem !important;
  padding-bottom     : 14rem !important;
}

.group:hover .group-hover\:px-56{
  padding-left     : 14rem !important;
  padding-right     : 14rem !important;
}

.group:hover .group-hover\:py-60{
  padding-top     : 15rem !important;
  padding-bottom     : 15rem !important;
}

.group:hover .group-hover\:px-60{
  padding-left     : 15rem !important;
  padding-right     : 15rem !important;
}

.group:hover .group-hover\:py-64{
  padding-top     : 16rem !important;
  padding-bottom     : 16rem !important;
}

.group:hover .group-hover\:px-64{
  padding-left     : 16rem !important;
  padding-right     : 16rem !important;
}

.group:hover .group-hover\:py-72{
  padding-top     : 18rem !important;
  padding-bottom     : 18rem !important;
}

.group:hover .group-hover\:px-72{
  padding-left     : 18rem !important;
  padding-right     : 18rem !important;
}

.group:hover .group-hover\:py-80{
  padding-top     : 20rem !important;
  padding-bottom     : 20rem !important;
}

.group:hover .group-hover\:px-80{
  padding-left     : 20rem !important;
  padding-right     : 20rem !important;
}

.group:hover .group-hover\:py-96{
  padding-top     : 24rem !important;
  padding-bottom     : 24rem !important;
}

.group:hover .group-hover\:px-96{
  padding-left     : 24rem !important;
  padding-right     : 24rem !important;
}

.group:hover .group-hover\:py-px{
  padding-top     : 1px !important;
  padding-bottom     : 1px !important;
}

.group:hover .group-hover\:px-px{
  padding-left     : 1px !important;
  padding-right     : 1px !important;
}

.group:hover .group-hover\:py-0\.5{
  padding-top     : 0.125rem !important;
  padding-bottom     : 0.125rem !important;
}

.group:hover .group-hover\:px-0\.5{
  padding-left     : 0.125rem !important;
  padding-right     : 0.125rem !important;
}

.group:hover .group-hover\:py-1\.5{
  padding-top     : 0.375rem !important;
  padding-bottom     : 0.375rem !important;
}

.group:hover .group-hover\:px-1\.5{
  padding-left     : 0.375rem !important;
  padding-right     : 0.375rem !important;
}

.group:hover .group-hover\:py-2\.5{
  padding-top     : 0.625rem !important;
  padding-bottom     : 0.625rem !important;
}

.group:hover .group-hover\:px-2\.5{
  padding-left     : 0.625rem !important;
  padding-right     : 0.625rem !important;
}

.group:hover .group-hover\:py-3\.5{
  padding-top     : 0.875rem !important;
  padding-bottom     : 0.875rem !important;
}

.group:hover .group-hover\:px-3\.5{
  padding-left     : 0.875rem !important;
  padding-right     : 0.875rem !important;
}

.group:hover .group-hover\:py-1\/2{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:px-1\/2{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.group:hover .group-hover\:py-1\/3{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:px-1\/3{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:py-2\/3{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:px-2\/3{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:py-1\/4{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.group:hover .group-hover\:px-1\/4{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.group:hover .group-hover\:py-2\/4{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:px-2\/4{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.group:hover .group-hover\:py-3\/4{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.group:hover .group-hover\:px-3\/4{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.group:hover .group-hover\:py-1\/5{
  padding-top     : 20% !important;
  padding-bottom     : 20% !important;
}

.group:hover .group-hover\:px-1\/5{
  padding-left     : 20% !important;
  padding-right     : 20% !important;
}

.group:hover .group-hover\:py-2\/5{
  padding-top     : 40% !important;
  padding-bottom     : 40% !important;
}

.group:hover .group-hover\:px-2\/5{
  padding-left     : 40% !important;
  padding-right     : 40% !important;
}

.group:hover .group-hover\:py-3\/5{
  padding-top     : 60% !important;
  padding-bottom     : 60% !important;
}

.group:hover .group-hover\:px-3\/5{
  padding-left     : 60% !important;
  padding-right     : 60% !important;
}

.group:hover .group-hover\:py-4\/5{
  padding-top     : 80% !important;
  padding-bottom     : 80% !important;
}

.group:hover .group-hover\:px-4\/5{
  padding-left     : 80% !important;
  padding-right     : 80% !important;
}

.group:hover .group-hover\:py-1\/6{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:px-1\/6{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.group:hover .group-hover\:py-2\/6{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:px-2\/6{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:py-3\/6{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:px-3\/6{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.group:hover .group-hover\:py-4\/6{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:px-4\/6{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:py-5\/6{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:px-5\/6{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.group:hover .group-hover\:py-1\/12{
  padding-top     : 8.333333% !important;
  padding-bottom     : 8.333333% !important;
}

.group:hover .group-hover\:px-1\/12{
  padding-left     : 8.333333% !important;
  padding-right     : 8.333333% !important;
}

.group:hover .group-hover\:py-2\/12{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:px-2\/12{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.group:hover .group-hover\:py-3\/12{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.group:hover .group-hover\:px-3\/12{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.group:hover .group-hover\:py-4\/12{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:px-4\/12{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:py-5\/12{
  padding-top     : 41.666667% !important;
  padding-bottom     : 41.666667% !important;
}

.group:hover .group-hover\:px-5\/12{
  padding-left     : 41.666667% !important;
  padding-right     : 41.666667% !important;
}

.group:hover .group-hover\:py-6\/12{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:px-6\/12{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.group:hover .group-hover\:py-7\/12{
  padding-top     : 58.333333% !important;
  padding-bottom     : 58.333333% !important;
}

.group:hover .group-hover\:px-7\/12{
  padding-left     : 58.333333% !important;
  padding-right     : 58.333333% !important;
}

.group:hover .group-hover\:py-8\/12{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:px-8\/12{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:py-9\/12{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.group:hover .group-hover\:px-9\/12{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.group:hover .group-hover\:py-10\/12{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:px-10\/12{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.group:hover .group-hover\:py-11\/12{
  padding-top     : 91.666667% !important;
  padding-bottom     : 91.666667% !important;
}

.group:hover .group-hover\:px-11\/12{
  padding-left     : 91.666667% !important;
  padding-right     : 91.666667% !important;
}

.group:hover .group-hover\:py-full{
  padding-top     : 100% !important;
  padding-bottom     : 100% !important;
}

.group:hover .group-hover\:px-full{
  padding-left     : 100% !important;
  padding-right     : 100% !important;
}

.group:hover .group-hover\:pt-0{
  padding-top     : 0 !important;
}

.group:hover .group-hover\:pr-0{
  padding-right     : 0 !important;
}

.group:hover .group-hover\:pb-0{
  padding-bottom     : 0 !important;
}

.group:hover .group-hover\:pl-0{
  padding-left     : 0 !important;
}

.group:hover .group-hover\:pt-1{
  padding-top     : 0.25rem !important;
}

.group:hover .group-hover\:pr-1{
  padding-right     : 0.25rem !important;
}

.group:hover .group-hover\:pb-1{
  padding-bottom     : 0.25rem !important;
}

.group:hover .group-hover\:pl-1{
  padding-left     : 0.25rem !important;
}

.group:hover .group-hover\:pt-2{
  padding-top     : 0.5rem !important;
}

.group:hover .group-hover\:pr-2{
  padding-right     : 0.5rem !important;
}

.group:hover .group-hover\:pb-2{
  padding-bottom     : 0.5rem !important;
}

.group:hover .group-hover\:pl-2{
  padding-left     : 0.5rem !important;
}

.group:hover .group-hover\:pt-3{
  padding-top     : 0.75rem !important;
}

.group:hover .group-hover\:pr-3{
  padding-right     : 0.75rem !important;
}

.group:hover .group-hover\:pb-3{
  padding-bottom     : 0.75rem !important;
}

.group:hover .group-hover\:pl-3{
  padding-left     : 0.75rem !important;
}

.group:hover .group-hover\:pt-4{
  padding-top     : 1rem !important;
}

.group:hover .group-hover\:pr-4{
  padding-right     : 1rem !important;
}

.group:hover .group-hover\:pb-4{
  padding-bottom     : 1rem !important;
}

.group:hover .group-hover\:pl-4{
  padding-left     : 1rem !important;
}

.group:hover .group-hover\:pt-5{
  padding-top     : 1.25rem !important;
}

.group:hover .group-hover\:pr-5{
  padding-right     : 1.25rem !important;
}

.group:hover .group-hover\:pb-5{
  padding-bottom     : 1.25rem !important;
}

.group:hover .group-hover\:pl-5{
  padding-left     : 1.25rem !important;
}

.group:hover .group-hover\:pt-6{
  padding-top     : 1.5rem !important;
}

.group:hover .group-hover\:pr-6{
  padding-right     : 1.5rem !important;
}

.group:hover .group-hover\:pb-6{
  padding-bottom     : 1.5rem !important;
}

.group:hover .group-hover\:pl-6{
  padding-left     : 1.5rem !important;
}

.group:hover .group-hover\:pt-7{
  padding-top     : 1.75rem !important;
}

.group:hover .group-hover\:pr-7{
  padding-right     : 1.75rem !important;
}

.group:hover .group-hover\:pb-7{
  padding-bottom     : 1.75rem !important;
}

.group:hover .group-hover\:pl-7{
  padding-left     : 1.75rem !important;
}

.group:hover .group-hover\:pt-8{
  padding-top     : 2rem !important;
}

.group:hover .group-hover\:pr-8{
  padding-right     : 2rem !important;
}

.group:hover .group-hover\:pb-8{
  padding-bottom     : 2rem !important;
}

.group:hover .group-hover\:pl-8{
  padding-left     : 2rem !important;
}

.group:hover .group-hover\:pt-9{
  padding-top     : 2.25rem !important;
}

.group:hover .group-hover\:pr-9{
  padding-right     : 2.25rem !important;
}

.group:hover .group-hover\:pb-9{
  padding-bottom     : 2.25rem !important;
}

.group:hover .group-hover\:pl-9{
  padding-left     : 2.25rem !important;
}

.group:hover .group-hover\:pt-10{
  padding-top     : 2.5rem !important;
}

.group:hover .group-hover\:pr-10{
  padding-right     : 2.5rem !important;
}

.group:hover .group-hover\:pb-10{
  padding-bottom     : 2.5rem !important;
}

.group:hover .group-hover\:pl-10{
  padding-left     : 2.5rem !important;
}

.group:hover .group-hover\:pt-11{
  padding-top     : 2.75rem !important;
}

.group:hover .group-hover\:pr-11{
  padding-right     : 2.75rem !important;
}

.group:hover .group-hover\:pb-11{
  padding-bottom     : 2.75rem !important;
}

.group:hover .group-hover\:pl-11{
  padding-left     : 2.75rem !important;
}

.group:hover .group-hover\:pt-12{
  padding-top     : 3rem !important;
}

.group:hover .group-hover\:pr-12{
  padding-right     : 3rem !important;
}

.group:hover .group-hover\:pb-12{
  padding-bottom     : 3rem !important;
}

.group:hover .group-hover\:pl-12{
  padding-left     : 3rem !important;
}

.group:hover .group-hover\:pt-13{
  padding-top     : 3.25rem !important;
}

.group:hover .group-hover\:pr-13{
  padding-right     : 3.25rem !important;
}

.group:hover .group-hover\:pb-13{
  padding-bottom     : 3.25rem !important;
}

.group:hover .group-hover\:pl-13{
  padding-left     : 3.25rem !important;
}

.group:hover .group-hover\:pt-14{
  padding-top     : 3.5rem !important;
}

.group:hover .group-hover\:pr-14{
  padding-right     : 3.5rem !important;
}

.group:hover .group-hover\:pb-14{
  padding-bottom     : 3.5rem !important;
}

.group:hover .group-hover\:pl-14{
  padding-left     : 3.5rem !important;
}

.group:hover .group-hover\:pt-15{
  padding-top     : 3.75rem !important;
}

.group:hover .group-hover\:pr-15{
  padding-right     : 3.75rem !important;
}

.group:hover .group-hover\:pb-15{
  padding-bottom     : 3.75rem !important;
}

.group:hover .group-hover\:pl-15{
  padding-left     : 3.75rem !important;
}

.group:hover .group-hover\:pt-16{
  padding-top     : 4rem !important;
}

.group:hover .group-hover\:pr-16{
  padding-right     : 4rem !important;
}

.group:hover .group-hover\:pb-16{
  padding-bottom     : 4rem !important;
}

.group:hover .group-hover\:pl-16{
  padding-left     : 4rem !important;
}

.group:hover .group-hover\:pt-20{
  padding-top     : 5rem !important;
}

.group:hover .group-hover\:pr-20{
  padding-right     : 5rem !important;
}

.group:hover .group-hover\:pb-20{
  padding-bottom     : 5rem !important;
}

.group:hover .group-hover\:pl-20{
  padding-left     : 5rem !important;
}

.group:hover .group-hover\:pt-24{
  padding-top     : 6rem !important;
}

.group:hover .group-hover\:pr-24{
  padding-right     : 6rem !important;
}

.group:hover .group-hover\:pb-24{
  padding-bottom     : 6rem !important;
}

.group:hover .group-hover\:pl-24{
  padding-left     : 6rem !important;
}

.group:hover .group-hover\:pt-28{
  padding-top     : 7rem !important;
}

.group:hover .group-hover\:pr-28{
  padding-right     : 7rem !important;
}

.group:hover .group-hover\:pb-28{
  padding-bottom     : 7rem !important;
}

.group:hover .group-hover\:pl-28{
  padding-left     : 7rem !important;
}

.group:hover .group-hover\:pt-32{
  padding-top     : 8rem !important;
}

.group:hover .group-hover\:pr-32{
  padding-right     : 8rem !important;
}

.group:hover .group-hover\:pb-32{
  padding-bottom     : 8rem !important;
}

.group:hover .group-hover\:pl-32{
  padding-left     : 8rem !important;
}

.group:hover .group-hover\:pt-36{
  padding-top     : 9rem !important;
}

.group:hover .group-hover\:pr-36{
  padding-right     : 9rem !important;
}

.group:hover .group-hover\:pb-36{
  padding-bottom     : 9rem !important;
}

.group:hover .group-hover\:pl-36{
  padding-left     : 9rem !important;
}

.group:hover .group-hover\:pt-40{
  padding-top     : 10rem !important;
}

.group:hover .group-hover\:pr-40{
  padding-right     : 10rem !important;
}

.group:hover .group-hover\:pb-40{
  padding-bottom     : 10rem !important;
}

.group:hover .group-hover\:pl-40{
  padding-left     : 10rem !important;
}

.group:hover .group-hover\:pt-44{
  padding-top     : 11rem !important;
}

.group:hover .group-hover\:pr-44{
  padding-right     : 11rem !important;
}

.group:hover .group-hover\:pb-44{
  padding-bottom     : 11rem !important;
}

.group:hover .group-hover\:pl-44{
  padding-left     : 11rem !important;
}

.group:hover .group-hover\:pt-48{
  padding-top     : 12rem !important;
}

.group:hover .group-hover\:pr-48{
  padding-right     : 12rem !important;
}

.group:hover .group-hover\:pb-48{
  padding-bottom     : 12rem !important;
}

.group:hover .group-hover\:pl-48{
  padding-left     : 12rem !important;
}

.group:hover .group-hover\:pt-52{
  padding-top     : 13rem !important;
}

.group:hover .group-hover\:pr-52{
  padding-right     : 13rem !important;
}

.group:hover .group-hover\:pb-52{
  padding-bottom     : 13rem !important;
}

.group:hover .group-hover\:pl-52{
  padding-left     : 13rem !important;
}

.group:hover .group-hover\:pt-56{
  padding-top     : 14rem !important;
}

.group:hover .group-hover\:pr-56{
  padding-right     : 14rem !important;
}

.group:hover .group-hover\:pb-56{
  padding-bottom     : 14rem !important;
}

.group:hover .group-hover\:pl-56{
  padding-left     : 14rem !important;
}

.group:hover .group-hover\:pt-60{
  padding-top     : 15rem !important;
}

.group:hover .group-hover\:pr-60{
  padding-right     : 15rem !important;
}

.group:hover .group-hover\:pb-60{
  padding-bottom     : 15rem !important;
}

.group:hover .group-hover\:pl-60{
  padding-left     : 15rem !important;
}

.group:hover .group-hover\:pt-64{
  padding-top     : 16rem !important;
}

.group:hover .group-hover\:pr-64{
  padding-right     : 16rem !important;
}

.group:hover .group-hover\:pb-64{
  padding-bottom     : 16rem !important;
}

.group:hover .group-hover\:pl-64{
  padding-left     : 16rem !important;
}

.group:hover .group-hover\:pt-72{
  padding-top     : 18rem !important;
}

.group:hover .group-hover\:pr-72{
  padding-right     : 18rem !important;
}

.group:hover .group-hover\:pb-72{
  padding-bottom     : 18rem !important;
}

.group:hover .group-hover\:pl-72{
  padding-left     : 18rem !important;
}

.group:hover .group-hover\:pt-80{
  padding-top     : 20rem !important;
}

.group:hover .group-hover\:pr-80{
  padding-right     : 20rem !important;
}

.group:hover .group-hover\:pb-80{
  padding-bottom     : 20rem !important;
}

.group:hover .group-hover\:pl-80{
  padding-left     : 20rem !important;
}

.group:hover .group-hover\:pt-96{
  padding-top     : 24rem !important;
}

.group:hover .group-hover\:pr-96{
  padding-right     : 24rem !important;
}

.group:hover .group-hover\:pb-96{
  padding-bottom     : 24rem !important;
}

.group:hover .group-hover\:pl-96{
  padding-left     : 24rem !important;
}

.group:hover .group-hover\:pt-px{
  padding-top     : 1px !important;
}

.group:hover .group-hover\:pr-px{
  padding-right     : 1px !important;
}

.group:hover .group-hover\:pb-px{
  padding-bottom     : 1px !important;
}

.group:hover .group-hover\:pl-px{
  padding-left     : 1px !important;
}

.group:hover .group-hover\:pt-0\.5{
  padding-top     : 0.125rem !important;
}

.group:hover .group-hover\:pr-0\.5{
  padding-right     : 0.125rem !important;
}

.group:hover .group-hover\:pb-0\.5{
  padding-bottom     : 0.125rem !important;
}

.group:hover .group-hover\:pl-0\.5{
  padding-left     : 0.125rem !important;
}

.group:hover .group-hover\:pt-1\.5{
  padding-top     : 0.375rem !important;
}

.group:hover .group-hover\:pr-1\.5{
  padding-right     : 0.375rem !important;
}

.group:hover .group-hover\:pb-1\.5{
  padding-bottom     : 0.375rem !important;
}

.group:hover .group-hover\:pl-1\.5{
  padding-left     : 0.375rem !important;
}

.group:hover .group-hover\:pt-2\.5{
  padding-top     : 0.625rem !important;
}

.group:hover .group-hover\:pr-2\.5{
  padding-right     : 0.625rem !important;
}

.group:hover .group-hover\:pb-2\.5{
  padding-bottom     : 0.625rem !important;
}

.group:hover .group-hover\:pl-2\.5{
  padding-left     : 0.625rem !important;
}

.group:hover .group-hover\:pt-3\.5{
  padding-top     : 0.875rem !important;
}

.group:hover .group-hover\:pr-3\.5{
  padding-right     : 0.875rem !important;
}

.group:hover .group-hover\:pb-3\.5{
  padding-bottom     : 0.875rem !important;
}

.group:hover .group-hover\:pl-3\.5{
  padding-left     : 0.875rem !important;
}

.group:hover .group-hover\:pt-1\/2{
  padding-top     : 50% !important;
}

.group:hover .group-hover\:pr-1\/2{
  padding-right     : 50% !important;
}

.group:hover .group-hover\:pb-1\/2{
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:pl-1\/2{
  padding-left     : 50% !important;
}

.group:hover .group-hover\:pt-1\/3{
  padding-top     : 33.333333% !important;
}

.group:hover .group-hover\:pr-1\/3{
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:pb-1\/3{
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:pl-1\/3{
  padding-left     : 33.333333% !important;
}

.group:hover .group-hover\:pt-2\/3{
  padding-top     : 66.666667% !important;
}

.group:hover .group-hover\:pr-2\/3{
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:pb-2\/3{
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:pl-2\/3{
  padding-left     : 66.666667% !important;
}

.group:hover .group-hover\:pt-1\/4{
  padding-top     : 25% !important;
}

.group:hover .group-hover\:pr-1\/4{
  padding-right     : 25% !important;
}

.group:hover .group-hover\:pb-1\/4{
  padding-bottom     : 25% !important;
}

.group:hover .group-hover\:pl-1\/4{
  padding-left     : 25% !important;
}

.group:hover .group-hover\:pt-2\/4{
  padding-top     : 50% !important;
}

.group:hover .group-hover\:pr-2\/4{
  padding-right     : 50% !important;
}

.group:hover .group-hover\:pb-2\/4{
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:pl-2\/4{
  padding-left     : 50% !important;
}

.group:hover .group-hover\:pt-3\/4{
  padding-top     : 75% !important;
}

.group:hover .group-hover\:pr-3\/4{
  padding-right     : 75% !important;
}

.group:hover .group-hover\:pb-3\/4{
  padding-bottom     : 75% !important;
}

.group:hover .group-hover\:pl-3\/4{
  padding-left     : 75% !important;
}

.group:hover .group-hover\:pt-1\/5{
  padding-top     : 20% !important;
}

.group:hover .group-hover\:pr-1\/5{
  padding-right     : 20% !important;
}

.group:hover .group-hover\:pb-1\/5{
  padding-bottom     : 20% !important;
}

.group:hover .group-hover\:pl-1\/5{
  padding-left     : 20% !important;
}

.group:hover .group-hover\:pt-2\/5{
  padding-top     : 40% !important;
}

.group:hover .group-hover\:pr-2\/5{
  padding-right     : 40% !important;
}

.group:hover .group-hover\:pb-2\/5{
  padding-bottom     : 40% !important;
}

.group:hover .group-hover\:pl-2\/5{
  padding-left     : 40% !important;
}

.group:hover .group-hover\:pt-3\/5{
  padding-top     : 60% !important;
}

.group:hover .group-hover\:pr-3\/5{
  padding-right     : 60% !important;
}

.group:hover .group-hover\:pb-3\/5{
  padding-bottom     : 60% !important;
}

.group:hover .group-hover\:pl-3\/5{
  padding-left     : 60% !important;
}

.group:hover .group-hover\:pt-4\/5{
  padding-top     : 80% !important;
}

.group:hover .group-hover\:pr-4\/5{
  padding-right     : 80% !important;
}

.group:hover .group-hover\:pb-4\/5{
  padding-bottom     : 80% !important;
}

.group:hover .group-hover\:pl-4\/5{
  padding-left     : 80% !important;
}

.group:hover .group-hover\:pt-1\/6{
  padding-top     : 16.666667% !important;
}

.group:hover .group-hover\:pr-1\/6{
  padding-right     : 16.666667% !important;
}

.group:hover .group-hover\:pb-1\/6{
  padding-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:pl-1\/6{
  padding-left     : 16.666667% !important;
}

.group:hover .group-hover\:pt-2\/6{
  padding-top     : 33.333333% !important;
}

.group:hover .group-hover\:pr-2\/6{
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:pb-2\/6{
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:pl-2\/6{
  padding-left     : 33.333333% !important;
}

.group:hover .group-hover\:pt-3\/6{
  padding-top     : 50% !important;
}

.group:hover .group-hover\:pr-3\/6{
  padding-right     : 50% !important;
}

.group:hover .group-hover\:pb-3\/6{
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:pl-3\/6{
  padding-left     : 50% !important;
}

.group:hover .group-hover\:pt-4\/6{
  padding-top     : 66.666667% !important;
}

.group:hover .group-hover\:pr-4\/6{
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:pb-4\/6{
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:pl-4\/6{
  padding-left     : 66.666667% !important;
}

.group:hover .group-hover\:pt-5\/6{
  padding-top     : 83.333333% !important;
}

.group:hover .group-hover\:pr-5\/6{
  padding-right     : 83.333333% !important;
}

.group:hover .group-hover\:pb-5\/6{
  padding-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:pl-5\/6{
  padding-left     : 83.333333% !important;
}

.group:hover .group-hover\:pt-1\/12{
  padding-top     : 8.333333% !important;
}

.group:hover .group-hover\:pr-1\/12{
  padding-right     : 8.333333% !important;
}

.group:hover .group-hover\:pb-1\/12{
  padding-bottom     : 8.333333% !important;
}

.group:hover .group-hover\:pl-1\/12{
  padding-left     : 8.333333% !important;
}

.group:hover .group-hover\:pt-2\/12{
  padding-top     : 16.666667% !important;
}

.group:hover .group-hover\:pr-2\/12{
  padding-right     : 16.666667% !important;
}

.group:hover .group-hover\:pb-2\/12{
  padding-bottom     : 16.666667% !important;
}

.group:hover .group-hover\:pl-2\/12{
  padding-left     : 16.666667% !important;
}

.group:hover .group-hover\:pt-3\/12{
  padding-top     : 25% !important;
}

.group:hover .group-hover\:pr-3\/12{
  padding-right     : 25% !important;
}

.group:hover .group-hover\:pb-3\/12{
  padding-bottom     : 25% !important;
}

.group:hover .group-hover\:pl-3\/12{
  padding-left     : 25% !important;
}

.group:hover .group-hover\:pt-4\/12{
  padding-top     : 33.333333% !important;
}

.group:hover .group-hover\:pr-4\/12{
  padding-right     : 33.333333% !important;
}

.group:hover .group-hover\:pb-4\/12{
  padding-bottom     : 33.333333% !important;
}

.group:hover .group-hover\:pl-4\/12{
  padding-left     : 33.333333% !important;
}

.group:hover .group-hover\:pt-5\/12{
  padding-top     : 41.666667% !important;
}

.group:hover .group-hover\:pr-5\/12{
  padding-right     : 41.666667% !important;
}

.group:hover .group-hover\:pb-5\/12{
  padding-bottom     : 41.666667% !important;
}

.group:hover .group-hover\:pl-5\/12{
  padding-left     : 41.666667% !important;
}

.group:hover .group-hover\:pt-6\/12{
  padding-top     : 50% !important;
}

.group:hover .group-hover\:pr-6\/12{
  padding-right     : 50% !important;
}

.group:hover .group-hover\:pb-6\/12{
  padding-bottom     : 50% !important;
}

.group:hover .group-hover\:pl-6\/12{
  padding-left     : 50% !important;
}

.group:hover .group-hover\:pt-7\/12{
  padding-top     : 58.333333% !important;
}

.group:hover .group-hover\:pr-7\/12{
  padding-right     : 58.333333% !important;
}

.group:hover .group-hover\:pb-7\/12{
  padding-bottom     : 58.333333% !important;
}

.group:hover .group-hover\:pl-7\/12{
  padding-left     : 58.333333% !important;
}

.group:hover .group-hover\:pt-8\/12{
  padding-top     : 66.666667% !important;
}

.group:hover .group-hover\:pr-8\/12{
  padding-right     : 66.666667% !important;
}

.group:hover .group-hover\:pb-8\/12{
  padding-bottom     : 66.666667% !important;
}

.group:hover .group-hover\:pl-8\/12{
  padding-left     : 66.666667% !important;
}

.group:hover .group-hover\:pt-9\/12{
  padding-top     : 75% !important;
}

.group:hover .group-hover\:pr-9\/12{
  padding-right     : 75% !important;
}

.group:hover .group-hover\:pb-9\/12{
  padding-bottom     : 75% !important;
}

.group:hover .group-hover\:pl-9\/12{
  padding-left     : 75% !important;
}

.group:hover .group-hover\:pt-10\/12{
  padding-top     : 83.333333% !important;
}

.group:hover .group-hover\:pr-10\/12{
  padding-right     : 83.333333% !important;
}

.group:hover .group-hover\:pb-10\/12{
  padding-bottom     : 83.333333% !important;
}

.group:hover .group-hover\:pl-10\/12{
  padding-left     : 83.333333% !important;
}

.group:hover .group-hover\:pt-11\/12{
  padding-top     : 91.666667% !important;
}

.group:hover .group-hover\:pr-11\/12{
  padding-right     : 91.666667% !important;
}

.group:hover .group-hover\:pb-11\/12{
  padding-bottom     : 91.666667% !important;
}

.group:hover .group-hover\:pl-11\/12{
  padding-left     : 91.666667% !important;
}

.group:hover .group-hover\:pt-full{
  padding-top     : 100% !important;
}

.group:hover .group-hover\:pr-full{
  padding-right     : 100% !important;
}

.group:hover .group-hover\:pb-full{
  padding-bottom     : 100% !important;
}

.group:hover .group-hover\:pl-full{
  padding-left     : 100% !important;
}

.hover\:p-0:hover{
  padding     : 0 !important;
}

.hover\:p-1:hover{
  padding     : 0.25rem !important;
}

.hover\:p-2:hover{
  padding     : 0.5rem !important;
}

.hover\:p-3:hover{
  padding     : 0.75rem !important;
}

.hover\:p-4:hover{
  padding     : 1rem !important;
}

.hover\:p-5:hover{
  padding     : 1.25rem !important;
}

.hover\:p-6:hover{
  padding     : 1.5rem !important;
}

.hover\:p-7:hover{
  padding     : 1.75rem !important;
}

.hover\:p-8:hover{
  padding     : 2rem !important;
}

.hover\:p-9:hover{
  padding     : 2.25rem !important;
}

.hover\:p-10:hover{
  padding     : 2.5rem !important;
}

.hover\:p-11:hover{
  padding     : 2.75rem !important;
}

.hover\:p-12:hover{
  padding     : 3rem !important;
}

.hover\:p-13:hover{
  padding     : 3.25rem !important;
}

.hover\:p-14:hover{
  padding     : 3.5rem !important;
}

.hover\:p-15:hover{
  padding     : 3.75rem !important;
}

.hover\:p-16:hover{
  padding     : 4rem !important;
}

.hover\:p-20:hover{
  padding     : 5rem !important;
}

.hover\:p-24:hover{
  padding     : 6rem !important;
}

.hover\:p-28:hover{
  padding     : 7rem !important;
}

.hover\:p-32:hover{
  padding     : 8rem !important;
}

.hover\:p-36:hover{
  padding     : 9rem !important;
}

.hover\:p-40:hover{
  padding     : 10rem !important;
}

.hover\:p-44:hover{
  padding     : 11rem !important;
}

.hover\:p-48:hover{
  padding     : 12rem !important;
}

.hover\:p-52:hover{
  padding     : 13rem !important;
}

.hover\:p-56:hover{
  padding     : 14rem !important;
}

.hover\:p-60:hover{
  padding     : 15rem !important;
}

.hover\:p-64:hover{
  padding     : 16rem !important;
}

.hover\:p-72:hover{
  padding     : 18rem !important;
}

.hover\:p-80:hover{
  padding     : 20rem !important;
}

.hover\:p-96:hover{
  padding     : 24rem !important;
}

.hover\:p-px:hover{
  padding     : 1px !important;
}

.hover\:p-0\.5:hover{
  padding     : 0.125rem !important;
}

.hover\:p-1\.5:hover{
  padding     : 0.375rem !important;
}

.hover\:p-2\.5:hover{
  padding     : 0.625rem !important;
}

.hover\:p-3\.5:hover{
  padding     : 0.875rem !important;
}

.hover\:p-1\/2:hover{
  padding     : 50% !important;
}

.hover\:p-1\/3:hover{
  padding     : 33.333333% !important;
}

.hover\:p-2\/3:hover{
  padding     : 66.666667% !important;
}

.hover\:p-1\/4:hover{
  padding     : 25% !important;
}

.hover\:p-2\/4:hover{
  padding     : 50% !important;
}

.hover\:p-3\/4:hover{
  padding     : 75% !important;
}

.hover\:p-1\/5:hover{
  padding     : 20% !important;
}

.hover\:p-2\/5:hover{
  padding     : 40% !important;
}

.hover\:p-3\/5:hover{
  padding     : 60% !important;
}

.hover\:p-4\/5:hover{
  padding     : 80% !important;
}

.hover\:p-1\/6:hover{
  padding     : 16.666667% !important;
}

.hover\:p-2\/6:hover{
  padding     : 33.333333% !important;
}

.hover\:p-3\/6:hover{
  padding     : 50% !important;
}

.hover\:p-4\/6:hover{
  padding     : 66.666667% !important;
}

.hover\:p-5\/6:hover{
  padding     : 83.333333% !important;
}

.hover\:p-1\/12:hover{
  padding     : 8.333333% !important;
}

.hover\:p-2\/12:hover{
  padding     : 16.666667% !important;
}

.hover\:p-3\/12:hover{
  padding     : 25% !important;
}

.hover\:p-4\/12:hover{
  padding     : 33.333333% !important;
}

.hover\:p-5\/12:hover{
  padding     : 41.666667% !important;
}

.hover\:p-6\/12:hover{
  padding     : 50% !important;
}

.hover\:p-7\/12:hover{
  padding     : 58.333333% !important;
}

.hover\:p-8\/12:hover{
  padding     : 66.666667% !important;
}

.hover\:p-9\/12:hover{
  padding     : 75% !important;
}

.hover\:p-10\/12:hover{
  padding     : 83.333333% !important;
}

.hover\:p-11\/12:hover{
  padding     : 91.666667% !important;
}

.hover\:p-full:hover{
  padding     : 100% !important;
}

.hover\:py-0:hover{
  padding-top     : 0 !important;
  padding-bottom     : 0 !important;
}

.hover\:px-0:hover{
  padding-left     : 0 !important;
  padding-right     : 0 !important;
}

.hover\:py-1:hover{
  padding-top     : 0.25rem !important;
  padding-bottom     : 0.25rem !important;
}

.hover\:px-1:hover{
  padding-left     : 0.25rem !important;
  padding-right     : 0.25rem !important;
}

.hover\:py-2:hover{
  padding-top     : 0.5rem !important;
  padding-bottom     : 0.5rem !important;
}

.hover\:px-2:hover{
  padding-left     : 0.5rem !important;
  padding-right     : 0.5rem !important;
}

.hover\:py-3:hover{
  padding-top     : 0.75rem !important;
  padding-bottom     : 0.75rem !important;
}

.hover\:px-3:hover{
  padding-left     : 0.75rem !important;
  padding-right     : 0.75rem !important;
}

.hover\:py-4:hover{
  padding-top     : 1rem !important;
  padding-bottom     : 1rem !important;
}

.hover\:px-4:hover{
  padding-left     : 1rem !important;
  padding-right     : 1rem !important;
}

.hover\:py-5:hover{
  padding-top     : 1.25rem !important;
  padding-bottom     : 1.25rem !important;
}

.hover\:px-5:hover{
  padding-left     : 1.25rem !important;
  padding-right     : 1.25rem !important;
}

.hover\:py-6:hover{
  padding-top     : 1.5rem !important;
  padding-bottom     : 1.5rem !important;
}

.hover\:px-6:hover{
  padding-left     : 1.5rem !important;
  padding-right     : 1.5rem !important;
}

.hover\:py-7:hover{
  padding-top     : 1.75rem !important;
  padding-bottom     : 1.75rem !important;
}

.hover\:px-7:hover{
  padding-left     : 1.75rem !important;
  padding-right     : 1.75rem !important;
}

.hover\:py-8:hover{
  padding-top     : 2rem !important;
  padding-bottom     : 2rem !important;
}

.hover\:px-8:hover{
  padding-left     : 2rem !important;
  padding-right     : 2rem !important;
}

.hover\:py-9:hover{
  padding-top     : 2.25rem !important;
  padding-bottom     : 2.25rem !important;
}

.hover\:px-9:hover{
  padding-left     : 2.25rem !important;
  padding-right     : 2.25rem !important;
}

.hover\:py-10:hover{
  padding-top     : 2.5rem !important;
  padding-bottom     : 2.5rem !important;
}

.hover\:px-10:hover{
  padding-left     : 2.5rem !important;
  padding-right     : 2.5rem !important;
}

.hover\:py-11:hover{
  padding-top     : 2.75rem !important;
  padding-bottom     : 2.75rem !important;
}

.hover\:px-11:hover{
  padding-left     : 2.75rem !important;
  padding-right     : 2.75rem !important;
}

.hover\:py-12:hover{
  padding-top     : 3rem !important;
  padding-bottom     : 3rem !important;
}

.hover\:px-12:hover{
  padding-left     : 3rem !important;
  padding-right     : 3rem !important;
}

.hover\:py-13:hover{
  padding-top     : 3.25rem !important;
  padding-bottom     : 3.25rem !important;
}

.hover\:px-13:hover{
  padding-left     : 3.25rem !important;
  padding-right     : 3.25rem !important;
}

.hover\:py-14:hover{
  padding-top     : 3.5rem !important;
  padding-bottom     : 3.5rem !important;
}

.hover\:px-14:hover{
  padding-left     : 3.5rem !important;
  padding-right     : 3.5rem !important;
}

.hover\:py-15:hover{
  padding-top     : 3.75rem !important;
  padding-bottom     : 3.75rem !important;
}

.hover\:px-15:hover{
  padding-left     : 3.75rem !important;
  padding-right     : 3.75rem !important;
}

.hover\:py-16:hover{
  padding-top     : 4rem !important;
  padding-bottom     : 4rem !important;
}

.hover\:px-16:hover{
  padding-left     : 4rem !important;
  padding-right     : 4rem !important;
}

.hover\:py-20:hover{
  padding-top     : 5rem !important;
  padding-bottom     : 5rem !important;
}

.hover\:px-20:hover{
  padding-left     : 5rem !important;
  padding-right     : 5rem !important;
}

.hover\:py-24:hover{
  padding-top     : 6rem !important;
  padding-bottom     : 6rem !important;
}

.hover\:px-24:hover{
  padding-left     : 6rem !important;
  padding-right     : 6rem !important;
}

.hover\:py-28:hover{
  padding-top     : 7rem !important;
  padding-bottom     : 7rem !important;
}

.hover\:px-28:hover{
  padding-left     : 7rem !important;
  padding-right     : 7rem !important;
}

.hover\:py-32:hover{
  padding-top     : 8rem !important;
  padding-bottom     : 8rem !important;
}

.hover\:px-32:hover{
  padding-left     : 8rem !important;
  padding-right     : 8rem !important;
}

.hover\:py-36:hover{
  padding-top     : 9rem !important;
  padding-bottom     : 9rem !important;
}

.hover\:px-36:hover{
  padding-left     : 9rem !important;
  padding-right     : 9rem !important;
}

.hover\:py-40:hover{
  padding-top     : 10rem !important;
  padding-bottom     : 10rem !important;
}

.hover\:px-40:hover{
  padding-left     : 10rem !important;
  padding-right     : 10rem !important;
}

.hover\:py-44:hover{
  padding-top     : 11rem !important;
  padding-bottom     : 11rem !important;
}

.hover\:px-44:hover{
  padding-left     : 11rem !important;
  padding-right     : 11rem !important;
}

.hover\:py-48:hover{
  padding-top     : 12rem !important;
  padding-bottom     : 12rem !important;
}

.hover\:px-48:hover{
  padding-left     : 12rem !important;
  padding-right     : 12rem !important;
}

.hover\:py-52:hover{
  padding-top     : 13rem !important;
  padding-bottom     : 13rem !important;
}

.hover\:px-52:hover{
  padding-left     : 13rem !important;
  padding-right     : 13rem !important;
}

.hover\:py-56:hover{
  padding-top     : 14rem !important;
  padding-bottom     : 14rem !important;
}

.hover\:px-56:hover{
  padding-left     : 14rem !important;
  padding-right     : 14rem !important;
}

.hover\:py-60:hover{
  padding-top     : 15rem !important;
  padding-bottom     : 15rem !important;
}

.hover\:px-60:hover{
  padding-left     : 15rem !important;
  padding-right     : 15rem !important;
}

.hover\:py-64:hover{
  padding-top     : 16rem !important;
  padding-bottom     : 16rem !important;
}

.hover\:px-64:hover{
  padding-left     : 16rem !important;
  padding-right     : 16rem !important;
}

.hover\:py-72:hover{
  padding-top     : 18rem !important;
  padding-bottom     : 18rem !important;
}

.hover\:px-72:hover{
  padding-left     : 18rem !important;
  padding-right     : 18rem !important;
}

.hover\:py-80:hover{
  padding-top     : 20rem !important;
  padding-bottom     : 20rem !important;
}

.hover\:px-80:hover{
  padding-left     : 20rem !important;
  padding-right     : 20rem !important;
}

.hover\:py-96:hover{
  padding-top     : 24rem !important;
  padding-bottom     : 24rem !important;
}

.hover\:px-96:hover{
  padding-left     : 24rem !important;
  padding-right     : 24rem !important;
}

.hover\:py-px:hover{
  padding-top     : 1px !important;
  padding-bottom     : 1px !important;
}

.hover\:px-px:hover{
  padding-left     : 1px !important;
  padding-right     : 1px !important;
}

.hover\:py-0\.5:hover{
  padding-top     : 0.125rem !important;
  padding-bottom     : 0.125rem !important;
}

.hover\:px-0\.5:hover{
  padding-left     : 0.125rem !important;
  padding-right     : 0.125rem !important;
}

.hover\:py-1\.5:hover{
  padding-top     : 0.375rem !important;
  padding-bottom     : 0.375rem !important;
}

.hover\:px-1\.5:hover{
  padding-left     : 0.375rem !important;
  padding-right     : 0.375rem !important;
}

.hover\:py-2\.5:hover{
  padding-top     : 0.625rem !important;
  padding-bottom     : 0.625rem !important;
}

.hover\:px-2\.5:hover{
  padding-left     : 0.625rem !important;
  padding-right     : 0.625rem !important;
}

.hover\:py-3\.5:hover{
  padding-top     : 0.875rem !important;
  padding-bottom     : 0.875rem !important;
}

.hover\:px-3\.5:hover{
  padding-left     : 0.875rem !important;
  padding-right     : 0.875rem !important;
}

.hover\:py-1\/2:hover{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.hover\:px-1\/2:hover{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.hover\:py-1\/3:hover{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.hover\:px-1\/3:hover{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.hover\:py-2\/3:hover{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.hover\:px-2\/3:hover{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.hover\:py-1\/4:hover{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.hover\:px-1\/4:hover{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.hover\:py-2\/4:hover{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.hover\:px-2\/4:hover{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.hover\:py-3\/4:hover{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.hover\:px-3\/4:hover{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.hover\:py-1\/5:hover{
  padding-top     : 20% !important;
  padding-bottom     : 20% !important;
}

.hover\:px-1\/5:hover{
  padding-left     : 20% !important;
  padding-right     : 20% !important;
}

.hover\:py-2\/5:hover{
  padding-top     : 40% !important;
  padding-bottom     : 40% !important;
}

.hover\:px-2\/5:hover{
  padding-left     : 40% !important;
  padding-right     : 40% !important;
}

.hover\:py-3\/5:hover{
  padding-top     : 60% !important;
  padding-bottom     : 60% !important;
}

.hover\:px-3\/5:hover{
  padding-left     : 60% !important;
  padding-right     : 60% !important;
}

.hover\:py-4\/5:hover{
  padding-top     : 80% !important;
  padding-bottom     : 80% !important;
}

.hover\:px-4\/5:hover{
  padding-left     : 80% !important;
  padding-right     : 80% !important;
}

.hover\:py-1\/6:hover{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.hover\:px-1\/6:hover{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.hover\:py-2\/6:hover{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.hover\:px-2\/6:hover{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.hover\:py-3\/6:hover{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.hover\:px-3\/6:hover{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.hover\:py-4\/6:hover{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.hover\:px-4\/6:hover{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.hover\:py-5\/6:hover{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.hover\:px-5\/6:hover{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.hover\:py-1\/12:hover{
  padding-top     : 8.333333% !important;
  padding-bottom     : 8.333333% !important;
}

.hover\:px-1\/12:hover{
  padding-left     : 8.333333% !important;
  padding-right     : 8.333333% !important;
}

.hover\:py-2\/12:hover{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.hover\:px-2\/12:hover{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.hover\:py-3\/12:hover{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.hover\:px-3\/12:hover{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.hover\:py-4\/12:hover{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.hover\:px-4\/12:hover{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.hover\:py-5\/12:hover{
  padding-top     : 41.666667% !important;
  padding-bottom     : 41.666667% !important;
}

.hover\:px-5\/12:hover{
  padding-left     : 41.666667% !important;
  padding-right     : 41.666667% !important;
}

.hover\:py-6\/12:hover{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.hover\:px-6\/12:hover{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.hover\:py-7\/12:hover{
  padding-top     : 58.333333% !important;
  padding-bottom     : 58.333333% !important;
}

.hover\:px-7\/12:hover{
  padding-left     : 58.333333% !important;
  padding-right     : 58.333333% !important;
}

.hover\:py-8\/12:hover{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.hover\:px-8\/12:hover{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.hover\:py-9\/12:hover{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.hover\:px-9\/12:hover{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.hover\:py-10\/12:hover{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.hover\:px-10\/12:hover{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.hover\:py-11\/12:hover{
  padding-top     : 91.666667% !important;
  padding-bottom     : 91.666667% !important;
}

.hover\:px-11\/12:hover{
  padding-left     : 91.666667% !important;
  padding-right     : 91.666667% !important;
}

.hover\:py-full:hover{
  padding-top     : 100% !important;
  padding-bottom     : 100% !important;
}

.hover\:px-full:hover{
  padding-left     : 100% !important;
  padding-right     : 100% !important;
}

.hover\:pt-0:hover{
  padding-top     : 0 !important;
}

.hover\:pr-0:hover{
  padding-right     : 0 !important;
}

.hover\:pb-0:hover{
  padding-bottom     : 0 !important;
}

.hover\:pl-0:hover{
  padding-left     : 0 !important;
}

.hover\:pt-1:hover{
  padding-top     : 0.25rem !important;
}

.hover\:pr-1:hover{
  padding-right     : 0.25rem !important;
}

.hover\:pb-1:hover{
  padding-bottom     : 0.25rem !important;
}

.hover\:pl-1:hover{
  padding-left     : 0.25rem !important;
}

.hover\:pt-2:hover{
  padding-top     : 0.5rem !important;
}

.hover\:pr-2:hover{
  padding-right     : 0.5rem !important;
}

.hover\:pb-2:hover{
  padding-bottom     : 0.5rem !important;
}

.hover\:pl-2:hover{
  padding-left     : 0.5rem !important;
}

.hover\:pt-3:hover{
  padding-top     : 0.75rem !important;
}

.hover\:pr-3:hover{
  padding-right     : 0.75rem !important;
}

.hover\:pb-3:hover{
  padding-bottom     : 0.75rem !important;
}

.hover\:pl-3:hover{
  padding-left     : 0.75rem !important;
}

.hover\:pt-4:hover{
  padding-top     : 1rem !important;
}

.hover\:pr-4:hover{
  padding-right     : 1rem !important;
}

.hover\:pb-4:hover{
  padding-bottom     : 1rem !important;
}

.hover\:pl-4:hover{
  padding-left     : 1rem !important;
}

.hover\:pt-5:hover{
  padding-top     : 1.25rem !important;
}

.hover\:pr-5:hover{
  padding-right     : 1.25rem !important;
}

.hover\:pb-5:hover{
  padding-bottom     : 1.25rem !important;
}

.hover\:pl-5:hover{
  padding-left     : 1.25rem !important;
}

.hover\:pt-6:hover{
  padding-top     : 1.5rem !important;
}

.hover\:pr-6:hover{
  padding-right     : 1.5rem !important;
}

.hover\:pb-6:hover{
  padding-bottom     : 1.5rem !important;
}

.hover\:pl-6:hover{
  padding-left     : 1.5rem !important;
}

.hover\:pt-7:hover{
  padding-top     : 1.75rem !important;
}

.hover\:pr-7:hover{
  padding-right     : 1.75rem !important;
}

.hover\:pb-7:hover{
  padding-bottom     : 1.75rem !important;
}

.hover\:pl-7:hover{
  padding-left     : 1.75rem !important;
}

.hover\:pt-8:hover{
  padding-top     : 2rem !important;
}

.hover\:pr-8:hover{
  padding-right     : 2rem !important;
}

.hover\:pb-8:hover{
  padding-bottom     : 2rem !important;
}

.hover\:pl-8:hover{
  padding-left     : 2rem !important;
}

.hover\:pt-9:hover{
  padding-top     : 2.25rem !important;
}

.hover\:pr-9:hover{
  padding-right     : 2.25rem !important;
}

.hover\:pb-9:hover{
  padding-bottom     : 2.25rem !important;
}

.hover\:pl-9:hover{
  padding-left     : 2.25rem !important;
}

.hover\:pt-10:hover{
  padding-top     : 2.5rem !important;
}

.hover\:pr-10:hover{
  padding-right     : 2.5rem !important;
}

.hover\:pb-10:hover{
  padding-bottom     : 2.5rem !important;
}

.hover\:pl-10:hover{
  padding-left     : 2.5rem !important;
}

.hover\:pt-11:hover{
  padding-top     : 2.75rem !important;
}

.hover\:pr-11:hover{
  padding-right     : 2.75rem !important;
}

.hover\:pb-11:hover{
  padding-bottom     : 2.75rem !important;
}

.hover\:pl-11:hover{
  padding-left     : 2.75rem !important;
}

.hover\:pt-12:hover{
  padding-top     : 3rem !important;
}

.hover\:pr-12:hover{
  padding-right     : 3rem !important;
}

.hover\:pb-12:hover{
  padding-bottom     : 3rem !important;
}

.hover\:pl-12:hover{
  padding-left     : 3rem !important;
}

.hover\:pt-13:hover{
  padding-top     : 3.25rem !important;
}

.hover\:pr-13:hover{
  padding-right     : 3.25rem !important;
}

.hover\:pb-13:hover{
  padding-bottom     : 3.25rem !important;
}

.hover\:pl-13:hover{
  padding-left     : 3.25rem !important;
}

.hover\:pt-14:hover{
  padding-top     : 3.5rem !important;
}

.hover\:pr-14:hover{
  padding-right     : 3.5rem !important;
}

.hover\:pb-14:hover{
  padding-bottom     : 3.5rem !important;
}

.hover\:pl-14:hover{
  padding-left     : 3.5rem !important;
}

.hover\:pt-15:hover{
  padding-top     : 3.75rem !important;
}

.hover\:pr-15:hover{
  padding-right     : 3.75rem !important;
}

.hover\:pb-15:hover{
  padding-bottom     : 3.75rem !important;
}

.hover\:pl-15:hover{
  padding-left     : 3.75rem !important;
}

.hover\:pt-16:hover{
  padding-top     : 4rem !important;
}

.hover\:pr-16:hover{
  padding-right     : 4rem !important;
}

.hover\:pb-16:hover{
  padding-bottom     : 4rem !important;
}

.hover\:pl-16:hover{
  padding-left     : 4rem !important;
}

.hover\:pt-20:hover{
  padding-top     : 5rem !important;
}

.hover\:pr-20:hover{
  padding-right     : 5rem !important;
}

.hover\:pb-20:hover{
  padding-bottom     : 5rem !important;
}

.hover\:pl-20:hover{
  padding-left     : 5rem !important;
}

.hover\:pt-24:hover{
  padding-top     : 6rem !important;
}

.hover\:pr-24:hover{
  padding-right     : 6rem !important;
}

.hover\:pb-24:hover{
  padding-bottom     : 6rem !important;
}

.hover\:pl-24:hover{
  padding-left     : 6rem !important;
}

.hover\:pt-28:hover{
  padding-top     : 7rem !important;
}

.hover\:pr-28:hover{
  padding-right     : 7rem !important;
}

.hover\:pb-28:hover{
  padding-bottom     : 7rem !important;
}

.hover\:pl-28:hover{
  padding-left     : 7rem !important;
}

.hover\:pt-32:hover{
  padding-top     : 8rem !important;
}

.hover\:pr-32:hover{
  padding-right     : 8rem !important;
}

.hover\:pb-32:hover{
  padding-bottom     : 8rem !important;
}

.hover\:pl-32:hover{
  padding-left     : 8rem !important;
}

.hover\:pt-36:hover{
  padding-top     : 9rem !important;
}

.hover\:pr-36:hover{
  padding-right     : 9rem !important;
}

.hover\:pb-36:hover{
  padding-bottom     : 9rem !important;
}

.hover\:pl-36:hover{
  padding-left     : 9rem !important;
}

.hover\:pt-40:hover{
  padding-top     : 10rem !important;
}

.hover\:pr-40:hover{
  padding-right     : 10rem !important;
}

.hover\:pb-40:hover{
  padding-bottom     : 10rem !important;
}

.hover\:pl-40:hover{
  padding-left     : 10rem !important;
}

.hover\:pt-44:hover{
  padding-top     : 11rem !important;
}

.hover\:pr-44:hover{
  padding-right     : 11rem !important;
}

.hover\:pb-44:hover{
  padding-bottom     : 11rem !important;
}

.hover\:pl-44:hover{
  padding-left     : 11rem !important;
}

.hover\:pt-48:hover{
  padding-top     : 12rem !important;
}

.hover\:pr-48:hover{
  padding-right     : 12rem !important;
}

.hover\:pb-48:hover{
  padding-bottom     : 12rem !important;
}

.hover\:pl-48:hover{
  padding-left     : 12rem !important;
}

.hover\:pt-52:hover{
  padding-top     : 13rem !important;
}

.hover\:pr-52:hover{
  padding-right     : 13rem !important;
}

.hover\:pb-52:hover{
  padding-bottom     : 13rem !important;
}

.hover\:pl-52:hover{
  padding-left     : 13rem !important;
}

.hover\:pt-56:hover{
  padding-top     : 14rem !important;
}

.hover\:pr-56:hover{
  padding-right     : 14rem !important;
}

.hover\:pb-56:hover{
  padding-bottom     : 14rem !important;
}

.hover\:pl-56:hover{
  padding-left     : 14rem !important;
}

.hover\:pt-60:hover{
  padding-top     : 15rem !important;
}

.hover\:pr-60:hover{
  padding-right     : 15rem !important;
}

.hover\:pb-60:hover{
  padding-bottom     : 15rem !important;
}

.hover\:pl-60:hover{
  padding-left     : 15rem !important;
}

.hover\:pt-64:hover{
  padding-top     : 16rem !important;
}

.hover\:pr-64:hover{
  padding-right     : 16rem !important;
}

.hover\:pb-64:hover{
  padding-bottom     : 16rem !important;
}

.hover\:pl-64:hover{
  padding-left     : 16rem !important;
}

.hover\:pt-72:hover{
  padding-top     : 18rem !important;
}

.hover\:pr-72:hover{
  padding-right     : 18rem !important;
}

.hover\:pb-72:hover{
  padding-bottom     : 18rem !important;
}

.hover\:pl-72:hover{
  padding-left     : 18rem !important;
}

.hover\:pt-80:hover{
  padding-top     : 20rem !important;
}

.hover\:pr-80:hover{
  padding-right     : 20rem !important;
}

.hover\:pb-80:hover{
  padding-bottom     : 20rem !important;
}

.hover\:pl-80:hover{
  padding-left     : 20rem !important;
}

.hover\:pt-96:hover{
  padding-top     : 24rem !important;
}

.hover\:pr-96:hover{
  padding-right     : 24rem !important;
}

.hover\:pb-96:hover{
  padding-bottom     : 24rem !important;
}

.hover\:pl-96:hover{
  padding-left     : 24rem !important;
}

.hover\:pt-px:hover{
  padding-top     : 1px !important;
}

.hover\:pr-px:hover{
  padding-right     : 1px !important;
}

.hover\:pb-px:hover{
  padding-bottom     : 1px !important;
}

.hover\:pl-px:hover{
  padding-left     : 1px !important;
}

.hover\:pt-0\.5:hover{
  padding-top     : 0.125rem !important;
}

.hover\:pr-0\.5:hover{
  padding-right     : 0.125rem !important;
}

.hover\:pb-0\.5:hover{
  padding-bottom     : 0.125rem !important;
}

.hover\:pl-0\.5:hover{
  padding-left     : 0.125rem !important;
}

.hover\:pt-1\.5:hover{
  padding-top     : 0.375rem !important;
}

.hover\:pr-1\.5:hover{
  padding-right     : 0.375rem !important;
}

.hover\:pb-1\.5:hover{
  padding-bottom     : 0.375rem !important;
}

.hover\:pl-1\.5:hover{
  padding-left     : 0.375rem !important;
}

.hover\:pt-2\.5:hover{
  padding-top     : 0.625rem !important;
}

.hover\:pr-2\.5:hover{
  padding-right     : 0.625rem !important;
}

.hover\:pb-2\.5:hover{
  padding-bottom     : 0.625rem !important;
}

.hover\:pl-2\.5:hover{
  padding-left     : 0.625rem !important;
}

.hover\:pt-3\.5:hover{
  padding-top     : 0.875rem !important;
}

.hover\:pr-3\.5:hover{
  padding-right     : 0.875rem !important;
}

.hover\:pb-3\.5:hover{
  padding-bottom     : 0.875rem !important;
}

.hover\:pl-3\.5:hover{
  padding-left     : 0.875rem !important;
}

.hover\:pt-1\/2:hover{
  padding-top     : 50% !important;
}

.hover\:pr-1\/2:hover{
  padding-right     : 50% !important;
}

.hover\:pb-1\/2:hover{
  padding-bottom     : 50% !important;
}

.hover\:pl-1\/2:hover{
  padding-left     : 50% !important;
}

.hover\:pt-1\/3:hover{
  padding-top     : 33.333333% !important;
}

.hover\:pr-1\/3:hover{
  padding-right     : 33.333333% !important;
}

.hover\:pb-1\/3:hover{
  padding-bottom     : 33.333333% !important;
}

.hover\:pl-1\/3:hover{
  padding-left     : 33.333333% !important;
}

.hover\:pt-2\/3:hover{
  padding-top     : 66.666667% !important;
}

.hover\:pr-2\/3:hover{
  padding-right     : 66.666667% !important;
}

.hover\:pb-2\/3:hover{
  padding-bottom     : 66.666667% !important;
}

.hover\:pl-2\/3:hover{
  padding-left     : 66.666667% !important;
}

.hover\:pt-1\/4:hover{
  padding-top     : 25% !important;
}

.hover\:pr-1\/4:hover{
  padding-right     : 25% !important;
}

.hover\:pb-1\/4:hover{
  padding-bottom     : 25% !important;
}

.hover\:pl-1\/4:hover{
  padding-left     : 25% !important;
}

.hover\:pt-2\/4:hover{
  padding-top     : 50% !important;
}

.hover\:pr-2\/4:hover{
  padding-right     : 50% !important;
}

.hover\:pb-2\/4:hover{
  padding-bottom     : 50% !important;
}

.hover\:pl-2\/4:hover{
  padding-left     : 50% !important;
}

.hover\:pt-3\/4:hover{
  padding-top     : 75% !important;
}

.hover\:pr-3\/4:hover{
  padding-right     : 75% !important;
}

.hover\:pb-3\/4:hover{
  padding-bottom     : 75% !important;
}

.hover\:pl-3\/4:hover{
  padding-left     : 75% !important;
}

.hover\:pt-1\/5:hover{
  padding-top     : 20% !important;
}

.hover\:pr-1\/5:hover{
  padding-right     : 20% !important;
}

.hover\:pb-1\/5:hover{
  padding-bottom     : 20% !important;
}

.hover\:pl-1\/5:hover{
  padding-left     : 20% !important;
}

.hover\:pt-2\/5:hover{
  padding-top     : 40% !important;
}

.hover\:pr-2\/5:hover{
  padding-right     : 40% !important;
}

.hover\:pb-2\/5:hover{
  padding-bottom     : 40% !important;
}

.hover\:pl-2\/5:hover{
  padding-left     : 40% !important;
}

.hover\:pt-3\/5:hover{
  padding-top     : 60% !important;
}

.hover\:pr-3\/5:hover{
  padding-right     : 60% !important;
}

.hover\:pb-3\/5:hover{
  padding-bottom     : 60% !important;
}

.hover\:pl-3\/5:hover{
  padding-left     : 60% !important;
}

.hover\:pt-4\/5:hover{
  padding-top     : 80% !important;
}

.hover\:pr-4\/5:hover{
  padding-right     : 80% !important;
}

.hover\:pb-4\/5:hover{
  padding-bottom     : 80% !important;
}

.hover\:pl-4\/5:hover{
  padding-left     : 80% !important;
}

.hover\:pt-1\/6:hover{
  padding-top     : 16.666667% !important;
}

.hover\:pr-1\/6:hover{
  padding-right     : 16.666667% !important;
}

.hover\:pb-1\/6:hover{
  padding-bottom     : 16.666667% !important;
}

.hover\:pl-1\/6:hover{
  padding-left     : 16.666667% !important;
}

.hover\:pt-2\/6:hover{
  padding-top     : 33.333333% !important;
}

.hover\:pr-2\/6:hover{
  padding-right     : 33.333333% !important;
}

.hover\:pb-2\/6:hover{
  padding-bottom     : 33.333333% !important;
}

.hover\:pl-2\/6:hover{
  padding-left     : 33.333333% !important;
}

.hover\:pt-3\/6:hover{
  padding-top     : 50% !important;
}

.hover\:pr-3\/6:hover{
  padding-right     : 50% !important;
}

.hover\:pb-3\/6:hover{
  padding-bottom     : 50% !important;
}

.hover\:pl-3\/6:hover{
  padding-left     : 50% !important;
}

.hover\:pt-4\/6:hover{
  padding-top     : 66.666667% !important;
}

.hover\:pr-4\/6:hover{
  padding-right     : 66.666667% !important;
}

.hover\:pb-4\/6:hover{
  padding-bottom     : 66.666667% !important;
}

.hover\:pl-4\/6:hover{
  padding-left     : 66.666667% !important;
}

.hover\:pt-5\/6:hover{
  padding-top     : 83.333333% !important;
}

.hover\:pr-5\/6:hover{
  padding-right     : 83.333333% !important;
}

.hover\:pb-5\/6:hover{
  padding-bottom     : 83.333333% !important;
}

.hover\:pl-5\/6:hover{
  padding-left     : 83.333333% !important;
}

.hover\:pt-1\/12:hover{
  padding-top     : 8.333333% !important;
}

.hover\:pr-1\/12:hover{
  padding-right     : 8.333333% !important;
}

.hover\:pb-1\/12:hover{
  padding-bottom     : 8.333333% !important;
}

.hover\:pl-1\/12:hover{
  padding-left     : 8.333333% !important;
}

.hover\:pt-2\/12:hover{
  padding-top     : 16.666667% !important;
}

.hover\:pr-2\/12:hover{
  padding-right     : 16.666667% !important;
}

.hover\:pb-2\/12:hover{
  padding-bottom     : 16.666667% !important;
}

.hover\:pl-2\/12:hover{
  padding-left     : 16.666667% !important;
}

.hover\:pt-3\/12:hover{
  padding-top     : 25% !important;
}

.hover\:pr-3\/12:hover{
  padding-right     : 25% !important;
}

.hover\:pb-3\/12:hover{
  padding-bottom     : 25% !important;
}

.hover\:pl-3\/12:hover{
  padding-left     : 25% !important;
}

.hover\:pt-4\/12:hover{
  padding-top     : 33.333333% !important;
}

.hover\:pr-4\/12:hover{
  padding-right     : 33.333333% !important;
}

.hover\:pb-4\/12:hover{
  padding-bottom     : 33.333333% !important;
}

.hover\:pl-4\/12:hover{
  padding-left     : 33.333333% !important;
}

.hover\:pt-5\/12:hover{
  padding-top     : 41.666667% !important;
}

.hover\:pr-5\/12:hover{
  padding-right     : 41.666667% !important;
}

.hover\:pb-5\/12:hover{
  padding-bottom     : 41.666667% !important;
}

.hover\:pl-5\/12:hover{
  padding-left     : 41.666667% !important;
}

.hover\:pt-6\/12:hover{
  padding-top     : 50% !important;
}

.hover\:pr-6\/12:hover{
  padding-right     : 50% !important;
}

.hover\:pb-6\/12:hover{
  padding-bottom     : 50% !important;
}

.hover\:pl-6\/12:hover{
  padding-left     : 50% !important;
}

.hover\:pt-7\/12:hover{
  padding-top     : 58.333333% !important;
}

.hover\:pr-7\/12:hover{
  padding-right     : 58.333333% !important;
}

.hover\:pb-7\/12:hover{
  padding-bottom     : 58.333333% !important;
}

.hover\:pl-7\/12:hover{
  padding-left     : 58.333333% !important;
}

.hover\:pt-8\/12:hover{
  padding-top     : 66.666667% !important;
}

.hover\:pr-8\/12:hover{
  padding-right     : 66.666667% !important;
}

.hover\:pb-8\/12:hover{
  padding-bottom     : 66.666667% !important;
}

.hover\:pl-8\/12:hover{
  padding-left     : 66.666667% !important;
}

.hover\:pt-9\/12:hover{
  padding-top     : 75% !important;
}

.hover\:pr-9\/12:hover{
  padding-right     : 75% !important;
}

.hover\:pb-9\/12:hover{
  padding-bottom     : 75% !important;
}

.hover\:pl-9\/12:hover{
  padding-left     : 75% !important;
}

.hover\:pt-10\/12:hover{
  padding-top     : 83.333333% !important;
}

.hover\:pr-10\/12:hover{
  padding-right     : 83.333333% !important;
}

.hover\:pb-10\/12:hover{
  padding-bottom     : 83.333333% !important;
}

.hover\:pl-10\/12:hover{
  padding-left     : 83.333333% !important;
}

.hover\:pt-11\/12:hover{
  padding-top     : 91.666667% !important;
}

.hover\:pr-11\/12:hover{
  padding-right     : 91.666667% !important;
}

.hover\:pb-11\/12:hover{
  padding-bottom     : 91.666667% !important;
}

.hover\:pl-11\/12:hover{
  padding-left     : 91.666667% !important;
}

.hover\:pt-full:hover{
  padding-top     : 100% !important;
}

.hover\:pr-full:hover{
  padding-right     : 100% !important;
}

.hover\:pb-full:hover{
  padding-bottom     : 100% !important;
}

.hover\:pl-full:hover{
  padding-left     : 100% !important;
}

.focus\:p-0:focus{
  padding     : 0 !important;
}

.focus\:p-1:focus{
  padding     : 0.25rem !important;
}

.focus\:p-2:focus{
  padding     : 0.5rem !important;
}

.focus\:p-3:focus{
  padding     : 0.75rem !important;
}

.focus\:p-4:focus{
  padding     : 1rem !important;
}

.focus\:p-5:focus{
  padding     : 1.25rem !important;
}

.focus\:p-6:focus{
  padding     : 1.5rem !important;
}

.focus\:p-7:focus{
  padding     : 1.75rem !important;
}

.focus\:p-8:focus{
  padding     : 2rem !important;
}

.focus\:p-9:focus{
  padding     : 2.25rem !important;
}

.focus\:p-10:focus{
  padding     : 2.5rem !important;
}

.focus\:p-11:focus{
  padding     : 2.75rem !important;
}

.focus\:p-12:focus{
  padding     : 3rem !important;
}

.focus\:p-13:focus{
  padding     : 3.25rem !important;
}

.focus\:p-14:focus{
  padding     : 3.5rem !important;
}

.focus\:p-15:focus{
  padding     : 3.75rem !important;
}

.focus\:p-16:focus{
  padding     : 4rem !important;
}

.focus\:p-20:focus{
  padding     : 5rem !important;
}

.focus\:p-24:focus{
  padding     : 6rem !important;
}

.focus\:p-28:focus{
  padding     : 7rem !important;
}

.focus\:p-32:focus{
  padding     : 8rem !important;
}

.focus\:p-36:focus{
  padding     : 9rem !important;
}

.focus\:p-40:focus{
  padding     : 10rem !important;
}

.focus\:p-44:focus{
  padding     : 11rem !important;
}

.focus\:p-48:focus{
  padding     : 12rem !important;
}

.focus\:p-52:focus{
  padding     : 13rem !important;
}

.focus\:p-56:focus{
  padding     : 14rem !important;
}

.focus\:p-60:focus{
  padding     : 15rem !important;
}

.focus\:p-64:focus{
  padding     : 16rem !important;
}

.focus\:p-72:focus{
  padding     : 18rem !important;
}

.focus\:p-80:focus{
  padding     : 20rem !important;
}

.focus\:p-96:focus{
  padding     : 24rem !important;
}

.focus\:p-px:focus{
  padding     : 1px !important;
}

.focus\:p-0\.5:focus{
  padding     : 0.125rem !important;
}

.focus\:p-1\.5:focus{
  padding     : 0.375rem !important;
}

.focus\:p-2\.5:focus{
  padding     : 0.625rem !important;
}

.focus\:p-3\.5:focus{
  padding     : 0.875rem !important;
}

.focus\:p-1\/2:focus{
  padding     : 50% !important;
}

.focus\:p-1\/3:focus{
  padding     : 33.333333% !important;
}

.focus\:p-2\/3:focus{
  padding     : 66.666667% !important;
}

.focus\:p-1\/4:focus{
  padding     : 25% !important;
}

.focus\:p-2\/4:focus{
  padding     : 50% !important;
}

.focus\:p-3\/4:focus{
  padding     : 75% !important;
}

.focus\:p-1\/5:focus{
  padding     : 20% !important;
}

.focus\:p-2\/5:focus{
  padding     : 40% !important;
}

.focus\:p-3\/5:focus{
  padding     : 60% !important;
}

.focus\:p-4\/5:focus{
  padding     : 80% !important;
}

.focus\:p-1\/6:focus{
  padding     : 16.666667% !important;
}

.focus\:p-2\/6:focus{
  padding     : 33.333333% !important;
}

.focus\:p-3\/6:focus{
  padding     : 50% !important;
}

.focus\:p-4\/6:focus{
  padding     : 66.666667% !important;
}

.focus\:p-5\/6:focus{
  padding     : 83.333333% !important;
}

.focus\:p-1\/12:focus{
  padding     : 8.333333% !important;
}

.focus\:p-2\/12:focus{
  padding     : 16.666667% !important;
}

.focus\:p-3\/12:focus{
  padding     : 25% !important;
}

.focus\:p-4\/12:focus{
  padding     : 33.333333% !important;
}

.focus\:p-5\/12:focus{
  padding     : 41.666667% !important;
}

.focus\:p-6\/12:focus{
  padding     : 50% !important;
}

.focus\:p-7\/12:focus{
  padding     : 58.333333% !important;
}

.focus\:p-8\/12:focus{
  padding     : 66.666667% !important;
}

.focus\:p-9\/12:focus{
  padding     : 75% !important;
}

.focus\:p-10\/12:focus{
  padding     : 83.333333% !important;
}

.focus\:p-11\/12:focus{
  padding     : 91.666667% !important;
}

.focus\:p-full:focus{
  padding     : 100% !important;
}

.focus\:py-0:focus{
  padding-top     : 0 !important;
  padding-bottom     : 0 !important;
}

.focus\:px-0:focus{
  padding-left     : 0 !important;
  padding-right     : 0 !important;
}

.focus\:py-1:focus{
  padding-top     : 0.25rem !important;
  padding-bottom     : 0.25rem !important;
}

.focus\:px-1:focus{
  padding-left     : 0.25rem !important;
  padding-right     : 0.25rem !important;
}

.focus\:py-2:focus{
  padding-top     : 0.5rem !important;
  padding-bottom     : 0.5rem !important;
}

.focus\:px-2:focus{
  padding-left     : 0.5rem !important;
  padding-right     : 0.5rem !important;
}

.focus\:py-3:focus{
  padding-top     : 0.75rem !important;
  padding-bottom     : 0.75rem !important;
}

.focus\:px-3:focus{
  padding-left     : 0.75rem !important;
  padding-right     : 0.75rem !important;
}

.focus\:py-4:focus{
  padding-top     : 1rem !important;
  padding-bottom     : 1rem !important;
}

.focus\:px-4:focus{
  padding-left     : 1rem !important;
  padding-right     : 1rem !important;
}

.focus\:py-5:focus{
  padding-top     : 1.25rem !important;
  padding-bottom     : 1.25rem !important;
}

.focus\:px-5:focus{
  padding-left     : 1.25rem !important;
  padding-right     : 1.25rem !important;
}

.focus\:py-6:focus{
  padding-top     : 1.5rem !important;
  padding-bottom     : 1.5rem !important;
}

.focus\:px-6:focus{
  padding-left     : 1.5rem !important;
  padding-right     : 1.5rem !important;
}

.focus\:py-7:focus{
  padding-top     : 1.75rem !important;
  padding-bottom     : 1.75rem !important;
}

.focus\:px-7:focus{
  padding-left     : 1.75rem !important;
  padding-right     : 1.75rem !important;
}

.focus\:py-8:focus{
  padding-top     : 2rem !important;
  padding-bottom     : 2rem !important;
}

.focus\:px-8:focus{
  padding-left     : 2rem !important;
  padding-right     : 2rem !important;
}

.focus\:py-9:focus{
  padding-top     : 2.25rem !important;
  padding-bottom     : 2.25rem !important;
}

.focus\:px-9:focus{
  padding-left     : 2.25rem !important;
  padding-right     : 2.25rem !important;
}

.focus\:py-10:focus{
  padding-top     : 2.5rem !important;
  padding-bottom     : 2.5rem !important;
}

.focus\:px-10:focus{
  padding-left     : 2.5rem !important;
  padding-right     : 2.5rem !important;
}

.focus\:py-11:focus{
  padding-top     : 2.75rem !important;
  padding-bottom     : 2.75rem !important;
}

.focus\:px-11:focus{
  padding-left     : 2.75rem !important;
  padding-right     : 2.75rem !important;
}

.focus\:py-12:focus{
  padding-top     : 3rem !important;
  padding-bottom     : 3rem !important;
}

.focus\:px-12:focus{
  padding-left     : 3rem !important;
  padding-right     : 3rem !important;
}

.focus\:py-13:focus{
  padding-top     : 3.25rem !important;
  padding-bottom     : 3.25rem !important;
}

.focus\:px-13:focus{
  padding-left     : 3.25rem !important;
  padding-right     : 3.25rem !important;
}

.focus\:py-14:focus{
  padding-top     : 3.5rem !important;
  padding-bottom     : 3.5rem !important;
}

.focus\:px-14:focus{
  padding-left     : 3.5rem !important;
  padding-right     : 3.5rem !important;
}

.focus\:py-15:focus{
  padding-top     : 3.75rem !important;
  padding-bottom     : 3.75rem !important;
}

.focus\:px-15:focus{
  padding-left     : 3.75rem !important;
  padding-right     : 3.75rem !important;
}

.focus\:py-16:focus{
  padding-top     : 4rem !important;
  padding-bottom     : 4rem !important;
}

.focus\:px-16:focus{
  padding-left     : 4rem !important;
  padding-right     : 4rem !important;
}

.focus\:py-20:focus{
  padding-top     : 5rem !important;
  padding-bottom     : 5rem !important;
}

.focus\:px-20:focus{
  padding-left     : 5rem !important;
  padding-right     : 5rem !important;
}

.focus\:py-24:focus{
  padding-top     : 6rem !important;
  padding-bottom     : 6rem !important;
}

.focus\:px-24:focus{
  padding-left     : 6rem !important;
  padding-right     : 6rem !important;
}

.focus\:py-28:focus{
  padding-top     : 7rem !important;
  padding-bottom     : 7rem !important;
}

.focus\:px-28:focus{
  padding-left     : 7rem !important;
  padding-right     : 7rem !important;
}

.focus\:py-32:focus{
  padding-top     : 8rem !important;
  padding-bottom     : 8rem !important;
}

.focus\:px-32:focus{
  padding-left     : 8rem !important;
  padding-right     : 8rem !important;
}

.focus\:py-36:focus{
  padding-top     : 9rem !important;
  padding-bottom     : 9rem !important;
}

.focus\:px-36:focus{
  padding-left     : 9rem !important;
  padding-right     : 9rem !important;
}

.focus\:py-40:focus{
  padding-top     : 10rem !important;
  padding-bottom     : 10rem !important;
}

.focus\:px-40:focus{
  padding-left     : 10rem !important;
  padding-right     : 10rem !important;
}

.focus\:py-44:focus{
  padding-top     : 11rem !important;
  padding-bottom     : 11rem !important;
}

.focus\:px-44:focus{
  padding-left     : 11rem !important;
  padding-right     : 11rem !important;
}

.focus\:py-48:focus{
  padding-top     : 12rem !important;
  padding-bottom     : 12rem !important;
}

.focus\:px-48:focus{
  padding-left     : 12rem !important;
  padding-right     : 12rem !important;
}

.focus\:py-52:focus{
  padding-top     : 13rem !important;
  padding-bottom     : 13rem !important;
}

.focus\:px-52:focus{
  padding-left     : 13rem !important;
  padding-right     : 13rem !important;
}

.focus\:py-56:focus{
  padding-top     : 14rem !important;
  padding-bottom     : 14rem !important;
}

.focus\:px-56:focus{
  padding-left     : 14rem !important;
  padding-right     : 14rem !important;
}

.focus\:py-60:focus{
  padding-top     : 15rem !important;
  padding-bottom     : 15rem !important;
}

.focus\:px-60:focus{
  padding-left     : 15rem !important;
  padding-right     : 15rem !important;
}

.focus\:py-64:focus{
  padding-top     : 16rem !important;
  padding-bottom     : 16rem !important;
}

.focus\:px-64:focus{
  padding-left     : 16rem !important;
  padding-right     : 16rem !important;
}

.focus\:py-72:focus{
  padding-top     : 18rem !important;
  padding-bottom     : 18rem !important;
}

.focus\:px-72:focus{
  padding-left     : 18rem !important;
  padding-right     : 18rem !important;
}

.focus\:py-80:focus{
  padding-top     : 20rem !important;
  padding-bottom     : 20rem !important;
}

.focus\:px-80:focus{
  padding-left     : 20rem !important;
  padding-right     : 20rem !important;
}

.focus\:py-96:focus{
  padding-top     : 24rem !important;
  padding-bottom     : 24rem !important;
}

.focus\:px-96:focus{
  padding-left     : 24rem !important;
  padding-right     : 24rem !important;
}

.focus\:py-px:focus{
  padding-top     : 1px !important;
  padding-bottom     : 1px !important;
}

.focus\:px-px:focus{
  padding-left     : 1px !important;
  padding-right     : 1px !important;
}

.focus\:py-0\.5:focus{
  padding-top     : 0.125rem !important;
  padding-bottom     : 0.125rem !important;
}

.focus\:px-0\.5:focus{
  padding-left     : 0.125rem !important;
  padding-right     : 0.125rem !important;
}

.focus\:py-1\.5:focus{
  padding-top     : 0.375rem !important;
  padding-bottom     : 0.375rem !important;
}

.focus\:px-1\.5:focus{
  padding-left     : 0.375rem !important;
  padding-right     : 0.375rem !important;
}

.focus\:py-2\.5:focus{
  padding-top     : 0.625rem !important;
  padding-bottom     : 0.625rem !important;
}

.focus\:px-2\.5:focus{
  padding-left     : 0.625rem !important;
  padding-right     : 0.625rem !important;
}

.focus\:py-3\.5:focus{
  padding-top     : 0.875rem !important;
  padding-bottom     : 0.875rem !important;
}

.focus\:px-3\.5:focus{
  padding-left     : 0.875rem !important;
  padding-right     : 0.875rem !important;
}

.focus\:py-1\/2:focus{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.focus\:px-1\/2:focus{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.focus\:py-1\/3:focus{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.focus\:px-1\/3:focus{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.focus\:py-2\/3:focus{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.focus\:px-2\/3:focus{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.focus\:py-1\/4:focus{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.focus\:px-1\/4:focus{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.focus\:py-2\/4:focus{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.focus\:px-2\/4:focus{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.focus\:py-3\/4:focus{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.focus\:px-3\/4:focus{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.focus\:py-1\/5:focus{
  padding-top     : 20% !important;
  padding-bottom     : 20% !important;
}

.focus\:px-1\/5:focus{
  padding-left     : 20% !important;
  padding-right     : 20% !important;
}

.focus\:py-2\/5:focus{
  padding-top     : 40% !important;
  padding-bottom     : 40% !important;
}

.focus\:px-2\/5:focus{
  padding-left     : 40% !important;
  padding-right     : 40% !important;
}

.focus\:py-3\/5:focus{
  padding-top     : 60% !important;
  padding-bottom     : 60% !important;
}

.focus\:px-3\/5:focus{
  padding-left     : 60% !important;
  padding-right     : 60% !important;
}

.focus\:py-4\/5:focus{
  padding-top     : 80% !important;
  padding-bottom     : 80% !important;
}

.focus\:px-4\/5:focus{
  padding-left     : 80% !important;
  padding-right     : 80% !important;
}

.focus\:py-1\/6:focus{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.focus\:px-1\/6:focus{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.focus\:py-2\/6:focus{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.focus\:px-2\/6:focus{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.focus\:py-3\/6:focus{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.focus\:px-3\/6:focus{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.focus\:py-4\/6:focus{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.focus\:px-4\/6:focus{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.focus\:py-5\/6:focus{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.focus\:px-5\/6:focus{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.focus\:py-1\/12:focus{
  padding-top     : 8.333333% !important;
  padding-bottom     : 8.333333% !important;
}

.focus\:px-1\/12:focus{
  padding-left     : 8.333333% !important;
  padding-right     : 8.333333% !important;
}

.focus\:py-2\/12:focus{
  padding-top     : 16.666667% !important;
  padding-bottom     : 16.666667% !important;
}

.focus\:px-2\/12:focus{
  padding-left     : 16.666667% !important;
  padding-right     : 16.666667% !important;
}

.focus\:py-3\/12:focus{
  padding-top     : 25% !important;
  padding-bottom     : 25% !important;
}

.focus\:px-3\/12:focus{
  padding-left     : 25% !important;
  padding-right     : 25% !important;
}

.focus\:py-4\/12:focus{
  padding-top     : 33.333333% !important;
  padding-bottom     : 33.333333% !important;
}

.focus\:px-4\/12:focus{
  padding-left     : 33.333333% !important;
  padding-right     : 33.333333% !important;
}

.focus\:py-5\/12:focus{
  padding-top     : 41.666667% !important;
  padding-bottom     : 41.666667% !important;
}

.focus\:px-5\/12:focus{
  padding-left     : 41.666667% !important;
  padding-right     : 41.666667% !important;
}

.focus\:py-6\/12:focus{
  padding-top     : 50% !important;
  padding-bottom     : 50% !important;
}

.focus\:px-6\/12:focus{
  padding-left     : 50% !important;
  padding-right     : 50% !important;
}

.focus\:py-7\/12:focus{
  padding-top     : 58.333333% !important;
  padding-bottom     : 58.333333% !important;
}

.focus\:px-7\/12:focus{
  padding-left     : 58.333333% !important;
  padding-right     : 58.333333% !important;
}

.focus\:py-8\/12:focus{
  padding-top     : 66.666667% !important;
  padding-bottom     : 66.666667% !important;
}

.focus\:px-8\/12:focus{
  padding-left     : 66.666667% !important;
  padding-right     : 66.666667% !important;
}

.focus\:py-9\/12:focus{
  padding-top     : 75% !important;
  padding-bottom     : 75% !important;
}

.focus\:px-9\/12:focus{
  padding-left     : 75% !important;
  padding-right     : 75% !important;
}

.focus\:py-10\/12:focus{
  padding-top     : 83.333333% !important;
  padding-bottom     : 83.333333% !important;
}

.focus\:px-10\/12:focus{
  padding-left     : 83.333333% !important;
  padding-right     : 83.333333% !important;
}

.focus\:py-11\/12:focus{
  padding-top     : 91.666667% !important;
  padding-bottom     : 91.666667% !important;
}

.focus\:px-11\/12:focus{
  padding-left     : 91.666667% !important;
  padding-right     : 91.666667% !important;
}

.focus\:py-full:focus{
  padding-top     : 100% !important;
  padding-bottom     : 100% !important;
}

.focus\:px-full:focus{
  padding-left     : 100% !important;
  padding-right     : 100% !important;
}

.focus\:pt-0:focus{
  padding-top     : 0 !important;
}

.focus\:pr-0:focus{
  padding-right     : 0 !important;
}

.focus\:pb-0:focus{
  padding-bottom     : 0 !important;
}

.focus\:pl-0:focus{
  padding-left     : 0 !important;
}

.focus\:pt-1:focus{
  padding-top     : 0.25rem !important;
}

.focus\:pr-1:focus{
  padding-right     : 0.25rem !important;
}

.focus\:pb-1:focus{
  padding-bottom     : 0.25rem !important;
}

.focus\:pl-1:focus{
  padding-left     : 0.25rem !important;
}

.focus\:pt-2:focus{
  padding-top     : 0.5rem !important;
}

.focus\:pr-2:focus{
  padding-right     : 0.5rem !important;
}

.focus\:pb-2:focus{
  padding-bottom     : 0.5rem !important;
}

.focus\:pl-2:focus{
  padding-left     : 0.5rem !important;
}

.focus\:pt-3:focus{
  padding-top     : 0.75rem !important;
}

.focus\:pr-3:focus{
  padding-right     : 0.75rem !important;
}

.focus\:pb-3:focus{
  padding-bottom     : 0.75rem !important;
}

.focus\:pl-3:focus{
  padding-left     : 0.75rem !important;
}

.focus\:pt-4:focus{
  padding-top     : 1rem !important;
}

.focus\:pr-4:focus{
  padding-right     : 1rem !important;
}

.focus\:pb-4:focus{
  padding-bottom     : 1rem !important;
}

.focus\:pl-4:focus{
  padding-left     : 1rem !important;
}

.focus\:pt-5:focus{
  padding-top     : 1.25rem !important;
}

.focus\:pr-5:focus{
  padding-right     : 1.25rem !important;
}

.focus\:pb-5:focus{
  padding-bottom     : 1.25rem !important;
}

.focus\:pl-5:focus{
  padding-left     : 1.25rem !important;
}

.focus\:pt-6:focus{
  padding-top     : 1.5rem !important;
}

.focus\:pr-6:focus{
  padding-right     : 1.5rem !important;
}

.focus\:pb-6:focus{
  padding-bottom     : 1.5rem !important;
}

.focus\:pl-6:focus{
  padding-left     : 1.5rem !important;
}

.focus\:pt-7:focus{
  padding-top     : 1.75rem !important;
}

.focus\:pr-7:focus{
  padding-right     : 1.75rem !important;
}

.focus\:pb-7:focus{
  padding-bottom     : 1.75rem !important;
}

.focus\:pl-7:focus{
  padding-left     : 1.75rem !important;
}

.focus\:pt-8:focus{
  padding-top     : 2rem !important;
}

.focus\:pr-8:focus{
  padding-right     : 2rem !important;
}

.focus\:pb-8:focus{
  padding-bottom     : 2rem !important;
}

.focus\:pl-8:focus{
  padding-left     : 2rem !important;
}

.focus\:pt-9:focus{
  padding-top     : 2.25rem !important;
}

.focus\:pr-9:focus{
  padding-right     : 2.25rem !important;
}

.focus\:pb-9:focus{
  padding-bottom     : 2.25rem !important;
}

.focus\:pl-9:focus{
  padding-left     : 2.25rem !important;
}

.focus\:pt-10:focus{
  padding-top     : 2.5rem !important;
}

.focus\:pr-10:focus{
  padding-right     : 2.5rem !important;
}

.focus\:pb-10:focus{
  padding-bottom     : 2.5rem !important;
}

.focus\:pl-10:focus{
  padding-left     : 2.5rem !important;
}

.focus\:pt-11:focus{
  padding-top     : 2.75rem !important;
}

.focus\:pr-11:focus{
  padding-right     : 2.75rem !important;
}

.focus\:pb-11:focus{
  padding-bottom     : 2.75rem !important;
}

.focus\:pl-11:focus{
  padding-left     : 2.75rem !important;
}

.focus\:pt-12:focus{
  padding-top     : 3rem !important;
}

.focus\:pr-12:focus{
  padding-right     : 3rem !important;
}

.focus\:pb-12:focus{
  padding-bottom     : 3rem !important;
}

.focus\:pl-12:focus{
  padding-left     : 3rem !important;
}

.focus\:pt-13:focus{
  padding-top     : 3.25rem !important;
}

.focus\:pr-13:focus{
  padding-right     : 3.25rem !important;
}

.focus\:pb-13:focus{
  padding-bottom     : 3.25rem !important;
}

.focus\:pl-13:focus{
  padding-left     : 3.25rem !important;
}

.focus\:pt-14:focus{
  padding-top     : 3.5rem !important;
}

.focus\:pr-14:focus{
  padding-right     : 3.5rem !important;
}

.focus\:pb-14:focus{
  padding-bottom     : 3.5rem !important;
}

.focus\:pl-14:focus{
  padding-left     : 3.5rem !important;
}

.focus\:pt-15:focus{
  padding-top     : 3.75rem !important;
}

.focus\:pr-15:focus{
  padding-right     : 3.75rem !important;
}

.focus\:pb-15:focus{
  padding-bottom     : 3.75rem !important;
}

.focus\:pl-15:focus{
  padding-left     : 3.75rem !important;
}

.focus\:pt-16:focus{
  padding-top     : 4rem !important;
}

.focus\:pr-16:focus{
  padding-right     : 4rem !important;
}

.focus\:pb-16:focus{
  padding-bottom     : 4rem !important;
}

.focus\:pl-16:focus{
  padding-left     : 4rem !important;
}

.focus\:pt-20:focus{
  padding-top     : 5rem !important;
}

.focus\:pr-20:focus{
  padding-right     : 5rem !important;
}

.focus\:pb-20:focus{
  padding-bottom     : 5rem !important;
}

.focus\:pl-20:focus{
  padding-left     : 5rem !important;
}

.focus\:pt-24:focus{
  padding-top     : 6rem !important;
}

.focus\:pr-24:focus{
  padding-right     : 6rem !important;
}

.focus\:pb-24:focus{
  padding-bottom     : 6rem !important;
}

.focus\:pl-24:focus{
  padding-left     : 6rem !important;
}

.focus\:pt-28:focus{
  padding-top     : 7rem !important;
}

.focus\:pr-28:focus{
  padding-right     : 7rem !important;
}

.focus\:pb-28:focus{
  padding-bottom     : 7rem !important;
}

.focus\:pl-28:focus{
  padding-left     : 7rem !important;
}

.focus\:pt-32:focus{
  padding-top     : 8rem !important;
}

.focus\:pr-32:focus{
  padding-right     : 8rem !important;
}

.focus\:pb-32:focus{
  padding-bottom     : 8rem !important;
}

.focus\:pl-32:focus{
  padding-left     : 8rem !important;
}

.focus\:pt-36:focus{
  padding-top     : 9rem !important;
}

.focus\:pr-36:focus{
  padding-right     : 9rem !important;
}

.focus\:pb-36:focus{
  padding-bottom     : 9rem !important;
}

.focus\:pl-36:focus{
  padding-left     : 9rem !important;
}

.focus\:pt-40:focus{
  padding-top     : 10rem !important;
}

.focus\:pr-40:focus{
  padding-right     : 10rem !important;
}

.focus\:pb-40:focus{
  padding-bottom     : 10rem !important;
}

.focus\:pl-40:focus{
  padding-left     : 10rem !important;
}

.focus\:pt-44:focus{
  padding-top     : 11rem !important;
}

.focus\:pr-44:focus{
  padding-right     : 11rem !important;
}

.focus\:pb-44:focus{
  padding-bottom     : 11rem !important;
}

.focus\:pl-44:focus{
  padding-left     : 11rem !important;
}

.focus\:pt-48:focus{
  padding-top     : 12rem !important;
}

.focus\:pr-48:focus{
  padding-right     : 12rem !important;
}

.focus\:pb-48:focus{
  padding-bottom     : 12rem !important;
}

.focus\:pl-48:focus{
  padding-left     : 12rem !important;
}

.focus\:pt-52:focus{
  padding-top     : 13rem !important;
}

.focus\:pr-52:focus{
  padding-right     : 13rem !important;
}

.focus\:pb-52:focus{
  padding-bottom     : 13rem !important;
}

.focus\:pl-52:focus{
  padding-left     : 13rem !important;
}

.focus\:pt-56:focus{
  padding-top     : 14rem !important;
}

.focus\:pr-56:focus{
  padding-right     : 14rem !important;
}

.focus\:pb-56:focus{
  padding-bottom     : 14rem !important;
}

.focus\:pl-56:focus{
  padding-left     : 14rem !important;
}

.focus\:pt-60:focus{
  padding-top     : 15rem !important;
}

.focus\:pr-60:focus{
  padding-right     : 15rem !important;
}

.focus\:pb-60:focus{
  padding-bottom     : 15rem !important;
}

.focus\:pl-60:focus{
  padding-left     : 15rem !important;
}

.focus\:pt-64:focus{
  padding-top     : 16rem !important;
}

.focus\:pr-64:focus{
  padding-right     : 16rem !important;
}

.focus\:pb-64:focus{
  padding-bottom     : 16rem !important;
}

.focus\:pl-64:focus{
  padding-left     : 16rem !important;
}

.focus\:pt-72:focus{
  padding-top     : 18rem !important;
}

.focus\:pr-72:focus{
  padding-right     : 18rem !important;
}

.focus\:pb-72:focus{
  padding-bottom     : 18rem !important;
}

.focus\:pl-72:focus{
  padding-left     : 18rem !important;
}

.focus\:pt-80:focus{
  padding-top     : 20rem !important;
}

.focus\:pr-80:focus{
  padding-right     : 20rem !important;
}

.focus\:pb-80:focus{
  padding-bottom     : 20rem !important;
}

.focus\:pl-80:focus{
  padding-left     : 20rem !important;
}

.focus\:pt-96:focus{
  padding-top     : 24rem !important;
}

.focus\:pr-96:focus{
  padding-right     : 24rem !important;
}

.focus\:pb-96:focus{
  padding-bottom     : 24rem !important;
}

.focus\:pl-96:focus{
  padding-left     : 24rem !important;
}

.focus\:pt-px:focus{
  padding-top     : 1px !important;
}

.focus\:pr-px:focus{
  padding-right     : 1px !important;
}

.focus\:pb-px:focus{
  padding-bottom     : 1px !important;
}

.focus\:pl-px:focus{
  padding-left     : 1px !important;
}

.focus\:pt-0\.5:focus{
  padding-top     : 0.125rem !important;
}

.focus\:pr-0\.5:focus{
  padding-right     : 0.125rem !important;
}

.focus\:pb-0\.5:focus{
  padding-bottom     : 0.125rem !important;
}

.focus\:pl-0\.5:focus{
  padding-left     : 0.125rem !important;
}

.focus\:pt-1\.5:focus{
  padding-top     : 0.375rem !important;
}

.focus\:pr-1\.5:focus{
  padding-right     : 0.375rem !important;
}

.focus\:pb-1\.5:focus{
  padding-bottom     : 0.375rem !important;
}

.focus\:pl-1\.5:focus{
  padding-left     : 0.375rem !important;
}

.focus\:pt-2\.5:focus{
  padding-top     : 0.625rem !important;
}

.focus\:pr-2\.5:focus{
  padding-right     : 0.625rem !important;
}

.focus\:pb-2\.5:focus{
  padding-bottom     : 0.625rem !important;
}

.focus\:pl-2\.5:focus{
  padding-left     : 0.625rem !important;
}

.focus\:pt-3\.5:focus{
  padding-top     : 0.875rem !important;
}

.focus\:pr-3\.5:focus{
  padding-right     : 0.875rem !important;
}

.focus\:pb-3\.5:focus{
  padding-bottom     : 0.875rem !important;
}

.focus\:pl-3\.5:focus{
  padding-left     : 0.875rem !important;
}

.focus\:pt-1\/2:focus{
  padding-top     : 50% !important;
}

.focus\:pr-1\/2:focus{
  padding-right     : 50% !important;
}

.focus\:pb-1\/2:focus{
  padding-bottom     : 50% !important;
}

.focus\:pl-1\/2:focus{
  padding-left     : 50% !important;
}

.focus\:pt-1\/3:focus{
  padding-top     : 33.333333% !important;
}

.focus\:pr-1\/3:focus{
  padding-right     : 33.333333% !important;
}

.focus\:pb-1\/3:focus{
  padding-bottom     : 33.333333% !important;
}

.focus\:pl-1\/3:focus{
  padding-left     : 33.333333% !important;
}

.focus\:pt-2\/3:focus{
  padding-top     : 66.666667% !important;
}

.focus\:pr-2\/3:focus{
  padding-right     : 66.666667% !important;
}

.focus\:pb-2\/3:focus{
  padding-bottom     : 66.666667% !important;
}

.focus\:pl-2\/3:focus{
  padding-left     : 66.666667% !important;
}

.focus\:pt-1\/4:focus{
  padding-top     : 25% !important;
}

.focus\:pr-1\/4:focus{
  padding-right     : 25% !important;
}

.focus\:pb-1\/4:focus{
  padding-bottom     : 25% !important;
}

.focus\:pl-1\/4:focus{
  padding-left     : 25% !important;
}

.focus\:pt-2\/4:focus{
  padding-top     : 50% !important;
}

.focus\:pr-2\/4:focus{
  padding-right     : 50% !important;
}

.focus\:pb-2\/4:focus{
  padding-bottom     : 50% !important;
}

.focus\:pl-2\/4:focus{
  padding-left     : 50% !important;
}

.focus\:pt-3\/4:focus{
  padding-top     : 75% !important;
}

.focus\:pr-3\/4:focus{
  padding-right     : 75% !important;
}

.focus\:pb-3\/4:focus{
  padding-bottom     : 75% !important;
}

.focus\:pl-3\/4:focus{
  padding-left     : 75% !important;
}

.focus\:pt-1\/5:focus{
  padding-top     : 20% !important;
}

.focus\:pr-1\/5:focus{
  padding-right     : 20% !important;
}

.focus\:pb-1\/5:focus{
  padding-bottom     : 20% !important;
}

.focus\:pl-1\/5:focus{
  padding-left     : 20% !important;
}

.focus\:pt-2\/5:focus{
  padding-top     : 40% !important;
}

.focus\:pr-2\/5:focus{
  padding-right     : 40% !important;
}

.focus\:pb-2\/5:focus{
  padding-bottom     : 40% !important;
}

.focus\:pl-2\/5:focus{
  padding-left     : 40% !important;
}

.focus\:pt-3\/5:focus{
  padding-top     : 60% !important;
}

.focus\:pr-3\/5:focus{
  padding-right     : 60% !important;
}

.focus\:pb-3\/5:focus{
  padding-bottom     : 60% !important;
}

.focus\:pl-3\/5:focus{
  padding-left     : 60% !important;
}

.focus\:pt-4\/5:focus{
  padding-top     : 80% !important;
}

.focus\:pr-4\/5:focus{
  padding-right     : 80% !important;
}

.focus\:pb-4\/5:focus{
  padding-bottom     : 80% !important;
}

.focus\:pl-4\/5:focus{
  padding-left     : 80% !important;
}

.focus\:pt-1\/6:focus{
  padding-top     : 16.666667% !important;
}

.focus\:pr-1\/6:focus{
  padding-right     : 16.666667% !important;
}

.focus\:pb-1\/6:focus{
  padding-bottom     : 16.666667% !important;
}

.focus\:pl-1\/6:focus{
  padding-left     : 16.666667% !important;
}

.focus\:pt-2\/6:focus{
  padding-top     : 33.333333% !important;
}

.focus\:pr-2\/6:focus{
  padding-right     : 33.333333% !important;
}

.focus\:pb-2\/6:focus{
  padding-bottom     : 33.333333% !important;
}

.focus\:pl-2\/6:focus{
  padding-left     : 33.333333% !important;
}

.focus\:pt-3\/6:focus{
  padding-top     : 50% !important;
}

.focus\:pr-3\/6:focus{
  padding-right     : 50% !important;
}

.focus\:pb-3\/6:focus{
  padding-bottom     : 50% !important;
}

.focus\:pl-3\/6:focus{
  padding-left     : 50% !important;
}

.focus\:pt-4\/6:focus{
  padding-top     : 66.666667% !important;
}

.focus\:pr-4\/6:focus{
  padding-right     : 66.666667% !important;
}

.focus\:pb-4\/6:focus{
  padding-bottom     : 66.666667% !important;
}

.focus\:pl-4\/6:focus{
  padding-left     : 66.666667% !important;
}

.focus\:pt-5\/6:focus{
  padding-top     : 83.333333% !important;
}

.focus\:pr-5\/6:focus{
  padding-right     : 83.333333% !important;
}

.focus\:pb-5\/6:focus{
  padding-bottom     : 83.333333% !important;
}

.focus\:pl-5\/6:focus{
  padding-left     : 83.333333% !important;
}

.focus\:pt-1\/12:focus{
  padding-top     : 8.333333% !important;
}

.focus\:pr-1\/12:focus{
  padding-right     : 8.333333% !important;
}

.focus\:pb-1\/12:focus{
  padding-bottom     : 8.333333% !important;
}

.focus\:pl-1\/12:focus{
  padding-left     : 8.333333% !important;
}

.focus\:pt-2\/12:focus{
  padding-top     : 16.666667% !important;
}

.focus\:pr-2\/12:focus{
  padding-right     : 16.666667% !important;
}

.focus\:pb-2\/12:focus{
  padding-bottom     : 16.666667% !important;
}

.focus\:pl-2\/12:focus{
  padding-left     : 16.666667% !important;
}

.focus\:pt-3\/12:focus{
  padding-top     : 25% !important;
}

.focus\:pr-3\/12:focus{
  padding-right     : 25% !important;
}

.focus\:pb-3\/12:focus{
  padding-bottom     : 25% !important;
}

.focus\:pl-3\/12:focus{
  padding-left     : 25% !important;
}

.focus\:pt-4\/12:focus{
  padding-top     : 33.333333% !important;
}

.focus\:pr-4\/12:focus{
  padding-right     : 33.333333% !important;
}

.focus\:pb-4\/12:focus{
  padding-bottom     : 33.333333% !important;
}

.focus\:pl-4\/12:focus{
  padding-left     : 33.333333% !important;
}

.focus\:pt-5\/12:focus{
  padding-top     : 41.666667% !important;
}

.focus\:pr-5\/12:focus{
  padding-right     : 41.666667% !important;
}

.focus\:pb-5\/12:focus{
  padding-bottom     : 41.666667% !important;
}

.focus\:pl-5\/12:focus{
  padding-left     : 41.666667% !important;
}

.focus\:pt-6\/12:focus{
  padding-top     : 50% !important;
}

.focus\:pr-6\/12:focus{
  padding-right     : 50% !important;
}

.focus\:pb-6\/12:focus{
  padding-bottom     : 50% !important;
}

.focus\:pl-6\/12:focus{
  padding-left     : 50% !important;
}

.focus\:pt-7\/12:focus{
  padding-top     : 58.333333% !important;
}

.focus\:pr-7\/12:focus{
  padding-right     : 58.333333% !important;
}

.focus\:pb-7\/12:focus{
  padding-bottom     : 58.333333% !important;
}

.focus\:pl-7\/12:focus{
  padding-left     : 58.333333% !important;
}

.focus\:pt-8\/12:focus{
  padding-top     : 66.666667% !important;
}

.focus\:pr-8\/12:focus{
  padding-right     : 66.666667% !important;
}

.focus\:pb-8\/12:focus{
  padding-bottom     : 66.666667% !important;
}

.focus\:pl-8\/12:focus{
  padding-left     : 66.666667% !important;
}

.focus\:pt-9\/12:focus{
  padding-top     : 75% !important;
}

.focus\:pr-9\/12:focus{
  padding-right     : 75% !important;
}

.focus\:pb-9\/12:focus{
  padding-bottom     : 75% !important;
}

.focus\:pl-9\/12:focus{
  padding-left     : 75% !important;
}

.focus\:pt-10\/12:focus{
  padding-top     : 83.333333% !important;
}

.focus\:pr-10\/12:focus{
  padding-right     : 83.333333% !important;
}

.focus\:pb-10\/12:focus{
  padding-bottom     : 83.333333% !important;
}

.focus\:pl-10\/12:focus{
  padding-left     : 83.333333% !important;
}

.focus\:pt-11\/12:focus{
  padding-top     : 91.666667% !important;
}

.focus\:pr-11\/12:focus{
  padding-right     : 91.666667% !important;
}

.focus\:pb-11\/12:focus{
  padding-bottom     : 91.666667% !important;
}

.focus\:pl-11\/12:focus{
  padding-left     : 91.666667% !important;
}

.focus\:pt-full:focus{
  padding-top     : 100% !important;
}

.focus\:pr-full:focus{
  padding-right     : 100% !important;
}

.focus\:pb-full:focus{
  padding-bottom     : 100% !important;
}

.focus\:pl-full:focus{
  padding-left     : 100% !important;
}

.placeholder-transparent::-moz-placeholder{
  color     : transparent !important;
}

.placeholder-transparent:-ms-input-placeholder{
  color     : transparent !important;
}

.placeholder-transparent::-ms-input-placeholder{
  color     : transparent !important;
}

.placeholder-transparent::placeholder{
  color     : transparent !important;
}

.placeholder-white::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.placeholder-white:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.placeholder-white::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.placeholder-white::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.placeholder-black::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.placeholder-black:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.placeholder-black::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.placeholder-black::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.placeholder-gray-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.placeholder-gray-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.placeholder-gray-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.placeholder-gray-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.placeholder-gray-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.placeholder-gray-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.placeholder-gray-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.placeholder-gray-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.placeholder-gray-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.placeholder-gray-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.placeholder-gray-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.placeholder-gray-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.placeholder-gray-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.placeholder-gray-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.placeholder-gray-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.placeholder-gray-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.placeholder-gray-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.placeholder-gray-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.placeholder-gray-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.placeholder-gray-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.placeholder-gray-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.placeholder-gray-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.placeholder-gray-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.placeholder-gray-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.placeholder-gray-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.placeholder-gray-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.placeholder-gray-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.placeholder-gray-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.placeholder-gray-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.placeholder-gray-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.placeholder-gray-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.placeholder-gray-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.placeholder-gray-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.placeholder-gray-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.placeholder-gray-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.placeholder-gray-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.placeholder-gray-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.placeholder-gray-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.placeholder-gray-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.placeholder-gray-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.placeholder-cool-gray-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.placeholder-red-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.placeholder-red-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.placeholder-red-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.placeholder-red-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.placeholder-red-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.placeholder-red-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.placeholder-red-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.placeholder-red-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.placeholder-red-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.placeholder-red-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.placeholder-red-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.placeholder-red-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.placeholder-red-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.placeholder-red-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.placeholder-red-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.placeholder-red-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.placeholder-red-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.placeholder-red-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.placeholder-red-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.placeholder-red-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.placeholder-red-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.placeholder-red-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.placeholder-red-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.placeholder-red-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.placeholder-red-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.placeholder-red-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.placeholder-red-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.placeholder-red-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.placeholder-red-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.placeholder-red-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.placeholder-red-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.placeholder-red-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.placeholder-red-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.placeholder-red-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.placeholder-red-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.placeholder-red-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.placeholder-red-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.placeholder-red-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.placeholder-red-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.placeholder-red-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.placeholder-orange-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.placeholder-orange-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.placeholder-orange-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.placeholder-orange-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.placeholder-orange-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.placeholder-orange-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.placeholder-orange-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.placeholder-orange-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.placeholder-orange-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.placeholder-orange-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.placeholder-orange-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.placeholder-orange-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.placeholder-orange-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.placeholder-orange-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.placeholder-orange-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.placeholder-orange-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.placeholder-orange-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.placeholder-orange-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.placeholder-orange-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.placeholder-orange-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.placeholder-orange-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.placeholder-orange-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.placeholder-orange-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.placeholder-orange-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.placeholder-orange-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.placeholder-orange-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.placeholder-orange-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.placeholder-orange-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.placeholder-orange-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.placeholder-orange-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.placeholder-orange-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.placeholder-orange-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.placeholder-orange-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.placeholder-orange-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.placeholder-yellow-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.placeholder-green-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.placeholder-green-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.placeholder-green-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.placeholder-green-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.placeholder-green-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.placeholder-green-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.placeholder-green-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.placeholder-green-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.placeholder-green-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.placeholder-green-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.placeholder-green-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.placeholder-green-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.placeholder-green-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.placeholder-green-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.placeholder-green-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.placeholder-green-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.placeholder-green-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.placeholder-green-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.placeholder-green-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.placeholder-green-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.placeholder-green-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.placeholder-green-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.placeholder-green-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.placeholder-green-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.placeholder-green-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.placeholder-green-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.placeholder-green-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.placeholder-green-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.placeholder-green-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.placeholder-green-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.placeholder-green-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.placeholder-green-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.placeholder-green-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.placeholder-green-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.placeholder-green-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.placeholder-green-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.placeholder-green-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.placeholder-green-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.placeholder-green-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.placeholder-green-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.placeholder-teal-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.placeholder-teal-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.placeholder-teal-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.placeholder-teal-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.placeholder-teal-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.placeholder-teal-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.placeholder-teal-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.placeholder-teal-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.placeholder-teal-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.placeholder-teal-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.placeholder-teal-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.placeholder-teal-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.placeholder-teal-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.placeholder-teal-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.placeholder-teal-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.placeholder-teal-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.placeholder-teal-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.placeholder-teal-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.placeholder-teal-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.placeholder-teal-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.placeholder-teal-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.placeholder-teal-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.placeholder-teal-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.placeholder-teal-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.placeholder-teal-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.placeholder-teal-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.placeholder-teal-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.placeholder-teal-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.placeholder-teal-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.placeholder-teal-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.placeholder-teal-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.placeholder-teal-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.placeholder-teal-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.placeholder-teal-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.placeholder-teal-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.placeholder-teal-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.placeholder-teal-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.placeholder-teal-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.placeholder-teal-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.placeholder-teal-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.placeholder-blue-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-blue-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-blue-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-blue-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-blue-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.placeholder-blue-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.placeholder-blue-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.placeholder-blue-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.placeholder-blue-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.placeholder-blue-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.placeholder-blue-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.placeholder-blue-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.placeholder-blue-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.placeholder-blue-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.placeholder-blue-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.placeholder-blue-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.placeholder-blue-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.placeholder-blue-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.placeholder-blue-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.placeholder-blue-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.placeholder-blue-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.placeholder-blue-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.placeholder-blue-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.placeholder-blue-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.placeholder-blue-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.placeholder-blue-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.placeholder-blue-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.placeholder-blue-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.placeholder-blue-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.placeholder-blue-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.placeholder-blue-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.placeholder-blue-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.placeholder-blue-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.placeholder-indigo-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.placeholder-purple-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-purple-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-purple-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-purple-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.placeholder-purple-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.placeholder-purple-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.placeholder-purple-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.placeholder-purple-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.placeholder-purple-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.placeholder-purple-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.placeholder-purple-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.placeholder-purple-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.placeholder-purple-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.placeholder-purple-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.placeholder-purple-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.placeholder-purple-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.placeholder-purple-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.placeholder-purple-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.placeholder-purple-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.placeholder-purple-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.placeholder-purple-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.placeholder-purple-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.placeholder-purple-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.placeholder-purple-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.placeholder-purple-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.placeholder-purple-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.placeholder-purple-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.placeholder-purple-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.placeholder-purple-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.placeholder-purple-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.placeholder-purple-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.placeholder-purple-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.placeholder-purple-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.placeholder-pink-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.placeholder-pink-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.placeholder-pink-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.placeholder-pink-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.placeholder-pink-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.placeholder-pink-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.placeholder-pink-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.placeholder-pink-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.placeholder-pink-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.placeholder-pink-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.placeholder-pink-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.placeholder-pink-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.placeholder-pink-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.placeholder-pink-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.placeholder-pink-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.placeholder-pink-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.placeholder-pink-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.placeholder-pink-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.placeholder-pink-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.placeholder-pink-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.placeholder-pink-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.placeholder-pink-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.placeholder-pink-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.placeholder-pink-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.placeholder-pink-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.placeholder-pink-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.placeholder-pink-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.placeholder-pink-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.placeholder-pink-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.placeholder-pink-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.placeholder-pink-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.placeholder-pink-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.placeholder-pink-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.placeholder-pink-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.placeholder-pink-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.placeholder-pink-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.placeholder-pink-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.placeholder-pink-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.placeholder-pink-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.placeholder-pink-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.placeholder-blue-brand::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.placeholder-blue-brand:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.placeholder-blue-brand::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.placeholder-blue-brand::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-transparent::-moz-placeholder{
  color     : transparent !important;
}

.group:hover .group-hover\:placeholder-transparent:-ms-input-placeholder{
  color     : transparent !important;
}

.group:hover .group-hover\:placeholder-transparent::-ms-input-placeholder{
  color     : transparent !important;
}

.group:hover .group-hover\:placeholder-transparent::placeholder{
  color     : transparent !important;
}

.group:hover .group-hover\:placeholder-white::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-white:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-white::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-white::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-black::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-black:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-black::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-black::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-gray-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-cool-gray-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-red-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-orange-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-yellow-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-green-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-teal-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-indigo-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-purple-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-50::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-50:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-50::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-50::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-100::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-200::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-200:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-200::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-200::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-300::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-300:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-300::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-300::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-400::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-400:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-400::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-400::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-500::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-500:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-500::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-500::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-600::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-600:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-600::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-600::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-700::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-700:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-700::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-700::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-800::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-800:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-800::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-800::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-900::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-900:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-900::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-pink-900::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-brand::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-brand:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-brand::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.group:hover .group-hover\:placeholder-blue-brand::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-transparent:hover::-moz-placeholder{
  color     : transparent !important;
}

.hover\:placeholder-transparent:hover:-ms-input-placeholder{
  color     : transparent !important;
}

.hover\:placeholder-transparent:hover::-ms-input-placeholder{
  color     : transparent !important;
}

.hover\:placeholder-transparent:hover::placeholder{
  color     : transparent !important;
}

.hover\:placeholder-white:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-white:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-white:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-white:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-black:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-black:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-black:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-black:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-gray-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-cool-gray-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-red-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-orange-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-yellow-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-green-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-teal-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-indigo-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-purple-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-50:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-50:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-100:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-200:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-200:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-200:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-200:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-300:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-300:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-300:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-300:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-400:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-400:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-400:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-400:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-500:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-500:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-500:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-500:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-600:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-600:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-600:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-600:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-700:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-700:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-700:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-700:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-800:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-800:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-800:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-800:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-900:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-900:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-900:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-pink-900:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-brand:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-brand:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-brand:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.hover\:placeholder-blue-brand:hover::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-transparent:focus::-moz-placeholder{
  color     : transparent !important;
}

.focus\:placeholder-transparent:focus:-ms-input-placeholder{
  color     : transparent !important;
}

.focus\:placeholder-transparent:focus::-ms-input-placeholder{
  color     : transparent !important;
}

.focus\:placeholder-transparent:focus::placeholder{
  color     : transparent !important;
}

.focus\:placeholder-white:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-white:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-white:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-white:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-black:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-black:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-black:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-black:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-gray-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-cool-gray-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-red-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-orange-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-yellow-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-green-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-teal-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-indigo-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-purple-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-50:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-50:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-50:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-50:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-100:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-100:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-100:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-100:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-200:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-200:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-200:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-200:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-300:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-300:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-300:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-300:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-400:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-400:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-400:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-400:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-500:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-500:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-500:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-500:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-600:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-600:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-600:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-600:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-700:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-700:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-700:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-700:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-800:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-800:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-800:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-800:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-900:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-900:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-900:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-pink-900:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-brand:focus::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-brand:focus:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-brand:focus::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
}

.focus\:placeholder-blue-brand:focus::placeholder{
  --placeholder-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--placeholder-opacity)) !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-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-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-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-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;
}

.group:hover .group-hover\:placeholder-opacity-0::-moz-placeholder{
  --placeholder-opacity     : 0 !important;
}

.group:hover .group-hover\:placeholder-opacity-0:-ms-input-placeholder{
  --placeholder-opacity     : 0 !important;
}

.group:hover .group-hover\:placeholder-opacity-0::-ms-input-placeholder{
  --placeholder-opacity     : 0 !important;
}

.group:hover .group-hover\:placeholder-opacity-0::placeholder{
  --placeholder-opacity     : 0 !important;
}

.group:hover .group-hover\:placeholder-opacity-25::-moz-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.group:hover .group-hover\:placeholder-opacity-25:-ms-input-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.group:hover .group-hover\:placeholder-opacity-25::-ms-input-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.group:hover .group-hover\:placeholder-opacity-25::placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.group:hover .group-hover\:placeholder-opacity-50::-moz-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.group:hover .group-hover\:placeholder-opacity-50:-ms-input-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.group:hover .group-hover\:placeholder-opacity-50::-ms-input-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.group:hover .group-hover\:placeholder-opacity-50::placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.group:hover .group-hover\:placeholder-opacity-75::-moz-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.group:hover .group-hover\:placeholder-opacity-75:-ms-input-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.group:hover .group-hover\:placeholder-opacity-75::-ms-input-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.group:hover .group-hover\:placeholder-opacity-75::placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.group:hover .group-hover\:placeholder-opacity-100::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
}

.group:hover .group-hover\:placeholder-opacity-100:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
}

.group:hover .group-hover\:placeholder-opacity-100::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
}

.group:hover .group-hover\:placeholder-opacity-100::placeholder{
  --placeholder-opacity     : 1 !important;
}

.hover\:placeholder-opacity-0:hover::-moz-placeholder{
  --placeholder-opacity     : 0 !important;
}

.hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
  --placeholder-opacity     : 0 !important;
}

.hover\:placeholder-opacity-0:hover::-ms-input-placeholder{
  --placeholder-opacity     : 0 !important;
}

.hover\:placeholder-opacity-0:hover::placeholder{
  --placeholder-opacity     : 0 !important;
}

.hover\:placeholder-opacity-25:hover::-moz-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.hover\:placeholder-opacity-25:hover::-ms-input-placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.hover\:placeholder-opacity-25:hover::placeholder{
  --placeholder-opacity     : 0.25 !important;
}

.hover\:placeholder-opacity-50:hover::-moz-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.hover\:placeholder-opacity-50:hover::-ms-input-placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.hover\:placeholder-opacity-50:hover::placeholder{
  --placeholder-opacity     : 0.5 !important;
}

.hover\:placeholder-opacity-75:hover::-moz-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.hover\:placeholder-opacity-75:hover::-ms-input-placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.hover\:placeholder-opacity-75:hover::placeholder{
  --placeholder-opacity     : 0.75 !important;
}

.hover\:placeholder-opacity-100:hover::-moz-placeholder{
  --placeholder-opacity     : 1 !important;
}

.hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
}

.hover\:placeholder-opacity-100:hover::-ms-input-placeholder{
  --placeholder-opacity     : 1 !important;
}

.hover\:placeholder-opacity-100:hover::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-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-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-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-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;
}

.group:hover .group-hover\:pointer-events-none{
  pointer-events     : none !important;
}

.group:hover .group-hover\:pointer-events-auto{
  pointer-events     : auto !important;
}

.hover\:pointer-events-none:hover{
  pointer-events     : none !important;
}

.hover\:pointer-events-auto:hover{
  pointer-events     : auto !important;
}

.focus\:pointer-events-none:focus{
  pointer-events     : none !important;
}

.focus\:pointer-events-auto:focus{
  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;
}

.group:hover .group-hover\:static{
  position     : static !important;
}

.group:hover .group-hover\:fixed{
  position     : fixed !important;
}

.group:hover .group-hover\:absolute{
  position     : absolute !important;
}

.group:hover .group-hover\:relative{
  position     : relative !important;
}

.group:hover .group-hover\:sticky{
  position     : -webkit-sticky !important;
  position     : sticky !important;
}

.hover\:static:hover{
  position     : static !important;
}

.hover\:fixed:hover{
  position     : fixed !important;
}

.hover\:absolute:hover{
  position     : absolute !important;
}

.hover\:relative:hover{
  position     : relative !important;
}

.hover\:sticky:hover{
  position     : -webkit-sticky !important;
  position     : sticky !important;
}

.focus\:static:focus{
  position     : static !important;
}

.focus\:fixed:focus{
  position     : fixed !important;
}

.focus\:absolute:focus{
  position     : absolute !important;
}

.focus\:relative:focus{
  position     : relative !important;
}

.focus\:sticky:focus{
  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-20{
  top     : 5rem !important;
  right     : 5rem !important;
  bottom     : 5rem !important;
  left     : 5rem !important;
}

.inset-24{
  top     : 6rem !important;
  right     : 6rem !important;
  bottom     : 6rem !important;
  left     : 6rem !important;
}

.inset-28{
  top     : 7rem !important;
  right     : 7rem !important;
  bottom     : 7rem !important;
  left     : 7rem !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-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-96{
  top     : 24rem !important;
  right     : 24rem !important;
  bottom     : 24rem !important;
  left     : 24rem !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-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-20{
  top     : 5rem !important;
  bottom     : 5rem !important;
}

.inset-x-20{
  right     : 5rem !important;
  left     : 5rem !important;
}

.inset-y-24{
  top     : 6rem !important;
  bottom     : 6rem !important;
}

.inset-x-24{
  right     : 6rem !important;
  left     : 6rem !important;
}

.inset-y-28{
  top     : 7rem !important;
  bottom     : 7rem !important;
}

.inset-x-28{
  right     : 7rem !important;
  left     : 7rem !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-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-96{
  top     : 24rem !important;
  bottom     : 24rem !important;
}

.inset-x-96{
  right     : 24rem !important;
  left     : 24rem !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;
}

.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-20{
  top     : 5rem !important;
}

.right-20{
  right     : 5rem !important;
}

.bottom-20{
  bottom     : 5rem !important;
}

.left-20{
  left     : 5rem !important;
}

.top-24{
  top     : 6rem !important;
}

.right-24{
  right     : 6rem !important;
}

.bottom-24{
  bottom     : 6rem !important;
}

.left-24{
  left     : 6rem !important;
}

.top-28{
  top     : 7rem !important;
}

.right-28{
  right     : 7rem !important;
}

.bottom-28{
  bottom     : 7rem !important;
}

.left-28{
  left     : 7rem !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-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-96{
  top     : 24rem !important;
}

.right-96{
  right     : 24rem !important;
}

.bottom-96{
  bottom     : 24rem !important;
}

.left-96{
  left     : 24rem !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;
}

.group:hover .group-hover\:inset-0{
  top     : 0 !important;
  right     : 0 !important;
  bottom     : 0 !important;
  left     : 0 !important;
}

.group:hover .group-hover\:inset-1{
  top     : 0.25rem !important;
  right     : 0.25rem !important;
  bottom     : 0.25rem !important;
  left     : 0.25rem !important;
}

.group:hover .group-hover\:inset-2{
  top     : 0.5rem !important;
  right     : 0.5rem !important;
  bottom     : 0.5rem !important;
  left     : 0.5rem !important;
}

.group:hover .group-hover\:inset-3{
  top     : 0.75rem !important;
  right     : 0.75rem !important;
  bottom     : 0.75rem !important;
  left     : 0.75rem !important;
}

.group:hover .group-hover\:inset-4{
  top     : 1rem !important;
  right     : 1rem !important;
  bottom     : 1rem !important;
  left     : 1rem !important;
}

.group:hover .group-hover\:inset-5{
  top     : 1.25rem !important;
  right     : 1.25rem !important;
  bottom     : 1.25rem !important;
  left     : 1.25rem !important;
}

.group:hover .group-hover\:inset-6{
  top     : 1.5rem !important;
  right     : 1.5rem !important;
  bottom     : 1.5rem !important;
  left     : 1.5rem !important;
}

.group:hover .group-hover\:inset-7{
  top     : 1.75rem !important;
  right     : 1.75rem !important;
  bottom     : 1.75rem !important;
  left     : 1.75rem !important;
}

.group:hover .group-hover\:inset-8{
  top     : 2rem !important;
  right     : 2rem !important;
  bottom     : 2rem !important;
  left     : 2rem !important;
}

.group:hover .group-hover\:inset-9{
  top     : 2.25rem !important;
  right     : 2.25rem !important;
  bottom     : 2.25rem !important;
  left     : 2.25rem !important;
}

.group:hover .group-hover\:inset-10{
  top     : 2.5rem !important;
  right     : 2.5rem !important;
  bottom     : 2.5rem !important;
  left     : 2.5rem !important;
}

.group:hover .group-hover\:inset-11{
  top     : 2.75rem !important;
  right     : 2.75rem !important;
  bottom     : 2.75rem !important;
  left     : 2.75rem !important;
}

.group:hover .group-hover\:inset-12{
  top     : 3rem !important;
  right     : 3rem !important;
  bottom     : 3rem !important;
  left     : 3rem !important;
}

.group:hover .group-hover\:inset-13{
  top     : 3.25rem !important;
  right     : 3.25rem !important;
  bottom     : 3.25rem !important;
  left     : 3.25rem !important;
}

.group:hover .group-hover\:inset-14{
  top     : 3.5rem !important;
  right     : 3.5rem !important;
  bottom     : 3.5rem !important;
  left     : 3.5rem !important;
}

.group:hover .group-hover\:inset-15{
  top     : 3.75rem !important;
  right     : 3.75rem !important;
  bottom     : 3.75rem !important;
  left     : 3.75rem !important;
}

.group:hover .group-hover\:inset-16{
  top     : 4rem !important;
  right     : 4rem !important;
  bottom     : 4rem !important;
  left     : 4rem !important;
}

.group:hover .group-hover\:inset-20{
  top     : 5rem !important;
  right     : 5rem !important;
  bottom     : 5rem !important;
  left     : 5rem !important;
}

.group:hover .group-hover\:inset-24{
  top     : 6rem !important;
  right     : 6rem !important;
  bottom     : 6rem !important;
  left     : 6rem !important;
}

.group:hover .group-hover\:inset-28{
  top     : 7rem !important;
  right     : 7rem !important;
  bottom     : 7rem !important;
  left     : 7rem !important;
}

.group:hover .group-hover\:inset-32{
  top     : 8rem !important;
  right     : 8rem !important;
  bottom     : 8rem !important;
  left     : 8rem !important;
}

.group:hover .group-hover\:inset-36{
  top     : 9rem !important;
  right     : 9rem !important;
  bottom     : 9rem !important;
  left     : 9rem !important;
}

.group:hover .group-hover\:inset-40{
  top     : 10rem !important;
  right     : 10rem !important;
  bottom     : 10rem !important;
  left     : 10rem !important;
}

.group:hover .group-hover\:inset-44{
  top     : 11rem !important;
  right     : 11rem !important;
  bottom     : 11rem !important;
  left     : 11rem !important;
}

.group:hover .group-hover\:inset-48{
  top     : 12rem !important;
  right     : 12rem !important;
  bottom     : 12rem !important;
  left     : 12rem !important;
}

.group:hover .group-hover\:inset-52{
  top     : 13rem !important;
  right     : 13rem !important;
  bottom     : 13rem !important;
  left     : 13rem !important;
}

.group:hover .group-hover\:inset-56{
  top     : 14rem !important;
  right     : 14rem !important;
  bottom     : 14rem !important;
  left     : 14rem !important;
}

.group:hover .group-hover\:inset-60{
  top     : 15rem !important;
  right     : 15rem !important;
  bottom     : 15rem !important;
  left     : 15rem !important;
}

.group:hover .group-hover\:inset-64{
  top     : 16rem !important;
  right     : 16rem !important;
  bottom     : 16rem !important;
  left     : 16rem !important;
}

.group:hover .group-hover\:inset-72{
  top     : 18rem !important;
  right     : 18rem !important;
  bottom     : 18rem !important;
  left     : 18rem !important;
}

.group:hover .group-hover\:inset-80{
  top     : 20rem !important;
  right     : 20rem !important;
  bottom     : 20rem !important;
  left     : 20rem !important;
}

.group:hover .group-hover\:inset-96{
  top     : 24rem !important;
  right     : 24rem !important;
  bottom     : 24rem !important;
  left     : 24rem !important;
}

.group:hover .group-hover\:inset-auto{
  top     : auto !important;
  right     : auto !important;
  bottom     : auto !important;
  left     : auto !important;
}

.group:hover .group-hover\:inset-px{
  top     : 1px !important;
  right     : 1px !important;
  bottom     : 1px !important;
  left     : 1px !important;
}

.group:hover .group-hover\:inset-0\.5{
  top     : 0.125rem !important;
  right     : 0.125rem !important;
  bottom     : 0.125rem !important;
  left     : 0.125rem !important;
}

.group:hover .group-hover\:inset-1\.5{
  top     : 0.375rem !important;
  right     : 0.375rem !important;
  bottom     : 0.375rem !important;
  left     : 0.375rem !important;
}

.group:hover .group-hover\:inset-2\.5{
  top     : 0.625rem !important;
  right     : 0.625rem !important;
  bottom     : 0.625rem !important;
  left     : 0.625rem !important;
}

.group:hover .group-hover\:inset-3\.5{
  top     : 0.875rem !important;
  right     : 0.875rem !important;
  bottom     : 0.875rem !important;
  left     : 0.875rem !important;
}

.group:hover .group-hover\:inset-1\/2{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-1\/3{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-2\/3{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-1\/4{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.group:hover .group-hover\:inset-2\/4{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-3\/4{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.group:hover .group-hover\:inset-1\/5{
  top     : 20% !important;
  right     : 20% !important;
  bottom     : 20% !important;
  left     : 20% !important;
}

.group:hover .group-hover\:inset-2\/5{
  top     : 40% !important;
  right     : 40% !important;
  bottom     : 40% !important;
  left     : 40% !important;
}

.group:hover .group-hover\:inset-3\/5{
  top     : 60% !important;
  right     : 60% !important;
  bottom     : 60% !important;
  left     : 60% !important;
}

.group:hover .group-hover\:inset-4\/5{
  top     : 80% !important;
  right     : 80% !important;
  bottom     : 80% !important;
  left     : 80% !important;
}

.group:hover .group-hover\:inset-1\/6{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.group:hover .group-hover\:inset-2\/6{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-3\/6{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-4\/6{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-5\/6{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.group:hover .group-hover\:inset-1\/12{
  top     : 8.333333% !important;
  right     : 8.333333% !important;
  bottom     : 8.333333% !important;
  left     : 8.333333% !important;
}

.group:hover .group-hover\:inset-2\/12{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.group:hover .group-hover\:inset-3\/12{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.group:hover .group-hover\:inset-4\/12{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-5\/12{
  top     : 41.666667% !important;
  right     : 41.666667% !important;
  bottom     : 41.666667% !important;
  left     : 41.666667% !important;
}

.group:hover .group-hover\:inset-6\/12{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-7\/12{
  top     : 58.333333% !important;
  right     : 58.333333% !important;
  bottom     : 58.333333% !important;
  left     : 58.333333% !important;
}

.group:hover .group-hover\:inset-8\/12{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-9\/12{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.group:hover .group-hover\:inset-10\/12{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.group:hover .group-hover\:inset-11\/12{
  top     : 91.666667% !important;
  right     : 91.666667% !important;
  bottom     : 91.666667% !important;
  left     : 91.666667% !important;
}

.group:hover .group-hover\:inset-full{
  top     : 100% !important;
  right     : 100% !important;
  bottom     : 100% !important;
  left     : 100% !important;
}

.group:hover .group-hover\:inset-y-0{
  top     : 0 !important;
  bottom     : 0 !important;
}

.group:hover .group-hover\:inset-x-0{
  right     : 0 !important;
  left     : 0 !important;
}

.group:hover .group-hover\:inset-y-1{
  top     : 0.25rem !important;
  bottom     : 0.25rem !important;
}

.group:hover .group-hover\:inset-x-1{
  right     : 0.25rem !important;
  left     : 0.25rem !important;
}

.group:hover .group-hover\:inset-y-2{
  top     : 0.5rem !important;
  bottom     : 0.5rem !important;
}

.group:hover .group-hover\:inset-x-2{
  right     : 0.5rem !important;
  left     : 0.5rem !important;
}

.group:hover .group-hover\:inset-y-3{
  top     : 0.75rem !important;
  bottom     : 0.75rem !important;
}

.group:hover .group-hover\:inset-x-3{
  right     : 0.75rem !important;
  left     : 0.75rem !important;
}

.group:hover .group-hover\:inset-y-4{
  top     : 1rem !important;
  bottom     : 1rem !important;
}

.group:hover .group-hover\:inset-x-4{
  right     : 1rem !important;
  left     : 1rem !important;
}

.group:hover .group-hover\:inset-y-5{
  top     : 1.25rem !important;
  bottom     : 1.25rem !important;
}

.group:hover .group-hover\:inset-x-5{
  right     : 1.25rem !important;
  left     : 1.25rem !important;
}

.group:hover .group-hover\:inset-y-6{
  top     : 1.5rem !important;
  bottom     : 1.5rem !important;
}

.group:hover .group-hover\:inset-x-6{
  right     : 1.5rem !important;
  left     : 1.5rem !important;
}

.group:hover .group-hover\:inset-y-7{
  top     : 1.75rem !important;
  bottom     : 1.75rem !important;
}

.group:hover .group-hover\:inset-x-7{
  right     : 1.75rem !important;
  left     : 1.75rem !important;
}

.group:hover .group-hover\:inset-y-8{
  top     : 2rem !important;
  bottom     : 2rem !important;
}

.group:hover .group-hover\:inset-x-8{
  right     : 2rem !important;
  left     : 2rem !important;
}

.group:hover .group-hover\:inset-y-9{
  top     : 2.25rem !important;
  bottom     : 2.25rem !important;
}

.group:hover .group-hover\:inset-x-9{
  right     : 2.25rem !important;
  left     : 2.25rem !important;
}

.group:hover .group-hover\:inset-y-10{
  top     : 2.5rem !important;
  bottom     : 2.5rem !important;
}

.group:hover .group-hover\:inset-x-10{
  right     : 2.5rem !important;
  left     : 2.5rem !important;
}

.group:hover .group-hover\:inset-y-11{
  top     : 2.75rem !important;
  bottom     : 2.75rem !important;
}

.group:hover .group-hover\:inset-x-11{
  right     : 2.75rem !important;
  left     : 2.75rem !important;
}

.group:hover .group-hover\:inset-y-12{
  top     : 3rem !important;
  bottom     : 3rem !important;
}

.group:hover .group-hover\:inset-x-12{
  right     : 3rem !important;
  left     : 3rem !important;
}

.group:hover .group-hover\:inset-y-13{
  top     : 3.25rem !important;
  bottom     : 3.25rem !important;
}

.group:hover .group-hover\:inset-x-13{
  right     : 3.25rem !important;
  left     : 3.25rem !important;
}

.group:hover .group-hover\:inset-y-14{
  top     : 3.5rem !important;
  bottom     : 3.5rem !important;
}

.group:hover .group-hover\:inset-x-14{
  right     : 3.5rem !important;
  left     : 3.5rem !important;
}

.group:hover .group-hover\:inset-y-15{
  top     : 3.75rem !important;
  bottom     : 3.75rem !important;
}

.group:hover .group-hover\:inset-x-15{
  right     : 3.75rem !important;
  left     : 3.75rem !important;
}

.group:hover .group-hover\:inset-y-16{
  top     : 4rem !important;
  bottom     : 4rem !important;
}

.group:hover .group-hover\:inset-x-16{
  right     : 4rem !important;
  left     : 4rem !important;
}

.group:hover .group-hover\:inset-y-20{
  top     : 5rem !important;
  bottom     : 5rem !important;
}

.group:hover .group-hover\:inset-x-20{
  right     : 5rem !important;
  left     : 5rem !important;
}

.group:hover .group-hover\:inset-y-24{
  top     : 6rem !important;
  bottom     : 6rem !important;
}

.group:hover .group-hover\:inset-x-24{
  right     : 6rem !important;
  left     : 6rem !important;
}

.group:hover .group-hover\:inset-y-28{
  top     : 7rem !important;
  bottom     : 7rem !important;
}

.group:hover .group-hover\:inset-x-28{
  right     : 7rem !important;
  left     : 7rem !important;
}

.group:hover .group-hover\:inset-y-32{
  top     : 8rem !important;
  bottom     : 8rem !important;
}

.group:hover .group-hover\:inset-x-32{
  right     : 8rem !important;
  left     : 8rem !important;
}

.group:hover .group-hover\:inset-y-36{
  top     : 9rem !important;
  bottom     : 9rem !important;
}

.group:hover .group-hover\:inset-x-36{
  right     : 9rem !important;
  left     : 9rem !important;
}

.group:hover .group-hover\:inset-y-40{
  top     : 10rem !important;
  bottom     : 10rem !important;
}

.group:hover .group-hover\:inset-x-40{
  right     : 10rem !important;
  left     : 10rem !important;
}

.group:hover .group-hover\:inset-y-44{
  top     : 11rem !important;
  bottom     : 11rem !important;
}

.group:hover .group-hover\:inset-x-44{
  right     : 11rem !important;
  left     : 11rem !important;
}

.group:hover .group-hover\:inset-y-48{
  top     : 12rem !important;
  bottom     : 12rem !important;
}

.group:hover .group-hover\:inset-x-48{
  right     : 12rem !important;
  left     : 12rem !important;
}

.group:hover .group-hover\:inset-y-52{
  top     : 13rem !important;
  bottom     : 13rem !important;
}

.group:hover .group-hover\:inset-x-52{
  right     : 13rem !important;
  left     : 13rem !important;
}

.group:hover .group-hover\:inset-y-56{
  top     : 14rem !important;
  bottom     : 14rem !important;
}

.group:hover .group-hover\:inset-x-56{
  right     : 14rem !important;
  left     : 14rem !important;
}

.group:hover .group-hover\:inset-y-60{
  top     : 15rem !important;
  bottom     : 15rem !important;
}

.group:hover .group-hover\:inset-x-60{
  right     : 15rem !important;
  left     : 15rem !important;
}

.group:hover .group-hover\:inset-y-64{
  top     : 16rem !important;
  bottom     : 16rem !important;
}

.group:hover .group-hover\:inset-x-64{
  right     : 16rem !important;
  left     : 16rem !important;
}

.group:hover .group-hover\:inset-y-72{
  top     : 18rem !important;
  bottom     : 18rem !important;
}

.group:hover .group-hover\:inset-x-72{
  right     : 18rem !important;
  left     : 18rem !important;
}

.group:hover .group-hover\:inset-y-80{
  top     : 20rem !important;
  bottom     : 20rem !important;
}

.group:hover .group-hover\:inset-x-80{
  right     : 20rem !important;
  left     : 20rem !important;
}

.group:hover .group-hover\:inset-y-96{
  top     : 24rem !important;
  bottom     : 24rem !important;
}

.group:hover .group-hover\:inset-x-96{
  right     : 24rem !important;
  left     : 24rem !important;
}

.group:hover .group-hover\:inset-y-auto{
  top     : auto !important;
  bottom     : auto !important;
}

.group:hover .group-hover\:inset-x-auto{
  right     : auto !important;
  left     : auto !important;
}

.group:hover .group-hover\:inset-y-px{
  top     : 1px !important;
  bottom     : 1px !important;
}

.group:hover .group-hover\:inset-x-px{
  right     : 1px !important;
  left     : 1px !important;
}

.group:hover .group-hover\:inset-y-0\.5{
  top     : 0.125rem !important;
  bottom     : 0.125rem !important;
}

.group:hover .group-hover\:inset-x-0\.5{
  right     : 0.125rem !important;
  left     : 0.125rem !important;
}

.group:hover .group-hover\:inset-y-1\.5{
  top     : 0.375rem !important;
  bottom     : 0.375rem !important;
}

.group:hover .group-hover\:inset-x-1\.5{
  right     : 0.375rem !important;
  left     : 0.375rem !important;
}

.group:hover .group-hover\:inset-y-2\.5{
  top     : 0.625rem !important;
  bottom     : 0.625rem !important;
}

.group:hover .group-hover\:inset-x-2\.5{
  right     : 0.625rem !important;
  left     : 0.625rem !important;
}

.group:hover .group-hover\:inset-y-3\.5{
  top     : 0.875rem !important;
  bottom     : 0.875rem !important;
}

.group:hover .group-hover\:inset-x-3\.5{
  right     : 0.875rem !important;
  left     : 0.875rem !important;
}

.group:hover .group-hover\:inset-y-1\/2{
  top     : 50% !important;
  bottom     : 50% !important;
}

.group:hover .group-hover\:inset-x-1\/2{
  right     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-y-1\/3{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:inset-x-1\/3{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-y-2\/3{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:inset-x-2\/3{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-y-1\/4{
  top     : 25% !important;
  bottom     : 25% !important;
}

.group:hover .group-hover\:inset-x-1\/4{
  right     : 25% !important;
  left     : 25% !important;
}

.group:hover .group-hover\:inset-y-2\/4{
  top     : 50% !important;
  bottom     : 50% !important;
}

.group:hover .group-hover\:inset-x-2\/4{
  right     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-y-3\/4{
  top     : 75% !important;
  bottom     : 75% !important;
}

.group:hover .group-hover\:inset-x-3\/4{
  right     : 75% !important;
  left     : 75% !important;
}

.group:hover .group-hover\:inset-y-1\/5{
  top     : 20% !important;
  bottom     : 20% !important;
}

.group:hover .group-hover\:inset-x-1\/5{
  right     : 20% !important;
  left     : 20% !important;
}

.group:hover .group-hover\:inset-y-2\/5{
  top     : 40% !important;
  bottom     : 40% !important;
}

.group:hover .group-hover\:inset-x-2\/5{
  right     : 40% !important;
  left     : 40% !important;
}

.group:hover .group-hover\:inset-y-3\/5{
  top     : 60% !important;
  bottom     : 60% !important;
}

.group:hover .group-hover\:inset-x-3\/5{
  right     : 60% !important;
  left     : 60% !important;
}

.group:hover .group-hover\:inset-y-4\/5{
  top     : 80% !important;
  bottom     : 80% !important;
}

.group:hover .group-hover\:inset-x-4\/5{
  right     : 80% !important;
  left     : 80% !important;
}

.group:hover .group-hover\:inset-y-1\/6{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.group:hover .group-hover\:inset-x-1\/6{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.group:hover .group-hover\:inset-y-2\/6{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:inset-x-2\/6{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-y-3\/6{
  top     : 50% !important;
  bottom     : 50% !important;
}

.group:hover .group-hover\:inset-x-3\/6{
  right     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-y-4\/6{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:inset-x-4\/6{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-y-5\/6{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.group:hover .group-hover\:inset-x-5\/6{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.group:hover .group-hover\:inset-y-1\/12{
  top     : 8.333333% !important;
  bottom     : 8.333333% !important;
}

.group:hover .group-hover\:inset-x-1\/12{
  right     : 8.333333% !important;
  left     : 8.333333% !important;
}

.group:hover .group-hover\:inset-y-2\/12{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.group:hover .group-hover\:inset-x-2\/12{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.group:hover .group-hover\:inset-y-3\/12{
  top     : 25% !important;
  bottom     : 25% !important;
}

.group:hover .group-hover\:inset-x-3\/12{
  right     : 25% !important;
  left     : 25% !important;
}

.group:hover .group-hover\:inset-y-4\/12{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:inset-x-4\/12{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.group:hover .group-hover\:inset-y-5\/12{
  top     : 41.666667% !important;
  bottom     : 41.666667% !important;
}

.group:hover .group-hover\:inset-x-5\/12{
  right     : 41.666667% !important;
  left     : 41.666667% !important;
}

.group:hover .group-hover\:inset-y-6\/12{
  top     : 50% !important;
  bottom     : 50% !important;
}

.group:hover .group-hover\:inset-x-6\/12{
  right     : 50% !important;
  left     : 50% !important;
}

.group:hover .group-hover\:inset-y-7\/12{
  top     : 58.333333% !important;
  bottom     : 58.333333% !important;
}

.group:hover .group-hover\:inset-x-7\/12{
  right     : 58.333333% !important;
  left     : 58.333333% !important;
}

.group:hover .group-hover\:inset-y-8\/12{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:inset-x-8\/12{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.group:hover .group-hover\:inset-y-9\/12{
  top     : 75% !important;
  bottom     : 75% !important;
}

.group:hover .group-hover\:inset-x-9\/12{
  right     : 75% !important;
  left     : 75% !important;
}

.group:hover .group-hover\:inset-y-10\/12{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.group:hover .group-hover\:inset-x-10\/12{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.group:hover .group-hover\:inset-y-11\/12{
  top     : 91.666667% !important;
  bottom     : 91.666667% !important;
}

.group:hover .group-hover\:inset-x-11\/12{
  right     : 91.666667% !important;
  left     : 91.666667% !important;
}

.group:hover .group-hover\:inset-y-full{
  top     : 100% !important;
  bottom     : 100% !important;
}

.group:hover .group-hover\:inset-x-full{
  right     : 100% !important;
  left     : 100% !important;
}

.group:hover .group-hover\:top-0{
  top     : 0 !important;
}

.group:hover .group-hover\:right-0{
  right     : 0 !important;
}

.group:hover .group-hover\:bottom-0{
  bottom     : 0 !important;
}

.group:hover .group-hover\:left-0{
  left     : 0 !important;
}

.group:hover .group-hover\:top-1{
  top     : 0.25rem !important;
}

.group:hover .group-hover\:right-1{
  right     : 0.25rem !important;
}

.group:hover .group-hover\:bottom-1{
  bottom     : 0.25rem !important;
}

.group:hover .group-hover\:left-1{
  left     : 0.25rem !important;
}

.group:hover .group-hover\:top-2{
  top     : 0.5rem !important;
}

.group:hover .group-hover\:right-2{
  right     : 0.5rem !important;
}

.group:hover .group-hover\:bottom-2{
  bottom     : 0.5rem !important;
}

.group:hover .group-hover\:left-2{
  left     : 0.5rem !important;
}

.group:hover .group-hover\:top-3{
  top     : 0.75rem !important;
}

.group:hover .group-hover\:right-3{
  right     : 0.75rem !important;
}

.group:hover .group-hover\:bottom-3{
  bottom     : 0.75rem !important;
}

.group:hover .group-hover\:left-3{
  left     : 0.75rem !important;
}

.group:hover .group-hover\:top-4{
  top     : 1rem !important;
}

.group:hover .group-hover\:right-4{
  right     : 1rem !important;
}

.group:hover .group-hover\:bottom-4{
  bottom     : 1rem !important;
}

.group:hover .group-hover\:left-4{
  left     : 1rem !important;
}

.group:hover .group-hover\:top-5{
  top     : 1.25rem !important;
}

.group:hover .group-hover\:right-5{
  right     : 1.25rem !important;
}

.group:hover .group-hover\:bottom-5{
  bottom     : 1.25rem !important;
}

.group:hover .group-hover\:left-5{
  left     : 1.25rem !important;
}

.group:hover .group-hover\:top-6{
  top     : 1.5rem !important;
}

.group:hover .group-hover\:right-6{
  right     : 1.5rem !important;
}

.group:hover .group-hover\:bottom-6{
  bottom     : 1.5rem !important;
}

.group:hover .group-hover\:left-6{
  left     : 1.5rem !important;
}

.group:hover .group-hover\:top-7{
  top     : 1.75rem !important;
}

.group:hover .group-hover\:right-7{
  right     : 1.75rem !important;
}

.group:hover .group-hover\:bottom-7{
  bottom     : 1.75rem !important;
}

.group:hover .group-hover\:left-7{
  left     : 1.75rem !important;
}

.group:hover .group-hover\:top-8{
  top     : 2rem !important;
}

.group:hover .group-hover\:right-8{
  right     : 2rem !important;
}

.group:hover .group-hover\:bottom-8{
  bottom     : 2rem !important;
}

.group:hover .group-hover\:left-8{
  left     : 2rem !important;
}

.group:hover .group-hover\:top-9{
  top     : 2.25rem !important;
}

.group:hover .group-hover\:right-9{
  right     : 2.25rem !important;
}

.group:hover .group-hover\:bottom-9{
  bottom     : 2.25rem !important;
}

.group:hover .group-hover\:left-9{
  left     : 2.25rem !important;
}

.group:hover .group-hover\:top-10{
  top     : 2.5rem !important;
}

.group:hover .group-hover\:right-10{
  right     : 2.5rem !important;
}

.group:hover .group-hover\:bottom-10{
  bottom     : 2.5rem !important;
}

.group:hover .group-hover\:left-10{
  left     : 2.5rem !important;
}

.group:hover .group-hover\:top-11{
  top     : 2.75rem !important;
}

.group:hover .group-hover\:right-11{
  right     : 2.75rem !important;
}

.group:hover .group-hover\:bottom-11{
  bottom     : 2.75rem !important;
}

.group:hover .group-hover\:left-11{
  left     : 2.75rem !important;
}

.group:hover .group-hover\:top-12{
  top     : 3rem !important;
}

.group:hover .group-hover\:right-12{
  right     : 3rem !important;
}

.group:hover .group-hover\:bottom-12{
  bottom     : 3rem !important;
}

.group:hover .group-hover\:left-12{
  left     : 3rem !important;
}

.group:hover .group-hover\:top-13{
  top     : 3.25rem !important;
}

.group:hover .group-hover\:right-13{
  right     : 3.25rem !important;
}

.group:hover .group-hover\:bottom-13{
  bottom     : 3.25rem !important;
}

.group:hover .group-hover\:left-13{
  left     : 3.25rem !important;
}

.group:hover .group-hover\:top-14{
  top     : 3.5rem !important;
}

.group:hover .group-hover\:right-14{
  right     : 3.5rem !important;
}

.group:hover .group-hover\:bottom-14{
  bottom     : 3.5rem !important;
}

.group:hover .group-hover\:left-14{
  left     : 3.5rem !important;
}

.group:hover .group-hover\:top-15{
  top     : 3.75rem !important;
}

.group:hover .group-hover\:right-15{
  right     : 3.75rem !important;
}

.group:hover .group-hover\:bottom-15{
  bottom     : 3.75rem !important;
}

.group:hover .group-hover\:left-15{
  left     : 3.75rem !important;
}

.group:hover .group-hover\:top-16{
  top     : 4rem !important;
}

.group:hover .group-hover\:right-16{
  right     : 4rem !important;
}

.group:hover .group-hover\:bottom-16{
  bottom     : 4rem !important;
}

.group:hover .group-hover\:left-16{
  left     : 4rem !important;
}

.group:hover .group-hover\:top-20{
  top     : 5rem !important;
}

.group:hover .group-hover\:right-20{
  right     : 5rem !important;
}

.group:hover .group-hover\:bottom-20{
  bottom     : 5rem !important;
}

.group:hover .group-hover\:left-20{
  left     : 5rem !important;
}

.group:hover .group-hover\:top-24{
  top     : 6rem !important;
}

.group:hover .group-hover\:right-24{
  right     : 6rem !important;
}

.group:hover .group-hover\:bottom-24{
  bottom     : 6rem !important;
}

.group:hover .group-hover\:left-24{
  left     : 6rem !important;
}

.group:hover .group-hover\:top-28{
  top     : 7rem !important;
}

.group:hover .group-hover\:right-28{
  right     : 7rem !important;
}

.group:hover .group-hover\:bottom-28{
  bottom     : 7rem !important;
}

.group:hover .group-hover\:left-28{
  left     : 7rem !important;
}

.group:hover .group-hover\:top-32{
  top     : 8rem !important;
}

.group:hover .group-hover\:right-32{
  right     : 8rem !important;
}

.group:hover .group-hover\:bottom-32{
  bottom     : 8rem !important;
}

.group:hover .group-hover\:left-32{
  left     : 8rem !important;
}

.group:hover .group-hover\:top-36{
  top     : 9rem !important;
}

.group:hover .group-hover\:right-36{
  right     : 9rem !important;
}

.group:hover .group-hover\:bottom-36{
  bottom     : 9rem !important;
}

.group:hover .group-hover\:left-36{
  left     : 9rem !important;
}

.group:hover .group-hover\:top-40{
  top     : 10rem !important;
}

.group:hover .group-hover\:right-40{
  right     : 10rem !important;
}

.group:hover .group-hover\:bottom-40{
  bottom     : 10rem !important;
}

.group:hover .group-hover\:left-40{
  left     : 10rem !important;
}

.group:hover .group-hover\:top-44{
  top     : 11rem !important;
}

.group:hover .group-hover\:right-44{
  right     : 11rem !important;
}

.group:hover .group-hover\:bottom-44{
  bottom     : 11rem !important;
}

.group:hover .group-hover\:left-44{
  left     : 11rem !important;
}

.group:hover .group-hover\:top-48{
  top     : 12rem !important;
}

.group:hover .group-hover\:right-48{
  right     : 12rem !important;
}

.group:hover .group-hover\:bottom-48{
  bottom     : 12rem !important;
}

.group:hover .group-hover\:left-48{
  left     : 12rem !important;
}

.group:hover .group-hover\:top-52{
  top     : 13rem !important;
}

.group:hover .group-hover\:right-52{
  right     : 13rem !important;
}

.group:hover .group-hover\:bottom-52{
  bottom     : 13rem !important;
}

.group:hover .group-hover\:left-52{
  left     : 13rem !important;
}

.group:hover .group-hover\:top-56{
  top     : 14rem !important;
}

.group:hover .group-hover\:right-56{
  right     : 14rem !important;
}

.group:hover .group-hover\:bottom-56{
  bottom     : 14rem !important;
}

.group:hover .group-hover\:left-56{
  left     : 14rem !important;
}

.group:hover .group-hover\:top-60{
  top     : 15rem !important;
}

.group:hover .group-hover\:right-60{
  right     : 15rem !important;
}

.group:hover .group-hover\:bottom-60{
  bottom     : 15rem !important;
}

.group:hover .group-hover\:left-60{
  left     : 15rem !important;
}

.group:hover .group-hover\:top-64{
  top     : 16rem !important;
}

.group:hover .group-hover\:right-64{
  right     : 16rem !important;
}

.group:hover .group-hover\:bottom-64{
  bottom     : 16rem !important;
}

.group:hover .group-hover\:left-64{
  left     : 16rem !important;
}

.group:hover .group-hover\:top-72{
  top     : 18rem !important;
}

.group:hover .group-hover\:right-72{
  right     : 18rem !important;
}

.group:hover .group-hover\:bottom-72{
  bottom     : 18rem !important;
}

.group:hover .group-hover\:left-72{
  left     : 18rem !important;
}

.group:hover .group-hover\:top-80{
  top     : 20rem !important;
}

.group:hover .group-hover\:right-80{
  right     : 20rem !important;
}

.group:hover .group-hover\:bottom-80{
  bottom     : 20rem !important;
}

.group:hover .group-hover\:left-80{
  left     : 20rem !important;
}

.group:hover .group-hover\:top-96{
  top     : 24rem !important;
}

.group:hover .group-hover\:right-96{
  right     : 24rem !important;
}

.group:hover .group-hover\:bottom-96{
  bottom     : 24rem !important;
}

.group:hover .group-hover\:left-96{
  left     : 24rem !important;
}

.group:hover .group-hover\:top-auto{
  top     : auto !important;
}

.group:hover .group-hover\:right-auto{
  right     : auto !important;
}

.group:hover .group-hover\:bottom-auto{
  bottom     : auto !important;
}

.group:hover .group-hover\:left-auto{
  left     : auto !important;
}

.group:hover .group-hover\:top-px{
  top     : 1px !important;
}

.group:hover .group-hover\:right-px{
  right     : 1px !important;
}

.group:hover .group-hover\:bottom-px{
  bottom     : 1px !important;
}

.group:hover .group-hover\:left-px{
  left     : 1px !important;
}

.group:hover .group-hover\:top-0\.5{
  top     : 0.125rem !important;
}

.group:hover .group-hover\:right-0\.5{
  right     : 0.125rem !important;
}

.group:hover .group-hover\:bottom-0\.5{
  bottom     : 0.125rem !important;
}

.group:hover .group-hover\:left-0\.5{
  left     : 0.125rem !important;
}

.group:hover .group-hover\:top-1\.5{
  top     : 0.375rem !important;
}

.group:hover .group-hover\:right-1\.5{
  right     : 0.375rem !important;
}

.group:hover .group-hover\:bottom-1\.5{
  bottom     : 0.375rem !important;
}

.group:hover .group-hover\:left-1\.5{
  left     : 0.375rem !important;
}

.group:hover .group-hover\:top-2\.5{
  top     : 0.625rem !important;
}

.group:hover .group-hover\:right-2\.5{
  right     : 0.625rem !important;
}

.group:hover .group-hover\:bottom-2\.5{
  bottom     : 0.625rem !important;
}

.group:hover .group-hover\:left-2\.5{
  left     : 0.625rem !important;
}

.group:hover .group-hover\:top-3\.5{
  top     : 0.875rem !important;
}

.group:hover .group-hover\:right-3\.5{
  right     : 0.875rem !important;
}

.group:hover .group-hover\:bottom-3\.5{
  bottom     : 0.875rem !important;
}

.group:hover .group-hover\:left-3\.5{
  left     : 0.875rem !important;
}

.group:hover .group-hover\:top-1\/2{
  top     : 50% !important;
}

.group:hover .group-hover\:right-1\/2{
  right     : 50% !important;
}

.group:hover .group-hover\:bottom-1\/2{
  bottom     : 50% !important;
}

.group:hover .group-hover\:left-1\/2{
  left     : 50% !important;
}

.group:hover .group-hover\:top-1\/3{
  top     : 33.333333% !important;
}

.group:hover .group-hover\:right-1\/3{
  right     : 33.333333% !important;
}

.group:hover .group-hover\:bottom-1\/3{
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:left-1\/3{
  left     : 33.333333% !important;
}

.group:hover .group-hover\:top-2\/3{
  top     : 66.666667% !important;
}

.group:hover .group-hover\:right-2\/3{
  right     : 66.666667% !important;
}

.group:hover .group-hover\:bottom-2\/3{
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:left-2\/3{
  left     : 66.666667% !important;
}

.group:hover .group-hover\:top-1\/4{
  top     : 25% !important;
}

.group:hover .group-hover\:right-1\/4{
  right     : 25% !important;
}

.group:hover .group-hover\:bottom-1\/4{
  bottom     : 25% !important;
}

.group:hover .group-hover\:left-1\/4{
  left     : 25% !important;
}

.group:hover .group-hover\:top-2\/4{
  top     : 50% !important;
}

.group:hover .group-hover\:right-2\/4{
  right     : 50% !important;
}

.group:hover .group-hover\:bottom-2\/4{
  bottom     : 50% !important;
}

.group:hover .group-hover\:left-2\/4{
  left     : 50% !important;
}

.group:hover .group-hover\:top-3\/4{
  top     : 75% !important;
}

.group:hover .group-hover\:right-3\/4{
  right     : 75% !important;
}

.group:hover .group-hover\:bottom-3\/4{
  bottom     : 75% !important;
}

.group:hover .group-hover\:left-3\/4{
  left     : 75% !important;
}

.group:hover .group-hover\:top-1\/5{
  top     : 20% !important;
}

.group:hover .group-hover\:right-1\/5{
  right     : 20% !important;
}

.group:hover .group-hover\:bottom-1\/5{
  bottom     : 20% !important;
}

.group:hover .group-hover\:left-1\/5{
  left     : 20% !important;
}

.group:hover .group-hover\:top-2\/5{
  top     : 40% !important;
}

.group:hover .group-hover\:right-2\/5{
  right     : 40% !important;
}

.group:hover .group-hover\:bottom-2\/5{
  bottom     : 40% !important;
}

.group:hover .group-hover\:left-2\/5{
  left     : 40% !important;
}

.group:hover .group-hover\:top-3\/5{
  top     : 60% !important;
}

.group:hover .group-hover\:right-3\/5{
  right     : 60% !important;
}

.group:hover .group-hover\:bottom-3\/5{
  bottom     : 60% !important;
}

.group:hover .group-hover\:left-3\/5{
  left     : 60% !important;
}

.group:hover .group-hover\:top-4\/5{
  top     : 80% !important;
}

.group:hover .group-hover\:right-4\/5{
  right     : 80% !important;
}

.group:hover .group-hover\:bottom-4\/5{
  bottom     : 80% !important;
}

.group:hover .group-hover\:left-4\/5{
  left     : 80% !important;
}

.group:hover .group-hover\:top-1\/6{
  top     : 16.666667% !important;
}

.group:hover .group-hover\:right-1\/6{
  right     : 16.666667% !important;
}

.group:hover .group-hover\:bottom-1\/6{
  bottom     : 16.666667% !important;
}

.group:hover .group-hover\:left-1\/6{
  left     : 16.666667% !important;
}

.group:hover .group-hover\:top-2\/6{
  top     : 33.333333% !important;
}

.group:hover .group-hover\:right-2\/6{
  right     : 33.333333% !important;
}

.group:hover .group-hover\:bottom-2\/6{
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:left-2\/6{
  left     : 33.333333% !important;
}

.group:hover .group-hover\:top-3\/6{
  top     : 50% !important;
}

.group:hover .group-hover\:right-3\/6{
  right     : 50% !important;
}

.group:hover .group-hover\:bottom-3\/6{
  bottom     : 50% !important;
}

.group:hover .group-hover\:left-3\/6{
  left     : 50% !important;
}

.group:hover .group-hover\:top-4\/6{
  top     : 66.666667% !important;
}

.group:hover .group-hover\:right-4\/6{
  right     : 66.666667% !important;
}

.group:hover .group-hover\:bottom-4\/6{
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:left-4\/6{
  left     : 66.666667% !important;
}

.group:hover .group-hover\:top-5\/6{
  top     : 83.333333% !important;
}

.group:hover .group-hover\:right-5\/6{
  right     : 83.333333% !important;
}

.group:hover .group-hover\:bottom-5\/6{
  bottom     : 83.333333% !important;
}

.group:hover .group-hover\:left-5\/6{
  left     : 83.333333% !important;
}

.group:hover .group-hover\:top-1\/12{
  top     : 8.333333% !important;
}

.group:hover .group-hover\:right-1\/12{
  right     : 8.333333% !important;
}

.group:hover .group-hover\:bottom-1\/12{
  bottom     : 8.333333% !important;
}

.group:hover .group-hover\:left-1\/12{
  left     : 8.333333% !important;
}

.group:hover .group-hover\:top-2\/12{
  top     : 16.666667% !important;
}

.group:hover .group-hover\:right-2\/12{
  right     : 16.666667% !important;
}

.group:hover .group-hover\:bottom-2\/12{
  bottom     : 16.666667% !important;
}

.group:hover .group-hover\:left-2\/12{
  left     : 16.666667% !important;
}

.group:hover .group-hover\:top-3\/12{
  top     : 25% !important;
}

.group:hover .group-hover\:right-3\/12{
  right     : 25% !important;
}

.group:hover .group-hover\:bottom-3\/12{
  bottom     : 25% !important;
}

.group:hover .group-hover\:left-3\/12{
  left     : 25% !important;
}

.group:hover .group-hover\:top-4\/12{
  top     : 33.333333% !important;
}

.group:hover .group-hover\:right-4\/12{
  right     : 33.333333% !important;
}

.group:hover .group-hover\:bottom-4\/12{
  bottom     : 33.333333% !important;
}

.group:hover .group-hover\:left-4\/12{
  left     : 33.333333% !important;
}

.group:hover .group-hover\:top-5\/12{
  top     : 41.666667% !important;
}

.group:hover .group-hover\:right-5\/12{
  right     : 41.666667% !important;
}

.group:hover .group-hover\:bottom-5\/12{
  bottom     : 41.666667% !important;
}

.group:hover .group-hover\:left-5\/12{
  left     : 41.666667% !important;
}

.group:hover .group-hover\:top-6\/12{
  top     : 50% !important;
}

.group:hover .group-hover\:right-6\/12{
  right     : 50% !important;
}

.group:hover .group-hover\:bottom-6\/12{
  bottom     : 50% !important;
}

.group:hover .group-hover\:left-6\/12{
  left     : 50% !important;
}

.group:hover .group-hover\:top-7\/12{
  top     : 58.333333% !important;
}

.group:hover .group-hover\:right-7\/12{
  right     : 58.333333% !important;
}

.group:hover .group-hover\:bottom-7\/12{
  bottom     : 58.333333% !important;
}

.group:hover .group-hover\:left-7\/12{
  left     : 58.333333% !important;
}

.group:hover .group-hover\:top-8\/12{
  top     : 66.666667% !important;
}

.group:hover .group-hover\:right-8\/12{
  right     : 66.666667% !important;
}

.group:hover .group-hover\:bottom-8\/12{
  bottom     : 66.666667% !important;
}

.group:hover .group-hover\:left-8\/12{
  left     : 66.666667% !important;
}

.group:hover .group-hover\:top-9\/12{
  top     : 75% !important;
}

.group:hover .group-hover\:right-9\/12{
  right     : 75% !important;
}

.group:hover .group-hover\:bottom-9\/12{
  bottom     : 75% !important;
}

.group:hover .group-hover\:left-9\/12{
  left     : 75% !important;
}

.group:hover .group-hover\:top-10\/12{
  top     : 83.333333% !important;
}

.group:hover .group-hover\:right-10\/12{
  right     : 83.333333% !important;
}

.group:hover .group-hover\:bottom-10\/12{
  bottom     : 83.333333% !important;
}

.group:hover .group-hover\:left-10\/12{
  left     : 83.333333% !important;
}

.group:hover .group-hover\:top-11\/12{
  top     : 91.666667% !important;
}

.group:hover .group-hover\:right-11\/12{
  right     : 91.666667% !important;
}

.group:hover .group-hover\:bottom-11\/12{
  bottom     : 91.666667% !important;
}

.group:hover .group-hover\:left-11\/12{
  left     : 91.666667% !important;
}

.group:hover .group-hover\:top-full{
  top     : 100% !important;
}

.group:hover .group-hover\:right-full{
  right     : 100% !important;
}

.group:hover .group-hover\:bottom-full{
  bottom     : 100% !important;
}

.group:hover .group-hover\:left-full{
  left     : 100% !important;
}

.hover\:inset-0:hover{
  top     : 0 !important;
  right     : 0 !important;
  bottom     : 0 !important;
  left     : 0 !important;
}

.hover\:inset-1:hover{
  top     : 0.25rem !important;
  right     : 0.25rem !important;
  bottom     : 0.25rem !important;
  left     : 0.25rem !important;
}

.hover\:inset-2:hover{
  top     : 0.5rem !important;
  right     : 0.5rem !important;
  bottom     : 0.5rem !important;
  left     : 0.5rem !important;
}

.hover\:inset-3:hover{
  top     : 0.75rem !important;
  right     : 0.75rem !important;
  bottom     : 0.75rem !important;
  left     : 0.75rem !important;
}

.hover\:inset-4:hover{
  top     : 1rem !important;
  right     : 1rem !important;
  bottom     : 1rem !important;
  left     : 1rem !important;
}

.hover\:inset-5:hover{
  top     : 1.25rem !important;
  right     : 1.25rem !important;
  bottom     : 1.25rem !important;
  left     : 1.25rem !important;
}

.hover\:inset-6:hover{
  top     : 1.5rem !important;
  right     : 1.5rem !important;
  bottom     : 1.5rem !important;
  left     : 1.5rem !important;
}

.hover\:inset-7:hover{
  top     : 1.75rem !important;
  right     : 1.75rem !important;
  bottom     : 1.75rem !important;
  left     : 1.75rem !important;
}

.hover\:inset-8:hover{
  top     : 2rem !important;
  right     : 2rem !important;
  bottom     : 2rem !important;
  left     : 2rem !important;
}

.hover\:inset-9:hover{
  top     : 2.25rem !important;
  right     : 2.25rem !important;
  bottom     : 2.25rem !important;
  left     : 2.25rem !important;
}

.hover\:inset-10:hover{
  top     : 2.5rem !important;
  right     : 2.5rem !important;
  bottom     : 2.5rem !important;
  left     : 2.5rem !important;
}

.hover\:inset-11:hover{
  top     : 2.75rem !important;
  right     : 2.75rem !important;
  bottom     : 2.75rem !important;
  left     : 2.75rem !important;
}

.hover\:inset-12:hover{
  top     : 3rem !important;
  right     : 3rem !important;
  bottom     : 3rem !important;
  left     : 3rem !important;
}

.hover\:inset-13:hover{
  top     : 3.25rem !important;
  right     : 3.25rem !important;
  bottom     : 3.25rem !important;
  left     : 3.25rem !important;
}

.hover\:inset-14:hover{
  top     : 3.5rem !important;
  right     : 3.5rem !important;
  bottom     : 3.5rem !important;
  left     : 3.5rem !important;
}

.hover\:inset-15:hover{
  top     : 3.75rem !important;
  right     : 3.75rem !important;
  bottom     : 3.75rem !important;
  left     : 3.75rem !important;
}

.hover\:inset-16:hover{
  top     : 4rem !important;
  right     : 4rem !important;
  bottom     : 4rem !important;
  left     : 4rem !important;
}

.hover\:inset-20:hover{
  top     : 5rem !important;
  right     : 5rem !important;
  bottom     : 5rem !important;
  left     : 5rem !important;
}

.hover\:inset-24:hover{
  top     : 6rem !important;
  right     : 6rem !important;
  bottom     : 6rem !important;
  left     : 6rem !important;
}

.hover\:inset-28:hover{
  top     : 7rem !important;
  right     : 7rem !important;
  bottom     : 7rem !important;
  left     : 7rem !important;
}

.hover\:inset-32:hover{
  top     : 8rem !important;
  right     : 8rem !important;
  bottom     : 8rem !important;
  left     : 8rem !important;
}

.hover\:inset-36:hover{
  top     : 9rem !important;
  right     : 9rem !important;
  bottom     : 9rem !important;
  left     : 9rem !important;
}

.hover\:inset-40:hover{
  top     : 10rem !important;
  right     : 10rem !important;
  bottom     : 10rem !important;
  left     : 10rem !important;
}

.hover\:inset-44:hover{
  top     : 11rem !important;
  right     : 11rem !important;
  bottom     : 11rem !important;
  left     : 11rem !important;
}

.hover\:inset-48:hover{
  top     : 12rem !important;
  right     : 12rem !important;
  bottom     : 12rem !important;
  left     : 12rem !important;
}

.hover\:inset-52:hover{
  top     : 13rem !important;
  right     : 13rem !important;
  bottom     : 13rem !important;
  left     : 13rem !important;
}

.hover\:inset-56:hover{
  top     : 14rem !important;
  right     : 14rem !important;
  bottom     : 14rem !important;
  left     : 14rem !important;
}

.hover\:inset-60:hover{
  top     : 15rem !important;
  right     : 15rem !important;
  bottom     : 15rem !important;
  left     : 15rem !important;
}

.hover\:inset-64:hover{
  top     : 16rem !important;
  right     : 16rem !important;
  bottom     : 16rem !important;
  left     : 16rem !important;
}

.hover\:inset-72:hover{
  top     : 18rem !important;
  right     : 18rem !important;
  bottom     : 18rem !important;
  left     : 18rem !important;
}

.hover\:inset-80:hover{
  top     : 20rem !important;
  right     : 20rem !important;
  bottom     : 20rem !important;
  left     : 20rem !important;
}

.hover\:inset-96:hover{
  top     : 24rem !important;
  right     : 24rem !important;
  bottom     : 24rem !important;
  left     : 24rem !important;
}

.hover\:inset-auto:hover{
  top     : auto !important;
  right     : auto !important;
  bottom     : auto !important;
  left     : auto !important;
}

.hover\:inset-px:hover{
  top     : 1px !important;
  right     : 1px !important;
  bottom     : 1px !important;
  left     : 1px !important;
}

.hover\:inset-0\.5:hover{
  top     : 0.125rem !important;
  right     : 0.125rem !important;
  bottom     : 0.125rem !important;
  left     : 0.125rem !important;
}

.hover\:inset-1\.5:hover{
  top     : 0.375rem !important;
  right     : 0.375rem !important;
  bottom     : 0.375rem !important;
  left     : 0.375rem !important;
}

.hover\:inset-2\.5:hover{
  top     : 0.625rem !important;
  right     : 0.625rem !important;
  bottom     : 0.625rem !important;
  left     : 0.625rem !important;
}

.hover\:inset-3\.5:hover{
  top     : 0.875rem !important;
  right     : 0.875rem !important;
  bottom     : 0.875rem !important;
  left     : 0.875rem !important;
}

.hover\:inset-1\/2:hover{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-1\/3:hover{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-2\/3:hover{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-1\/4:hover{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.hover\:inset-2\/4:hover{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-3\/4:hover{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.hover\:inset-1\/5:hover{
  top     : 20% !important;
  right     : 20% !important;
  bottom     : 20% !important;
  left     : 20% !important;
}

.hover\:inset-2\/5:hover{
  top     : 40% !important;
  right     : 40% !important;
  bottom     : 40% !important;
  left     : 40% !important;
}

.hover\:inset-3\/5:hover{
  top     : 60% !important;
  right     : 60% !important;
  bottom     : 60% !important;
  left     : 60% !important;
}

.hover\:inset-4\/5:hover{
  top     : 80% !important;
  right     : 80% !important;
  bottom     : 80% !important;
  left     : 80% !important;
}

.hover\:inset-1\/6:hover{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.hover\:inset-2\/6:hover{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-3\/6:hover{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-4\/6:hover{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-5\/6:hover{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.hover\:inset-1\/12:hover{
  top     : 8.333333% !important;
  right     : 8.333333% !important;
  bottom     : 8.333333% !important;
  left     : 8.333333% !important;
}

.hover\:inset-2\/12:hover{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.hover\:inset-3\/12:hover{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.hover\:inset-4\/12:hover{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-5\/12:hover{
  top     : 41.666667% !important;
  right     : 41.666667% !important;
  bottom     : 41.666667% !important;
  left     : 41.666667% !important;
}

.hover\:inset-6\/12:hover{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-7\/12:hover{
  top     : 58.333333% !important;
  right     : 58.333333% !important;
  bottom     : 58.333333% !important;
  left     : 58.333333% !important;
}

.hover\:inset-8\/12:hover{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-9\/12:hover{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.hover\:inset-10\/12:hover{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.hover\:inset-11\/12:hover{
  top     : 91.666667% !important;
  right     : 91.666667% !important;
  bottom     : 91.666667% !important;
  left     : 91.666667% !important;
}

.hover\:inset-full:hover{
  top     : 100% !important;
  right     : 100% !important;
  bottom     : 100% !important;
  left     : 100% !important;
}

.hover\:inset-y-0:hover{
  top     : 0 !important;
  bottom     : 0 !important;
}

.hover\:inset-x-0:hover{
  right     : 0 !important;
  left     : 0 !important;
}

.hover\:inset-y-1:hover{
  top     : 0.25rem !important;
  bottom     : 0.25rem !important;
}

.hover\:inset-x-1:hover{
  right     : 0.25rem !important;
  left     : 0.25rem !important;
}

.hover\:inset-y-2:hover{
  top     : 0.5rem !important;
  bottom     : 0.5rem !important;
}

.hover\:inset-x-2:hover{
  right     : 0.5rem !important;
  left     : 0.5rem !important;
}

.hover\:inset-y-3:hover{
  top     : 0.75rem !important;
  bottom     : 0.75rem !important;
}

.hover\:inset-x-3:hover{
  right     : 0.75rem !important;
  left     : 0.75rem !important;
}

.hover\:inset-y-4:hover{
  top     : 1rem !important;
  bottom     : 1rem !important;
}

.hover\:inset-x-4:hover{
  right     : 1rem !important;
  left     : 1rem !important;
}

.hover\:inset-y-5:hover{
  top     : 1.25rem !important;
  bottom     : 1.25rem !important;
}

.hover\:inset-x-5:hover{
  right     : 1.25rem !important;
  left     : 1.25rem !important;
}

.hover\:inset-y-6:hover{
  top     : 1.5rem !important;
  bottom     : 1.5rem !important;
}

.hover\:inset-x-6:hover{
  right     : 1.5rem !important;
  left     : 1.5rem !important;
}

.hover\:inset-y-7:hover{
  top     : 1.75rem !important;
  bottom     : 1.75rem !important;
}

.hover\:inset-x-7:hover{
  right     : 1.75rem !important;
  left     : 1.75rem !important;
}

.hover\:inset-y-8:hover{
  top     : 2rem !important;
  bottom     : 2rem !important;
}

.hover\:inset-x-8:hover{
  right     : 2rem !important;
  left     : 2rem !important;
}

.hover\:inset-y-9:hover{
  top     : 2.25rem !important;
  bottom     : 2.25rem !important;
}

.hover\:inset-x-9:hover{
  right     : 2.25rem !important;
  left     : 2.25rem !important;
}

.hover\:inset-y-10:hover{
  top     : 2.5rem !important;
  bottom     : 2.5rem !important;
}

.hover\:inset-x-10:hover{
  right     : 2.5rem !important;
  left     : 2.5rem !important;
}

.hover\:inset-y-11:hover{
  top     : 2.75rem !important;
  bottom     : 2.75rem !important;
}

.hover\:inset-x-11:hover{
  right     : 2.75rem !important;
  left     : 2.75rem !important;
}

.hover\:inset-y-12:hover{
  top     : 3rem !important;
  bottom     : 3rem !important;
}

.hover\:inset-x-12:hover{
  right     : 3rem !important;
  left     : 3rem !important;
}

.hover\:inset-y-13:hover{
  top     : 3.25rem !important;
  bottom     : 3.25rem !important;
}

.hover\:inset-x-13:hover{
  right     : 3.25rem !important;
  left     : 3.25rem !important;
}

.hover\:inset-y-14:hover{
  top     : 3.5rem !important;
  bottom     : 3.5rem !important;
}

.hover\:inset-x-14:hover{
  right     : 3.5rem !important;
  left     : 3.5rem !important;
}

.hover\:inset-y-15:hover{
  top     : 3.75rem !important;
  bottom     : 3.75rem !important;
}

.hover\:inset-x-15:hover{
  right     : 3.75rem !important;
  left     : 3.75rem !important;
}

.hover\:inset-y-16:hover{
  top     : 4rem !important;
  bottom     : 4rem !important;
}

.hover\:inset-x-16:hover{
  right     : 4rem !important;
  left     : 4rem !important;
}

.hover\:inset-y-20:hover{
  top     : 5rem !important;
  bottom     : 5rem !important;
}

.hover\:inset-x-20:hover{
  right     : 5rem !important;
  left     : 5rem !important;
}

.hover\:inset-y-24:hover{
  top     : 6rem !important;
  bottom     : 6rem !important;
}

.hover\:inset-x-24:hover{
  right     : 6rem !important;
  left     : 6rem !important;
}

.hover\:inset-y-28:hover{
  top     : 7rem !important;
  bottom     : 7rem !important;
}

.hover\:inset-x-28:hover{
  right     : 7rem !important;
  left     : 7rem !important;
}

.hover\:inset-y-32:hover{
  top     : 8rem !important;
  bottom     : 8rem !important;
}

.hover\:inset-x-32:hover{
  right     : 8rem !important;
  left     : 8rem !important;
}

.hover\:inset-y-36:hover{
  top     : 9rem !important;
  bottom     : 9rem !important;
}

.hover\:inset-x-36:hover{
  right     : 9rem !important;
  left     : 9rem !important;
}

.hover\:inset-y-40:hover{
  top     : 10rem !important;
  bottom     : 10rem !important;
}

.hover\:inset-x-40:hover{
  right     : 10rem !important;
  left     : 10rem !important;
}

.hover\:inset-y-44:hover{
  top     : 11rem !important;
  bottom     : 11rem !important;
}

.hover\:inset-x-44:hover{
  right     : 11rem !important;
  left     : 11rem !important;
}

.hover\:inset-y-48:hover{
  top     : 12rem !important;
  bottom     : 12rem !important;
}

.hover\:inset-x-48:hover{
  right     : 12rem !important;
  left     : 12rem !important;
}

.hover\:inset-y-52:hover{
  top     : 13rem !important;
  bottom     : 13rem !important;
}

.hover\:inset-x-52:hover{
  right     : 13rem !important;
  left     : 13rem !important;
}

.hover\:inset-y-56:hover{
  top     : 14rem !important;
  bottom     : 14rem !important;
}

.hover\:inset-x-56:hover{
  right     : 14rem !important;
  left     : 14rem !important;
}

.hover\:inset-y-60:hover{
  top     : 15rem !important;
  bottom     : 15rem !important;
}

.hover\:inset-x-60:hover{
  right     : 15rem !important;
  left     : 15rem !important;
}

.hover\:inset-y-64:hover{
  top     : 16rem !important;
  bottom     : 16rem !important;
}

.hover\:inset-x-64:hover{
  right     : 16rem !important;
  left     : 16rem !important;
}

.hover\:inset-y-72:hover{
  top     : 18rem !important;
  bottom     : 18rem !important;
}

.hover\:inset-x-72:hover{
  right     : 18rem !important;
  left     : 18rem !important;
}

.hover\:inset-y-80:hover{
  top     : 20rem !important;
  bottom     : 20rem !important;
}

.hover\:inset-x-80:hover{
  right     : 20rem !important;
  left     : 20rem !important;
}

.hover\:inset-y-96:hover{
  top     : 24rem !important;
  bottom     : 24rem !important;
}

.hover\:inset-x-96:hover{
  right     : 24rem !important;
  left     : 24rem !important;
}

.hover\:inset-y-auto:hover{
  top     : auto !important;
  bottom     : auto !important;
}

.hover\:inset-x-auto:hover{
  right     : auto !important;
  left     : auto !important;
}

.hover\:inset-y-px:hover{
  top     : 1px !important;
  bottom     : 1px !important;
}

.hover\:inset-x-px:hover{
  right     : 1px !important;
  left     : 1px !important;
}

.hover\:inset-y-0\.5:hover{
  top     : 0.125rem !important;
  bottom     : 0.125rem !important;
}

.hover\:inset-x-0\.5:hover{
  right     : 0.125rem !important;
  left     : 0.125rem !important;
}

.hover\:inset-y-1\.5:hover{
  top     : 0.375rem !important;
  bottom     : 0.375rem !important;
}

.hover\:inset-x-1\.5:hover{
  right     : 0.375rem !important;
  left     : 0.375rem !important;
}

.hover\:inset-y-2\.5:hover{
  top     : 0.625rem !important;
  bottom     : 0.625rem !important;
}

.hover\:inset-x-2\.5:hover{
  right     : 0.625rem !important;
  left     : 0.625rem !important;
}

.hover\:inset-y-3\.5:hover{
  top     : 0.875rem !important;
  bottom     : 0.875rem !important;
}

.hover\:inset-x-3\.5:hover{
  right     : 0.875rem !important;
  left     : 0.875rem !important;
}

.hover\:inset-y-1\/2:hover{
  top     : 50% !important;
  bottom     : 50% !important;
}

.hover\:inset-x-1\/2:hover{
  right     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-y-1\/3:hover{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.hover\:inset-x-1\/3:hover{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-y-2\/3:hover{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.hover\:inset-x-2\/3:hover{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-y-1\/4:hover{
  top     : 25% !important;
  bottom     : 25% !important;
}

.hover\:inset-x-1\/4:hover{
  right     : 25% !important;
  left     : 25% !important;
}

.hover\:inset-y-2\/4:hover{
  top     : 50% !important;
  bottom     : 50% !important;
}

.hover\:inset-x-2\/4:hover{
  right     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-y-3\/4:hover{
  top     : 75% !important;
  bottom     : 75% !important;
}

.hover\:inset-x-3\/4:hover{
  right     : 75% !important;
  left     : 75% !important;
}

.hover\:inset-y-1\/5:hover{
  top     : 20% !important;
  bottom     : 20% !important;
}

.hover\:inset-x-1\/5:hover{
  right     : 20% !important;
  left     : 20% !important;
}

.hover\:inset-y-2\/5:hover{
  top     : 40% !important;
  bottom     : 40% !important;
}

.hover\:inset-x-2\/5:hover{
  right     : 40% !important;
  left     : 40% !important;
}

.hover\:inset-y-3\/5:hover{
  top     : 60% !important;
  bottom     : 60% !important;
}

.hover\:inset-x-3\/5:hover{
  right     : 60% !important;
  left     : 60% !important;
}

.hover\:inset-y-4\/5:hover{
  top     : 80% !important;
  bottom     : 80% !important;
}

.hover\:inset-x-4\/5:hover{
  right     : 80% !important;
  left     : 80% !important;
}

.hover\:inset-y-1\/6:hover{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.hover\:inset-x-1\/6:hover{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.hover\:inset-y-2\/6:hover{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.hover\:inset-x-2\/6:hover{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-y-3\/6:hover{
  top     : 50% !important;
  bottom     : 50% !important;
}

.hover\:inset-x-3\/6:hover{
  right     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-y-4\/6:hover{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.hover\:inset-x-4\/6:hover{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-y-5\/6:hover{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.hover\:inset-x-5\/6:hover{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.hover\:inset-y-1\/12:hover{
  top     : 8.333333% !important;
  bottom     : 8.333333% !important;
}

.hover\:inset-x-1\/12:hover{
  right     : 8.333333% !important;
  left     : 8.333333% !important;
}

.hover\:inset-y-2\/12:hover{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.hover\:inset-x-2\/12:hover{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.hover\:inset-y-3\/12:hover{
  top     : 25% !important;
  bottom     : 25% !important;
}

.hover\:inset-x-3\/12:hover{
  right     : 25% !important;
  left     : 25% !important;
}

.hover\:inset-y-4\/12:hover{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.hover\:inset-x-4\/12:hover{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.hover\:inset-y-5\/12:hover{
  top     : 41.666667% !important;
  bottom     : 41.666667% !important;
}

.hover\:inset-x-5\/12:hover{
  right     : 41.666667% !important;
  left     : 41.666667% !important;
}

.hover\:inset-y-6\/12:hover{
  top     : 50% !important;
  bottom     : 50% !important;
}

.hover\:inset-x-6\/12:hover{
  right     : 50% !important;
  left     : 50% !important;
}

.hover\:inset-y-7\/12:hover{
  top     : 58.333333% !important;
  bottom     : 58.333333% !important;
}

.hover\:inset-x-7\/12:hover{
  right     : 58.333333% !important;
  left     : 58.333333% !important;
}

.hover\:inset-y-8\/12:hover{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.hover\:inset-x-8\/12:hover{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.hover\:inset-y-9\/12:hover{
  top     : 75% !important;
  bottom     : 75% !important;
}

.hover\:inset-x-9\/12:hover{
  right     : 75% !important;
  left     : 75% !important;
}

.hover\:inset-y-10\/12:hover{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.hover\:inset-x-10\/12:hover{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.hover\:inset-y-11\/12:hover{
  top     : 91.666667% !important;
  bottom     : 91.666667% !important;
}

.hover\:inset-x-11\/12:hover{
  right     : 91.666667% !important;
  left     : 91.666667% !important;
}

.hover\:inset-y-full:hover{
  top     : 100% !important;
  bottom     : 100% !important;
}

.hover\:inset-x-full:hover{
  right     : 100% !important;
  left     : 100% !important;
}

.hover\:top-0:hover{
  top     : 0 !important;
}

.hover\:right-0:hover{
  right     : 0 !important;
}

.hover\:bottom-0:hover{
  bottom     : 0 !important;
}

.hover\:left-0:hover{
  left     : 0 !important;
}

.hover\:top-1:hover{
  top     : 0.25rem !important;
}

.hover\:right-1:hover{
  right     : 0.25rem !important;
}

.hover\:bottom-1:hover{
  bottom     : 0.25rem !important;
}

.hover\:left-1:hover{
  left     : 0.25rem !important;
}

.hover\:top-2:hover{
  top     : 0.5rem !important;
}

.hover\:right-2:hover{
  right     : 0.5rem !important;
}

.hover\:bottom-2:hover{
  bottom     : 0.5rem !important;
}

.hover\:left-2:hover{
  left     : 0.5rem !important;
}

.hover\:top-3:hover{
  top     : 0.75rem !important;
}

.hover\:right-3:hover{
  right     : 0.75rem !important;
}

.hover\:bottom-3:hover{
  bottom     : 0.75rem !important;
}

.hover\:left-3:hover{
  left     : 0.75rem !important;
}

.hover\:top-4:hover{
  top     : 1rem !important;
}

.hover\:right-4:hover{
  right     : 1rem !important;
}

.hover\:bottom-4:hover{
  bottom     : 1rem !important;
}

.hover\:left-4:hover{
  left     : 1rem !important;
}

.hover\:top-5:hover{
  top     : 1.25rem !important;
}

.hover\:right-5:hover{
  right     : 1.25rem !important;
}

.hover\:bottom-5:hover{
  bottom     : 1.25rem !important;
}

.hover\:left-5:hover{
  left     : 1.25rem !important;
}

.hover\:top-6:hover{
  top     : 1.5rem !important;
}

.hover\:right-6:hover{
  right     : 1.5rem !important;
}

.hover\:bottom-6:hover{
  bottom     : 1.5rem !important;
}

.hover\:left-6:hover{
  left     : 1.5rem !important;
}

.hover\:top-7:hover{
  top     : 1.75rem !important;
}

.hover\:right-7:hover{
  right     : 1.75rem !important;
}

.hover\:bottom-7:hover{
  bottom     : 1.75rem !important;
}

.hover\:left-7:hover{
  left     : 1.75rem !important;
}

.hover\:top-8:hover{
  top     : 2rem !important;
}

.hover\:right-8:hover{
  right     : 2rem !important;
}

.hover\:bottom-8:hover{
  bottom     : 2rem !important;
}

.hover\:left-8:hover{
  left     : 2rem !important;
}

.hover\:top-9:hover{
  top     : 2.25rem !important;
}

.hover\:right-9:hover{
  right     : 2.25rem !important;
}

.hover\:bottom-9:hover{
  bottom     : 2.25rem !important;
}

.hover\:left-9:hover{
  left     : 2.25rem !important;
}

.hover\:top-10:hover{
  top     : 2.5rem !important;
}

.hover\:right-10:hover{
  right     : 2.5rem !important;
}

.hover\:bottom-10:hover{
  bottom     : 2.5rem !important;
}

.hover\:left-10:hover{
  left     : 2.5rem !important;
}

.hover\:top-11:hover{
  top     : 2.75rem !important;
}

.hover\:right-11:hover{
  right     : 2.75rem !important;
}

.hover\:bottom-11:hover{
  bottom     : 2.75rem !important;
}

.hover\:left-11:hover{
  left     : 2.75rem !important;
}

.hover\:top-12:hover{
  top     : 3rem !important;
}

.hover\:right-12:hover{
  right     : 3rem !important;
}

.hover\:bottom-12:hover{
  bottom     : 3rem !important;
}

.hover\:left-12:hover{
  left     : 3rem !important;
}

.hover\:top-13:hover{
  top     : 3.25rem !important;
}

.hover\:right-13:hover{
  right     : 3.25rem !important;
}

.hover\:bottom-13:hover{
  bottom     : 3.25rem !important;
}

.hover\:left-13:hover{
  left     : 3.25rem !important;
}

.hover\:top-14:hover{
  top     : 3.5rem !important;
}

.hover\:right-14:hover{
  right     : 3.5rem !important;
}

.hover\:bottom-14:hover{
  bottom     : 3.5rem !important;
}

.hover\:left-14:hover{
  left     : 3.5rem !important;
}

.hover\:top-15:hover{
  top     : 3.75rem !important;
}

.hover\:right-15:hover{
  right     : 3.75rem !important;
}

.hover\:bottom-15:hover{
  bottom     : 3.75rem !important;
}

.hover\:left-15:hover{
  left     : 3.75rem !important;
}

.hover\:top-16:hover{
  top     : 4rem !important;
}

.hover\:right-16:hover{
  right     : 4rem !important;
}

.hover\:bottom-16:hover{
  bottom     : 4rem !important;
}

.hover\:left-16:hover{
  left     : 4rem !important;
}

.hover\:top-20:hover{
  top     : 5rem !important;
}

.hover\:right-20:hover{
  right     : 5rem !important;
}

.hover\:bottom-20:hover{
  bottom     : 5rem !important;
}

.hover\:left-20:hover{
  left     : 5rem !important;
}

.hover\:top-24:hover{
  top     : 6rem !important;
}

.hover\:right-24:hover{
  right     : 6rem !important;
}

.hover\:bottom-24:hover{
  bottom     : 6rem !important;
}

.hover\:left-24:hover{
  left     : 6rem !important;
}

.hover\:top-28:hover{
  top     : 7rem !important;
}

.hover\:right-28:hover{
  right     : 7rem !important;
}

.hover\:bottom-28:hover{
  bottom     : 7rem !important;
}

.hover\:left-28:hover{
  left     : 7rem !important;
}

.hover\:top-32:hover{
  top     : 8rem !important;
}

.hover\:right-32:hover{
  right     : 8rem !important;
}

.hover\:bottom-32:hover{
  bottom     : 8rem !important;
}

.hover\:left-32:hover{
  left     : 8rem !important;
}

.hover\:top-36:hover{
  top     : 9rem !important;
}

.hover\:right-36:hover{
  right     : 9rem !important;
}

.hover\:bottom-36:hover{
  bottom     : 9rem !important;
}

.hover\:left-36:hover{
  left     : 9rem !important;
}

.hover\:top-40:hover{
  top     : 10rem !important;
}

.hover\:right-40:hover{
  right     : 10rem !important;
}

.hover\:bottom-40:hover{
  bottom     : 10rem !important;
}

.hover\:left-40:hover{
  left     : 10rem !important;
}

.hover\:top-44:hover{
  top     : 11rem !important;
}

.hover\:right-44:hover{
  right     : 11rem !important;
}

.hover\:bottom-44:hover{
  bottom     : 11rem !important;
}

.hover\:left-44:hover{
  left     : 11rem !important;
}

.hover\:top-48:hover{
  top     : 12rem !important;
}

.hover\:right-48:hover{
  right     : 12rem !important;
}

.hover\:bottom-48:hover{
  bottom     : 12rem !important;
}

.hover\:left-48:hover{
  left     : 12rem !important;
}

.hover\:top-52:hover{
  top     : 13rem !important;
}

.hover\:right-52:hover{
  right     : 13rem !important;
}

.hover\:bottom-52:hover{
  bottom     : 13rem !important;
}

.hover\:left-52:hover{
  left     : 13rem !important;
}

.hover\:top-56:hover{
  top     : 14rem !important;
}

.hover\:right-56:hover{
  right     : 14rem !important;
}

.hover\:bottom-56:hover{
  bottom     : 14rem !important;
}

.hover\:left-56:hover{
  left     : 14rem !important;
}

.hover\:top-60:hover{
  top     : 15rem !important;
}

.hover\:right-60:hover{
  right     : 15rem !important;
}

.hover\:bottom-60:hover{
  bottom     : 15rem !important;
}

.hover\:left-60:hover{
  left     : 15rem !important;
}

.hover\:top-64:hover{
  top     : 16rem !important;
}

.hover\:right-64:hover{
  right     : 16rem !important;
}

.hover\:bottom-64:hover{
  bottom     : 16rem !important;
}

.hover\:left-64:hover{
  left     : 16rem !important;
}

.hover\:top-72:hover{
  top     : 18rem !important;
}

.hover\:right-72:hover{
  right     : 18rem !important;
}

.hover\:bottom-72:hover{
  bottom     : 18rem !important;
}

.hover\:left-72:hover{
  left     : 18rem !important;
}

.hover\:top-80:hover{
  top     : 20rem !important;
}

.hover\:right-80:hover{
  right     : 20rem !important;
}

.hover\:bottom-80:hover{
  bottom     : 20rem !important;
}

.hover\:left-80:hover{
  left     : 20rem !important;
}

.hover\:top-96:hover{
  top     : 24rem !important;
}

.hover\:right-96:hover{
  right     : 24rem !important;
}

.hover\:bottom-96:hover{
  bottom     : 24rem !important;
}

.hover\:left-96:hover{
  left     : 24rem !important;
}

.hover\:top-auto:hover{
  top     : auto !important;
}

.hover\:right-auto:hover{
  right     : auto !important;
}

.hover\:bottom-auto:hover{
  bottom     : auto !important;
}

.hover\:left-auto:hover{
  left     : auto !important;
}

.hover\:top-px:hover{
  top     : 1px !important;
}

.hover\:right-px:hover{
  right     : 1px !important;
}

.hover\:bottom-px:hover{
  bottom     : 1px !important;
}

.hover\:left-px:hover{
  left     : 1px !important;
}

.hover\:top-0\.5:hover{
  top     : 0.125rem !important;
}

.hover\:right-0\.5:hover{
  right     : 0.125rem !important;
}

.hover\:bottom-0\.5:hover{
  bottom     : 0.125rem !important;
}

.hover\:left-0\.5:hover{
  left     : 0.125rem !important;
}

.hover\:top-1\.5:hover{
  top     : 0.375rem !important;
}

.hover\:right-1\.5:hover{
  right     : 0.375rem !important;
}

.hover\:bottom-1\.5:hover{
  bottom     : 0.375rem !important;
}

.hover\:left-1\.5:hover{
  left     : 0.375rem !important;
}

.hover\:top-2\.5:hover{
  top     : 0.625rem !important;
}

.hover\:right-2\.5:hover{
  right     : 0.625rem !important;
}

.hover\:bottom-2\.5:hover{
  bottom     : 0.625rem !important;
}

.hover\:left-2\.5:hover{
  left     : 0.625rem !important;
}

.hover\:top-3\.5:hover{
  top     : 0.875rem !important;
}

.hover\:right-3\.5:hover{
  right     : 0.875rem !important;
}

.hover\:bottom-3\.5:hover{
  bottom     : 0.875rem !important;
}

.hover\:left-3\.5:hover{
  left     : 0.875rem !important;
}

.hover\:top-1\/2:hover{
  top     : 50% !important;
}

.hover\:right-1\/2:hover{
  right     : 50% !important;
}

.hover\:bottom-1\/2:hover{
  bottom     : 50% !important;
}

.hover\:left-1\/2:hover{
  left     : 50% !important;
}

.hover\:top-1\/3:hover{
  top     : 33.333333% !important;
}

.hover\:right-1\/3:hover{
  right     : 33.333333% !important;
}

.hover\:bottom-1\/3:hover{
  bottom     : 33.333333% !important;
}

.hover\:left-1\/3:hover{
  left     : 33.333333% !important;
}

.hover\:top-2\/3:hover{
  top     : 66.666667% !important;
}

.hover\:right-2\/3:hover{
  right     : 66.666667% !important;
}

.hover\:bottom-2\/3:hover{
  bottom     : 66.666667% !important;
}

.hover\:left-2\/3:hover{
  left     : 66.666667% !important;
}

.hover\:top-1\/4:hover{
  top     : 25% !important;
}

.hover\:right-1\/4:hover{
  right     : 25% !important;
}

.hover\:bottom-1\/4:hover{
  bottom     : 25% !important;
}

.hover\:left-1\/4:hover{
  left     : 25% !important;
}

.hover\:top-2\/4:hover{
  top     : 50% !important;
}

.hover\:right-2\/4:hover{
  right     : 50% !important;
}

.hover\:bottom-2\/4:hover{
  bottom     : 50% !important;
}

.hover\:left-2\/4:hover{
  left     : 50% !important;
}

.hover\:top-3\/4:hover{
  top     : 75% !important;
}

.hover\:right-3\/4:hover{
  right     : 75% !important;
}

.hover\:bottom-3\/4:hover{
  bottom     : 75% !important;
}

.hover\:left-3\/4:hover{
  left     : 75% !important;
}

.hover\:top-1\/5:hover{
  top     : 20% !important;
}

.hover\:right-1\/5:hover{
  right     : 20% !important;
}

.hover\:bottom-1\/5:hover{
  bottom     : 20% !important;
}

.hover\:left-1\/5:hover{
  left     : 20% !important;
}

.hover\:top-2\/5:hover{
  top     : 40% !important;
}

.hover\:right-2\/5:hover{
  right     : 40% !important;
}

.hover\:bottom-2\/5:hover{
  bottom     : 40% !important;
}

.hover\:left-2\/5:hover{
  left     : 40% !important;
}

.hover\:top-3\/5:hover{
  top     : 60% !important;
}

.hover\:right-3\/5:hover{
  right     : 60% !important;
}

.hover\:bottom-3\/5:hover{
  bottom     : 60% !important;
}

.hover\:left-3\/5:hover{
  left     : 60% !important;
}

.hover\:top-4\/5:hover{
  top     : 80% !important;
}

.hover\:right-4\/5:hover{
  right     : 80% !important;
}

.hover\:bottom-4\/5:hover{
  bottom     : 80% !important;
}

.hover\:left-4\/5:hover{
  left     : 80% !important;
}

.hover\:top-1\/6:hover{
  top     : 16.666667% !important;
}

.hover\:right-1\/6:hover{
  right     : 16.666667% !important;
}

.hover\:bottom-1\/6:hover{
  bottom     : 16.666667% !important;
}

.hover\:left-1\/6:hover{
  left     : 16.666667% !important;
}

.hover\:top-2\/6:hover{
  top     : 33.333333% !important;
}

.hover\:right-2\/6:hover{
  right     : 33.333333% !important;
}

.hover\:bottom-2\/6:hover{
  bottom     : 33.333333% !important;
}

.hover\:left-2\/6:hover{
  left     : 33.333333% !important;
}

.hover\:top-3\/6:hover{
  top     : 50% !important;
}

.hover\:right-3\/6:hover{
  right     : 50% !important;
}

.hover\:bottom-3\/6:hover{
  bottom     : 50% !important;
}

.hover\:left-3\/6:hover{
  left     : 50% !important;
}

.hover\:top-4\/6:hover{
  top     : 66.666667% !important;
}

.hover\:right-4\/6:hover{
  right     : 66.666667% !important;
}

.hover\:bottom-4\/6:hover{
  bottom     : 66.666667% !important;
}

.hover\:left-4\/6:hover{
  left     : 66.666667% !important;
}

.hover\:top-5\/6:hover{
  top     : 83.333333% !important;
}

.hover\:right-5\/6:hover{
  right     : 83.333333% !important;
}

.hover\:bottom-5\/6:hover{
  bottom     : 83.333333% !important;
}

.hover\:left-5\/6:hover{
  left     : 83.333333% !important;
}

.hover\:top-1\/12:hover{
  top     : 8.333333% !important;
}

.hover\:right-1\/12:hover{
  right     : 8.333333% !important;
}

.hover\:bottom-1\/12:hover{
  bottom     : 8.333333% !important;
}

.hover\:left-1\/12:hover{
  left     : 8.333333% !important;
}

.hover\:top-2\/12:hover{
  top     : 16.666667% !important;
}

.hover\:right-2\/12:hover{
  right     : 16.666667% !important;
}

.hover\:bottom-2\/12:hover{
  bottom     : 16.666667% !important;
}

.hover\:left-2\/12:hover{
  left     : 16.666667% !important;
}

.hover\:top-3\/12:hover{
  top     : 25% !important;
}

.hover\:right-3\/12:hover{
  right     : 25% !important;
}

.hover\:bottom-3\/12:hover{
  bottom     : 25% !important;
}

.hover\:left-3\/12:hover{
  left     : 25% !important;
}

.hover\:top-4\/12:hover{
  top     : 33.333333% !important;
}

.hover\:right-4\/12:hover{
  right     : 33.333333% !important;
}

.hover\:bottom-4\/12:hover{
  bottom     : 33.333333% !important;
}

.hover\:left-4\/12:hover{
  left     : 33.333333% !important;
}

.hover\:top-5\/12:hover{
  top     : 41.666667% !important;
}

.hover\:right-5\/12:hover{
  right     : 41.666667% !important;
}

.hover\:bottom-5\/12:hover{
  bottom     : 41.666667% !important;
}

.hover\:left-5\/12:hover{
  left     : 41.666667% !important;
}

.hover\:top-6\/12:hover{
  top     : 50% !important;
}

.hover\:right-6\/12:hover{
  right     : 50% !important;
}

.hover\:bottom-6\/12:hover{
  bottom     : 50% !important;
}

.hover\:left-6\/12:hover{
  left     : 50% !important;
}

.hover\:top-7\/12:hover{
  top     : 58.333333% !important;
}

.hover\:right-7\/12:hover{
  right     : 58.333333% !important;
}

.hover\:bottom-7\/12:hover{
  bottom     : 58.333333% !important;
}

.hover\:left-7\/12:hover{
  left     : 58.333333% !important;
}

.hover\:top-8\/12:hover{
  top     : 66.666667% !important;
}

.hover\:right-8\/12:hover{
  right     : 66.666667% !important;
}

.hover\:bottom-8\/12:hover{
  bottom     : 66.666667% !important;
}

.hover\:left-8\/12:hover{
  left     : 66.666667% !important;
}

.hover\:top-9\/12:hover{
  top     : 75% !important;
}

.hover\:right-9\/12:hover{
  right     : 75% !important;
}

.hover\:bottom-9\/12:hover{
  bottom     : 75% !important;
}

.hover\:left-9\/12:hover{
  left     : 75% !important;
}

.hover\:top-10\/12:hover{
  top     : 83.333333% !important;
}

.hover\:right-10\/12:hover{
  right     : 83.333333% !important;
}

.hover\:bottom-10\/12:hover{
  bottom     : 83.333333% !important;
}

.hover\:left-10\/12:hover{
  left     : 83.333333% !important;
}

.hover\:top-11\/12:hover{
  top     : 91.666667% !important;
}

.hover\:right-11\/12:hover{
  right     : 91.666667% !important;
}

.hover\:bottom-11\/12:hover{
  bottom     : 91.666667% !important;
}

.hover\:left-11\/12:hover{
  left     : 91.666667% !important;
}

.hover\:top-full:hover{
  top     : 100% !important;
}

.hover\:right-full:hover{
  right     : 100% !important;
}

.hover\:bottom-full:hover{
  bottom     : 100% !important;
}

.hover\:left-full:hover{
  left     : 100% !important;
}

.focus\:inset-0:focus{
  top     : 0 !important;
  right     : 0 !important;
  bottom     : 0 !important;
  left     : 0 !important;
}

.focus\:inset-1:focus{
  top     : 0.25rem !important;
  right     : 0.25rem !important;
  bottom     : 0.25rem !important;
  left     : 0.25rem !important;
}

.focus\:inset-2:focus{
  top     : 0.5rem !important;
  right     : 0.5rem !important;
  bottom     : 0.5rem !important;
  left     : 0.5rem !important;
}

.focus\:inset-3:focus{
  top     : 0.75rem !important;
  right     : 0.75rem !important;
  bottom     : 0.75rem !important;
  left     : 0.75rem !important;
}

.focus\:inset-4:focus{
  top     : 1rem !important;
  right     : 1rem !important;
  bottom     : 1rem !important;
  left     : 1rem !important;
}

.focus\:inset-5:focus{
  top     : 1.25rem !important;
  right     : 1.25rem !important;
  bottom     : 1.25rem !important;
  left     : 1.25rem !important;
}

.focus\:inset-6:focus{
  top     : 1.5rem !important;
  right     : 1.5rem !important;
  bottom     : 1.5rem !important;
  left     : 1.5rem !important;
}

.focus\:inset-7:focus{
  top     : 1.75rem !important;
  right     : 1.75rem !important;
  bottom     : 1.75rem !important;
  left     : 1.75rem !important;
}

.focus\:inset-8:focus{
  top     : 2rem !important;
  right     : 2rem !important;
  bottom     : 2rem !important;
  left     : 2rem !important;
}

.focus\:inset-9:focus{
  top     : 2.25rem !important;
  right     : 2.25rem !important;
  bottom     : 2.25rem !important;
  left     : 2.25rem !important;
}

.focus\:inset-10:focus{
  top     : 2.5rem !important;
  right     : 2.5rem !important;
  bottom     : 2.5rem !important;
  left     : 2.5rem !important;
}

.focus\:inset-11:focus{
  top     : 2.75rem !important;
  right     : 2.75rem !important;
  bottom     : 2.75rem !important;
  left     : 2.75rem !important;
}

.focus\:inset-12:focus{
  top     : 3rem !important;
  right     : 3rem !important;
  bottom     : 3rem !important;
  left     : 3rem !important;
}

.focus\:inset-13:focus{
  top     : 3.25rem !important;
  right     : 3.25rem !important;
  bottom     : 3.25rem !important;
  left     : 3.25rem !important;
}

.focus\:inset-14:focus{
  top     : 3.5rem !important;
  right     : 3.5rem !important;
  bottom     : 3.5rem !important;
  left     : 3.5rem !important;
}

.focus\:inset-15:focus{
  top     : 3.75rem !important;
  right     : 3.75rem !important;
  bottom     : 3.75rem !important;
  left     : 3.75rem !important;
}

.focus\:inset-16:focus{
  top     : 4rem !important;
  right     : 4rem !important;
  bottom     : 4rem !important;
  left     : 4rem !important;
}

.focus\:inset-20:focus{
  top     : 5rem !important;
  right     : 5rem !important;
  bottom     : 5rem !important;
  left     : 5rem !important;
}

.focus\:inset-24:focus{
  top     : 6rem !important;
  right     : 6rem !important;
  bottom     : 6rem !important;
  left     : 6rem !important;
}

.focus\:inset-28:focus{
  top     : 7rem !important;
  right     : 7rem !important;
  bottom     : 7rem !important;
  left     : 7rem !important;
}

.focus\:inset-32:focus{
  top     : 8rem !important;
  right     : 8rem !important;
  bottom     : 8rem !important;
  left     : 8rem !important;
}

.focus\:inset-36:focus{
  top     : 9rem !important;
  right     : 9rem !important;
  bottom     : 9rem !important;
  left     : 9rem !important;
}

.focus\:inset-40:focus{
  top     : 10rem !important;
  right     : 10rem !important;
  bottom     : 10rem !important;
  left     : 10rem !important;
}

.focus\:inset-44:focus{
  top     : 11rem !important;
  right     : 11rem !important;
  bottom     : 11rem !important;
  left     : 11rem !important;
}

.focus\:inset-48:focus{
  top     : 12rem !important;
  right     : 12rem !important;
  bottom     : 12rem !important;
  left     : 12rem !important;
}

.focus\:inset-52:focus{
  top     : 13rem !important;
  right     : 13rem !important;
  bottom     : 13rem !important;
  left     : 13rem !important;
}

.focus\:inset-56:focus{
  top     : 14rem !important;
  right     : 14rem !important;
  bottom     : 14rem !important;
  left     : 14rem !important;
}

.focus\:inset-60:focus{
  top     : 15rem !important;
  right     : 15rem !important;
  bottom     : 15rem !important;
  left     : 15rem !important;
}

.focus\:inset-64:focus{
  top     : 16rem !important;
  right     : 16rem !important;
  bottom     : 16rem !important;
  left     : 16rem !important;
}

.focus\:inset-72:focus{
  top     : 18rem !important;
  right     : 18rem !important;
  bottom     : 18rem !important;
  left     : 18rem !important;
}

.focus\:inset-80:focus{
  top     : 20rem !important;
  right     : 20rem !important;
  bottom     : 20rem !important;
  left     : 20rem !important;
}

.focus\:inset-96:focus{
  top     : 24rem !important;
  right     : 24rem !important;
  bottom     : 24rem !important;
  left     : 24rem !important;
}

.focus\:inset-auto:focus{
  top     : auto !important;
  right     : auto !important;
  bottom     : auto !important;
  left     : auto !important;
}

.focus\:inset-px:focus{
  top     : 1px !important;
  right     : 1px !important;
  bottom     : 1px !important;
  left     : 1px !important;
}

.focus\:inset-0\.5:focus{
  top     : 0.125rem !important;
  right     : 0.125rem !important;
  bottom     : 0.125rem !important;
  left     : 0.125rem !important;
}

.focus\:inset-1\.5:focus{
  top     : 0.375rem !important;
  right     : 0.375rem !important;
  bottom     : 0.375rem !important;
  left     : 0.375rem !important;
}

.focus\:inset-2\.5:focus{
  top     : 0.625rem !important;
  right     : 0.625rem !important;
  bottom     : 0.625rem !important;
  left     : 0.625rem !important;
}

.focus\:inset-3\.5:focus{
  top     : 0.875rem !important;
  right     : 0.875rem !important;
  bottom     : 0.875rem !important;
  left     : 0.875rem !important;
}

.focus\:inset-1\/2:focus{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-1\/3:focus{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-2\/3:focus{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-1\/4:focus{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.focus\:inset-2\/4:focus{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-3\/4:focus{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.focus\:inset-1\/5:focus{
  top     : 20% !important;
  right     : 20% !important;
  bottom     : 20% !important;
  left     : 20% !important;
}

.focus\:inset-2\/5:focus{
  top     : 40% !important;
  right     : 40% !important;
  bottom     : 40% !important;
  left     : 40% !important;
}

.focus\:inset-3\/5:focus{
  top     : 60% !important;
  right     : 60% !important;
  bottom     : 60% !important;
  left     : 60% !important;
}

.focus\:inset-4\/5:focus{
  top     : 80% !important;
  right     : 80% !important;
  bottom     : 80% !important;
  left     : 80% !important;
}

.focus\:inset-1\/6:focus{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.focus\:inset-2\/6:focus{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-3\/6:focus{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-4\/6:focus{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-5\/6:focus{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.focus\:inset-1\/12:focus{
  top     : 8.333333% !important;
  right     : 8.333333% !important;
  bottom     : 8.333333% !important;
  left     : 8.333333% !important;
}

.focus\:inset-2\/12:focus{
  top     : 16.666667% !important;
  right     : 16.666667% !important;
  bottom     : 16.666667% !important;
  left     : 16.666667% !important;
}

.focus\:inset-3\/12:focus{
  top     : 25% !important;
  right     : 25% !important;
  bottom     : 25% !important;
  left     : 25% !important;
}

.focus\:inset-4\/12:focus{
  top     : 33.333333% !important;
  right     : 33.333333% !important;
  bottom     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-5\/12:focus{
  top     : 41.666667% !important;
  right     : 41.666667% !important;
  bottom     : 41.666667% !important;
  left     : 41.666667% !important;
}

.focus\:inset-6\/12:focus{
  top     : 50% !important;
  right     : 50% !important;
  bottom     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-7\/12:focus{
  top     : 58.333333% !important;
  right     : 58.333333% !important;
  bottom     : 58.333333% !important;
  left     : 58.333333% !important;
}

.focus\:inset-8\/12:focus{
  top     : 66.666667% !important;
  right     : 66.666667% !important;
  bottom     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-9\/12:focus{
  top     : 75% !important;
  right     : 75% !important;
  bottom     : 75% !important;
  left     : 75% !important;
}

.focus\:inset-10\/12:focus{
  top     : 83.333333% !important;
  right     : 83.333333% !important;
  bottom     : 83.333333% !important;
  left     : 83.333333% !important;
}

.focus\:inset-11\/12:focus{
  top     : 91.666667% !important;
  right     : 91.666667% !important;
  bottom     : 91.666667% !important;
  left     : 91.666667% !important;
}

.focus\:inset-full:focus{
  top     : 100% !important;
  right     : 100% !important;
  bottom     : 100% !important;
  left     : 100% !important;
}

.focus\:inset-y-0:focus{
  top     : 0 !important;
  bottom     : 0 !important;
}

.focus\:inset-x-0:focus{
  right     : 0 !important;
  left     : 0 !important;
}

.focus\:inset-y-1:focus{
  top     : 0.25rem !important;
  bottom     : 0.25rem !important;
}

.focus\:inset-x-1:focus{
  right     : 0.25rem !important;
  left     : 0.25rem !important;
}

.focus\:inset-y-2:focus{
  top     : 0.5rem !important;
  bottom     : 0.5rem !important;
}

.focus\:inset-x-2:focus{
  right     : 0.5rem !important;
  left     : 0.5rem !important;
}

.focus\:inset-y-3:focus{
  top     : 0.75rem !important;
  bottom     : 0.75rem !important;
}

.focus\:inset-x-3:focus{
  right     : 0.75rem !important;
  left     : 0.75rem !important;
}

.focus\:inset-y-4:focus{
  top     : 1rem !important;
  bottom     : 1rem !important;
}

.focus\:inset-x-4:focus{
  right     : 1rem !important;
  left     : 1rem !important;
}

.focus\:inset-y-5:focus{
  top     : 1.25rem !important;
  bottom     : 1.25rem !important;
}

.focus\:inset-x-5:focus{
  right     : 1.25rem !important;
  left     : 1.25rem !important;
}

.focus\:inset-y-6:focus{
  top     : 1.5rem !important;
  bottom     : 1.5rem !important;
}

.focus\:inset-x-6:focus{
  right     : 1.5rem !important;
  left     : 1.5rem !important;
}

.focus\:inset-y-7:focus{
  top     : 1.75rem !important;
  bottom     : 1.75rem !important;
}

.focus\:inset-x-7:focus{
  right     : 1.75rem !important;
  left     : 1.75rem !important;
}

.focus\:inset-y-8:focus{
  top     : 2rem !important;
  bottom     : 2rem !important;
}

.focus\:inset-x-8:focus{
  right     : 2rem !important;
  left     : 2rem !important;
}

.focus\:inset-y-9:focus{
  top     : 2.25rem !important;
  bottom     : 2.25rem !important;
}

.focus\:inset-x-9:focus{
  right     : 2.25rem !important;
  left     : 2.25rem !important;
}

.focus\:inset-y-10:focus{
  top     : 2.5rem !important;
  bottom     : 2.5rem !important;
}

.focus\:inset-x-10:focus{
  right     : 2.5rem !important;
  left     : 2.5rem !important;
}

.focus\:inset-y-11:focus{
  top     : 2.75rem !important;
  bottom     : 2.75rem !important;
}

.focus\:inset-x-11:focus{
  right     : 2.75rem !important;
  left     : 2.75rem !important;
}

.focus\:inset-y-12:focus{
  top     : 3rem !important;
  bottom     : 3rem !important;
}

.focus\:inset-x-12:focus{
  right     : 3rem !important;
  left     : 3rem !important;
}

.focus\:inset-y-13:focus{
  top     : 3.25rem !important;
  bottom     : 3.25rem !important;
}

.focus\:inset-x-13:focus{
  right     : 3.25rem !important;
  left     : 3.25rem !important;
}

.focus\:inset-y-14:focus{
  top     : 3.5rem !important;
  bottom     : 3.5rem !important;
}

.focus\:inset-x-14:focus{
  right     : 3.5rem !important;
  left     : 3.5rem !important;
}

.focus\:inset-y-15:focus{
  top     : 3.75rem !important;
  bottom     : 3.75rem !important;
}

.focus\:inset-x-15:focus{
  right     : 3.75rem !important;
  left     : 3.75rem !important;
}

.focus\:inset-y-16:focus{
  top     : 4rem !important;
  bottom     : 4rem !important;
}

.focus\:inset-x-16:focus{
  right     : 4rem !important;
  left     : 4rem !important;
}

.focus\:inset-y-20:focus{
  top     : 5rem !important;
  bottom     : 5rem !important;
}

.focus\:inset-x-20:focus{
  right     : 5rem !important;
  left     : 5rem !important;
}

.focus\:inset-y-24:focus{
  top     : 6rem !important;
  bottom     : 6rem !important;
}

.focus\:inset-x-24:focus{
  right     : 6rem !important;
  left     : 6rem !important;
}

.focus\:inset-y-28:focus{
  top     : 7rem !important;
  bottom     : 7rem !important;
}

.focus\:inset-x-28:focus{
  right     : 7rem !important;
  left     : 7rem !important;
}

.focus\:inset-y-32:focus{
  top     : 8rem !important;
  bottom     : 8rem !important;
}

.focus\:inset-x-32:focus{
  right     : 8rem !important;
  left     : 8rem !important;
}

.focus\:inset-y-36:focus{
  top     : 9rem !important;
  bottom     : 9rem !important;
}

.focus\:inset-x-36:focus{
  right     : 9rem !important;
  left     : 9rem !important;
}

.focus\:inset-y-40:focus{
  top     : 10rem !important;
  bottom     : 10rem !important;
}

.focus\:inset-x-40:focus{
  right     : 10rem !important;
  left     : 10rem !important;
}

.focus\:inset-y-44:focus{
  top     : 11rem !important;
  bottom     : 11rem !important;
}

.focus\:inset-x-44:focus{
  right     : 11rem !important;
  left     : 11rem !important;
}

.focus\:inset-y-48:focus{
  top     : 12rem !important;
  bottom     : 12rem !important;
}

.focus\:inset-x-48:focus{
  right     : 12rem !important;
  left     : 12rem !important;
}

.focus\:inset-y-52:focus{
  top     : 13rem !important;
  bottom     : 13rem !important;
}

.focus\:inset-x-52:focus{
  right     : 13rem !important;
  left     : 13rem !important;
}

.focus\:inset-y-56:focus{
  top     : 14rem !important;
  bottom     : 14rem !important;
}

.focus\:inset-x-56:focus{
  right     : 14rem !important;
  left     : 14rem !important;
}

.focus\:inset-y-60:focus{
  top     : 15rem !important;
  bottom     : 15rem !important;
}

.focus\:inset-x-60:focus{
  right     : 15rem !important;
  left     : 15rem !important;
}

.focus\:inset-y-64:focus{
  top     : 16rem !important;
  bottom     : 16rem !important;
}

.focus\:inset-x-64:focus{
  right     : 16rem !important;
  left     : 16rem !important;
}

.focus\:inset-y-72:focus{
  top     : 18rem !important;
  bottom     : 18rem !important;
}

.focus\:inset-x-72:focus{
  right     : 18rem !important;
  left     : 18rem !important;
}

.focus\:inset-y-80:focus{
  top     : 20rem !important;
  bottom     : 20rem !important;
}

.focus\:inset-x-80:focus{
  right     : 20rem !important;
  left     : 20rem !important;
}

.focus\:inset-y-96:focus{
  top     : 24rem !important;
  bottom     : 24rem !important;
}

.focus\:inset-x-96:focus{
  right     : 24rem !important;
  left     : 24rem !important;
}

.focus\:inset-y-auto:focus{
  top     : auto !important;
  bottom     : auto !important;
}

.focus\:inset-x-auto:focus{
  right     : auto !important;
  left     : auto !important;
}

.focus\:inset-y-px:focus{
  top     : 1px !important;
  bottom     : 1px !important;
}

.focus\:inset-x-px:focus{
  right     : 1px !important;
  left     : 1px !important;
}

.focus\:inset-y-0\.5:focus{
  top     : 0.125rem !important;
  bottom     : 0.125rem !important;
}

.focus\:inset-x-0\.5:focus{
  right     : 0.125rem !important;
  left     : 0.125rem !important;
}

.focus\:inset-y-1\.5:focus{
  top     : 0.375rem !important;
  bottom     : 0.375rem !important;
}

.focus\:inset-x-1\.5:focus{
  right     : 0.375rem !important;
  left     : 0.375rem !important;
}

.focus\:inset-y-2\.5:focus{
  top     : 0.625rem !important;
  bottom     : 0.625rem !important;
}

.focus\:inset-x-2\.5:focus{
  right     : 0.625rem !important;
  left     : 0.625rem !important;
}

.focus\:inset-y-3\.5:focus{
  top     : 0.875rem !important;
  bottom     : 0.875rem !important;
}

.focus\:inset-x-3\.5:focus{
  right     : 0.875rem !important;
  left     : 0.875rem !important;
}

.focus\:inset-y-1\/2:focus{
  top     : 50% !important;
  bottom     : 50% !important;
}

.focus\:inset-x-1\/2:focus{
  right     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-y-1\/3:focus{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.focus\:inset-x-1\/3:focus{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-y-2\/3:focus{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.focus\:inset-x-2\/3:focus{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-y-1\/4:focus{
  top     : 25% !important;
  bottom     : 25% !important;
}

.focus\:inset-x-1\/4:focus{
  right     : 25% !important;
  left     : 25% !important;
}

.focus\:inset-y-2\/4:focus{
  top     : 50% !important;
  bottom     : 50% !important;
}

.focus\:inset-x-2\/4:focus{
  right     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-y-3\/4:focus{
  top     : 75% !important;
  bottom     : 75% !important;
}

.focus\:inset-x-3\/4:focus{
  right     : 75% !important;
  left     : 75% !important;
}

.focus\:inset-y-1\/5:focus{
  top     : 20% !important;
  bottom     : 20% !important;
}

.focus\:inset-x-1\/5:focus{
  right     : 20% !important;
  left     : 20% !important;
}

.focus\:inset-y-2\/5:focus{
  top     : 40% !important;
  bottom     : 40% !important;
}

.focus\:inset-x-2\/5:focus{
  right     : 40% !important;
  left     : 40% !important;
}

.focus\:inset-y-3\/5:focus{
  top     : 60% !important;
  bottom     : 60% !important;
}

.focus\:inset-x-3\/5:focus{
  right     : 60% !important;
  left     : 60% !important;
}

.focus\:inset-y-4\/5:focus{
  top     : 80% !important;
  bottom     : 80% !important;
}

.focus\:inset-x-4\/5:focus{
  right     : 80% !important;
  left     : 80% !important;
}

.focus\:inset-y-1\/6:focus{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.focus\:inset-x-1\/6:focus{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.focus\:inset-y-2\/6:focus{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.focus\:inset-x-2\/6:focus{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-y-3\/6:focus{
  top     : 50% !important;
  bottom     : 50% !important;
}

.focus\:inset-x-3\/6:focus{
  right     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-y-4\/6:focus{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.focus\:inset-x-4\/6:focus{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-y-5\/6:focus{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.focus\:inset-x-5\/6:focus{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.focus\:inset-y-1\/12:focus{
  top     : 8.333333% !important;
  bottom     : 8.333333% !important;
}

.focus\:inset-x-1\/12:focus{
  right     : 8.333333% !important;
  left     : 8.333333% !important;
}

.focus\:inset-y-2\/12:focus{
  top     : 16.666667% !important;
  bottom     : 16.666667% !important;
}

.focus\:inset-x-2\/12:focus{
  right     : 16.666667% !important;
  left     : 16.666667% !important;
}

.focus\:inset-y-3\/12:focus{
  top     : 25% !important;
  bottom     : 25% !important;
}

.focus\:inset-x-3\/12:focus{
  right     : 25% !important;
  left     : 25% !important;
}

.focus\:inset-y-4\/12:focus{
  top     : 33.333333% !important;
  bottom     : 33.333333% !important;
}

.focus\:inset-x-4\/12:focus{
  right     : 33.333333% !important;
  left     : 33.333333% !important;
}

.focus\:inset-y-5\/12:focus{
  top     : 41.666667% !important;
  bottom     : 41.666667% !important;
}

.focus\:inset-x-5\/12:focus{
  right     : 41.666667% !important;
  left     : 41.666667% !important;
}

.focus\:inset-y-6\/12:focus{
  top     : 50% !important;
  bottom     : 50% !important;
}

.focus\:inset-x-6\/12:focus{
  right     : 50% !important;
  left     : 50% !important;
}

.focus\:inset-y-7\/12:focus{
  top     : 58.333333% !important;
  bottom     : 58.333333% !important;
}

.focus\:inset-x-7\/12:focus{
  right     : 58.333333% !important;
  left     : 58.333333% !important;
}

.focus\:inset-y-8\/12:focus{
  top     : 66.666667% !important;
  bottom     : 66.666667% !important;
}

.focus\:inset-x-8\/12:focus{
  right     : 66.666667% !important;
  left     : 66.666667% !important;
}

.focus\:inset-y-9\/12:focus{
  top     : 75% !important;
  bottom     : 75% !important;
}

.focus\:inset-x-9\/12:focus{
  right     : 75% !important;
  left     : 75% !important;
}

.focus\:inset-y-10\/12:focus{
  top     : 83.333333% !important;
  bottom     : 83.333333% !important;
}

.focus\:inset-x-10\/12:focus{
  right     : 83.333333% !important;
  left     : 83.333333% !important;
}

.focus\:inset-y-11\/12:focus{
  top     : 91.666667% !important;
  bottom     : 91.666667% !important;
}

.focus\:inset-x-11\/12:focus{
  right     : 91.666667% !important;
  left     : 91.666667% !important;
}

.focus\:inset-y-full:focus{
  top     : 100% !important;
  bottom     : 100% !important;
}

.focus\:inset-x-full:focus{
  right     : 100% !important;
  left     : 100% !important;
}

.focus\:top-0:focus{
  top     : 0 !important;
}

.focus\:right-0:focus{
  right     : 0 !important;
}

.focus\:bottom-0:focus{
  bottom     : 0 !important;
}

.focus\:left-0:focus{
  left     : 0 !important;
}

.focus\:top-1:focus{
  top     : 0.25rem !important;
}

.focus\:right-1:focus{
  right     : 0.25rem !important;
}

.focus\:bottom-1:focus{
  bottom     : 0.25rem !important;
}

.focus\:left-1:focus{
  left     : 0.25rem !important;
}

.focus\:top-2:focus{
  top     : 0.5rem !important;
}

.focus\:right-2:focus{
  right     : 0.5rem !important;
}

.focus\:bottom-2:focus{
  bottom     : 0.5rem !important;
}

.focus\:left-2:focus{
  left     : 0.5rem !important;
}

.focus\:top-3:focus{
  top     : 0.75rem !important;
}

.focus\:right-3:focus{
  right     : 0.75rem !important;
}

.focus\:bottom-3:focus{
  bottom     : 0.75rem !important;
}

.focus\:left-3:focus{
  left     : 0.75rem !important;
}

.focus\:top-4:focus{
  top     : 1rem !important;
}

.focus\:right-4:focus{
  right     : 1rem !important;
}

.focus\:bottom-4:focus{
  bottom     : 1rem !important;
}

.focus\:left-4:focus{
  left     : 1rem !important;
}

.focus\:top-5:focus{
  top     : 1.25rem !important;
}

.focus\:right-5:focus{
  right     : 1.25rem !important;
}

.focus\:bottom-5:focus{
  bottom     : 1.25rem !important;
}

.focus\:left-5:focus{
  left     : 1.25rem !important;
}

.focus\:top-6:focus{
  top     : 1.5rem !important;
}

.focus\:right-6:focus{
  right     : 1.5rem !important;
}

.focus\:bottom-6:focus{
  bottom     : 1.5rem !important;
}

.focus\:left-6:focus{
  left     : 1.5rem !important;
}

.focus\:top-7:focus{
  top     : 1.75rem !important;
}

.focus\:right-7:focus{
  right     : 1.75rem !important;
}

.focus\:bottom-7:focus{
  bottom     : 1.75rem !important;
}

.focus\:left-7:focus{
  left     : 1.75rem !important;
}

.focus\:top-8:focus{
  top     : 2rem !important;
}

.focus\:right-8:focus{
  right     : 2rem !important;
}

.focus\:bottom-8:focus{
  bottom     : 2rem !important;
}

.focus\:left-8:focus{
  left     : 2rem !important;
}

.focus\:top-9:focus{
  top     : 2.25rem !important;
}

.focus\:right-9:focus{
  right     : 2.25rem !important;
}

.focus\:bottom-9:focus{
  bottom     : 2.25rem !important;
}

.focus\:left-9:focus{
  left     : 2.25rem !important;
}

.focus\:top-10:focus{
  top     : 2.5rem !important;
}

.focus\:right-10:focus{
  right     : 2.5rem !important;
}

.focus\:bottom-10:focus{
  bottom     : 2.5rem !important;
}

.focus\:left-10:focus{
  left     : 2.5rem !important;
}

.focus\:top-11:focus{
  top     : 2.75rem !important;
}

.focus\:right-11:focus{
  right     : 2.75rem !important;
}

.focus\:bottom-11:focus{
  bottom     : 2.75rem !important;
}

.focus\:left-11:focus{
  left     : 2.75rem !important;
}

.focus\:top-12:focus{
  top     : 3rem !important;
}

.focus\:right-12:focus{
  right     : 3rem !important;
}

.focus\:bottom-12:focus{
  bottom     : 3rem !important;
}

.focus\:left-12:focus{
  left     : 3rem !important;
}

.focus\:top-13:focus{
  top     : 3.25rem !important;
}

.focus\:right-13:focus{
  right     : 3.25rem !important;
}

.focus\:bottom-13:focus{
  bottom     : 3.25rem !important;
}

.focus\:left-13:focus{
  left     : 3.25rem !important;
}

.focus\:top-14:focus{
  top     : 3.5rem !important;
}

.focus\:right-14:focus{
  right     : 3.5rem !important;
}

.focus\:bottom-14:focus{
  bottom     : 3.5rem !important;
}

.focus\:left-14:focus{
  left     : 3.5rem !important;
}

.focus\:top-15:focus{
  top     : 3.75rem !important;
}

.focus\:right-15:focus{
  right     : 3.75rem !important;
}

.focus\:bottom-15:focus{
  bottom     : 3.75rem !important;
}

.focus\:left-15:focus{
  left     : 3.75rem !important;
}

.focus\:top-16:focus{
  top     : 4rem !important;
}

.focus\:right-16:focus{
  right     : 4rem !important;
}

.focus\:bottom-16:focus{
  bottom     : 4rem !important;
}

.focus\:left-16:focus{
  left     : 4rem !important;
}

.focus\:top-20:focus{
  top     : 5rem !important;
}

.focus\:right-20:focus{
  right     : 5rem !important;
}

.focus\:bottom-20:focus{
  bottom     : 5rem !important;
}

.focus\:left-20:focus{
  left     : 5rem !important;
}

.focus\:top-24:focus{
  top     : 6rem !important;
}

.focus\:right-24:focus{
  right     : 6rem !important;
}

.focus\:bottom-24:focus{
  bottom     : 6rem !important;
}

.focus\:left-24:focus{
  left     : 6rem !important;
}

.focus\:top-28:focus{
  top     : 7rem !important;
}

.focus\:right-28:focus{
  right     : 7rem !important;
}

.focus\:bottom-28:focus{
  bottom     : 7rem !important;
}

.focus\:left-28:focus{
  left     : 7rem !important;
}

.focus\:top-32:focus{
  top     : 8rem !important;
}

.focus\:right-32:focus{
  right     : 8rem !important;
}

.focus\:bottom-32:focus{
  bottom     : 8rem !important;
}

.focus\:left-32:focus{
  left     : 8rem !important;
}

.focus\:top-36:focus{
  top     : 9rem !important;
}

.focus\:right-36:focus{
  right     : 9rem !important;
}

.focus\:bottom-36:focus{
  bottom     : 9rem !important;
}

.focus\:left-36:focus{
  left     : 9rem !important;
}

.focus\:top-40:focus{
  top     : 10rem !important;
}

.focus\:right-40:focus{
  right     : 10rem !important;
}

.focus\:bottom-40:focus{
  bottom     : 10rem !important;
}

.focus\:left-40:focus{
  left     : 10rem !important;
}

.focus\:top-44:focus{
  top     : 11rem !important;
}

.focus\:right-44:focus{
  right     : 11rem !important;
}

.focus\:bottom-44:focus{
  bottom     : 11rem !important;
}

.focus\:left-44:focus{
  left     : 11rem !important;
}

.focus\:top-48:focus{
  top     : 12rem !important;
}

.focus\:right-48:focus{
  right     : 12rem !important;
}

.focus\:bottom-48:focus{
  bottom     : 12rem !important;
}

.focus\:left-48:focus{
  left     : 12rem !important;
}

.focus\:top-52:focus{
  top     : 13rem !important;
}

.focus\:right-52:focus{
  right     : 13rem !important;
}

.focus\:bottom-52:focus{
  bottom     : 13rem !important;
}

.focus\:left-52:focus{
  left     : 13rem !important;
}

.focus\:top-56:focus{
  top     : 14rem !important;
}

.focus\:right-56:focus{
  right     : 14rem !important;
}

.focus\:bottom-56:focus{
  bottom     : 14rem !important;
}

.focus\:left-56:focus{
  left     : 14rem !important;
}

.focus\:top-60:focus{
  top     : 15rem !important;
}

.focus\:right-60:focus{
  right     : 15rem !important;
}

.focus\:bottom-60:focus{
  bottom     : 15rem !important;
}

.focus\:left-60:focus{
  left     : 15rem !important;
}

.focus\:top-64:focus{
  top     : 16rem !important;
}

.focus\:right-64:focus{
  right     : 16rem !important;
}

.focus\:bottom-64:focus{
  bottom     : 16rem !important;
}

.focus\:left-64:focus{
  left     : 16rem !important;
}

.focus\:top-72:focus{
  top     : 18rem !important;
}

.focus\:right-72:focus{
  right     : 18rem !important;
}

.focus\:bottom-72:focus{
  bottom     : 18rem !important;
}

.focus\:left-72:focus{
  left     : 18rem !important;
}

.focus\:top-80:focus{
  top     : 20rem !important;
}

.focus\:right-80:focus{
  right     : 20rem !important;
}

.focus\:bottom-80:focus{
  bottom     : 20rem !important;
}

.focus\:left-80:focus{
  left     : 20rem !important;
}

.focus\:top-96:focus{
  top     : 24rem !important;
}

.focus\:right-96:focus{
  right     : 24rem !important;
}

.focus\:bottom-96:focus{
  bottom     : 24rem !important;
}

.focus\:left-96:focus{
  left     : 24rem !important;
}

.focus\:top-auto:focus{
  top     : auto !important;
}

.focus\:right-auto:focus{
  right     : auto !important;
}

.focus\:bottom-auto:focus{
  bottom     : auto !important;
}

.focus\:left-auto:focus{
  left     : auto !important;
}

.focus\:top-px:focus{
  top     : 1px !important;
}

.focus\:right-px:focus{
  right     : 1px !important;
}

.focus\:bottom-px:focus{
  bottom     : 1px !important;
}

.focus\:left-px:focus{
  left     : 1px !important;
}

.focus\:top-0\.5:focus{
  top     : 0.125rem !important;
}

.focus\:right-0\.5:focus{
  right     : 0.125rem !important;
}

.focus\:bottom-0\.5:focus{
  bottom     : 0.125rem !important;
}

.focus\:left-0\.5:focus{
  left     : 0.125rem !important;
}

.focus\:top-1\.5:focus{
  top     : 0.375rem !important;
}

.focus\:right-1\.5:focus{
  right     : 0.375rem !important;
}

.focus\:bottom-1\.5:focus{
  bottom     : 0.375rem !important;
}

.focus\:left-1\.5:focus{
  left     : 0.375rem !important;
}

.focus\:top-2\.5:focus{
  top     : 0.625rem !important;
}

.focus\:right-2\.5:focus{
  right     : 0.625rem !important;
}

.focus\:bottom-2\.5:focus{
  bottom     : 0.625rem !important;
}

.focus\:left-2\.5:focus{
  left     : 0.625rem !important;
}

.focus\:top-3\.5:focus{
  top     : 0.875rem !important;
}

.focus\:right-3\.5:focus{
  right     : 0.875rem !important;
}

.focus\:bottom-3\.5:focus{
  bottom     : 0.875rem !important;
}

.focus\:left-3\.5:focus{
  left     : 0.875rem !important;
}

.focus\:top-1\/2:focus{
  top     : 50% !important;
}

.focus\:right-1\/2:focus{
  right     : 50% !important;
}

.focus\:bottom-1\/2:focus{
  bottom     : 50% !important;
}

.focus\:left-1\/2:focus{
  left     : 50% !important;
}

.focus\:top-1\/3:focus{
  top     : 33.333333% !important;
}

.focus\:right-1\/3:focus{
  right     : 33.333333% !important;
}

.focus\:bottom-1\/3:focus{
  bottom     : 33.333333% !important;
}

.focus\:left-1\/3:focus{
  left     : 33.333333% !important;
}

.focus\:top-2\/3:focus{
  top     : 66.666667% !important;
}

.focus\:right-2\/3:focus{
  right     : 66.666667% !important;
}

.focus\:bottom-2\/3:focus{
  bottom     : 66.666667% !important;
}

.focus\:left-2\/3:focus{
  left     : 66.666667% !important;
}

.focus\:top-1\/4:focus{
  top     : 25% !important;
}

.focus\:right-1\/4:focus{
  right     : 25% !important;
}

.focus\:bottom-1\/4:focus{
  bottom     : 25% !important;
}

.focus\:left-1\/4:focus{
  left     : 25% !important;
}

.focus\:top-2\/4:focus{
  top     : 50% !important;
}

.focus\:right-2\/4:focus{
  right     : 50% !important;
}

.focus\:bottom-2\/4:focus{
  bottom     : 50% !important;
}

.focus\:left-2\/4:focus{
  left     : 50% !important;
}

.focus\:top-3\/4:focus{
  top     : 75% !important;
}

.focus\:right-3\/4:focus{
  right     : 75% !important;
}

.focus\:bottom-3\/4:focus{
  bottom     : 75% !important;
}

.focus\:left-3\/4:focus{
  left     : 75% !important;
}

.focus\:top-1\/5:focus{
  top     : 20% !important;
}

.focus\:right-1\/5:focus{
  right     : 20% !important;
}

.focus\:bottom-1\/5:focus{
  bottom     : 20% !important;
}

.focus\:left-1\/5:focus{
  left     : 20% !important;
}

.focus\:top-2\/5:focus{
  top     : 40% !important;
}

.focus\:right-2\/5:focus{
  right     : 40% !important;
}

.focus\:bottom-2\/5:focus{
  bottom     : 40% !important;
}

.focus\:left-2\/5:focus{
  left     : 40% !important;
}

.focus\:top-3\/5:focus{
  top     : 60% !important;
}

.focus\:right-3\/5:focus{
  right     : 60% !important;
}

.focus\:bottom-3\/5:focus{
  bottom     : 60% !important;
}

.focus\:left-3\/5:focus{
  left     : 60% !important;
}

.focus\:top-4\/5:focus{
  top     : 80% !important;
}

.focus\:right-4\/5:focus{
  right     : 80% !important;
}

.focus\:bottom-4\/5:focus{
  bottom     : 80% !important;
}

.focus\:left-4\/5:focus{
  left     : 80% !important;
}

.focus\:top-1\/6:focus{
  top     : 16.666667% !important;
}

.focus\:right-1\/6:focus{
  right     : 16.666667% !important;
}

.focus\:bottom-1\/6:focus{
  bottom     : 16.666667% !important;
}

.focus\:left-1\/6:focus{
  left     : 16.666667% !important;
}

.focus\:top-2\/6:focus{
  top     : 33.333333% !important;
}

.focus\:right-2\/6:focus{
  right     : 33.333333% !important;
}

.focus\:bottom-2\/6:focus{
  bottom     : 33.333333% !important;
}

.focus\:left-2\/6:focus{
  left     : 33.333333% !important;
}

.focus\:top-3\/6:focus{
  top     : 50% !important;
}

.focus\:right-3\/6:focus{
  right     : 50% !important;
}

.focus\:bottom-3\/6:focus{
  bottom     : 50% !important;
}

.focus\:left-3\/6:focus{
  left     : 50% !important;
}

.focus\:top-4\/6:focus{
  top     : 66.666667% !important;
}

.focus\:right-4\/6:focus{
  right     : 66.666667% !important;
}

.focus\:bottom-4\/6:focus{
  bottom     : 66.666667% !important;
}

.focus\:left-4\/6:focus{
  left     : 66.666667% !important;
}

.focus\:top-5\/6:focus{
  top     : 83.333333% !important;
}

.focus\:right-5\/6:focus{
  right     : 83.333333% !important;
}

.focus\:bottom-5\/6:focus{
  bottom     : 83.333333% !important;
}

.focus\:left-5\/6:focus{
  left     : 83.333333% !important;
}

.focus\:top-1\/12:focus{
  top     : 8.333333% !important;
}

.focus\:right-1\/12:focus{
  right     : 8.333333% !important;
}

.focus\:bottom-1\/12:focus{
  bottom     : 8.333333% !important;
}

.focus\:left-1\/12:focus{
  left     : 8.333333% !important;
}

.focus\:top-2\/12:focus{
  top     : 16.666667% !important;
}

.focus\:right-2\/12:focus{
  right     : 16.666667% !important;
}

.focus\:bottom-2\/12:focus{
  bottom     : 16.666667% !important;
}

.focus\:left-2\/12:focus{
  left     : 16.666667% !important;
}

.focus\:top-3\/12:focus{
  top     : 25% !important;
}

.focus\:right-3\/12:focus{
  right     : 25% !important;
}

.focus\:bottom-3\/12:focus{
  bottom     : 25% !important;
}

.focus\:left-3\/12:focus{
  left     : 25% !important;
}

.focus\:top-4\/12:focus{
  top     : 33.333333% !important;
}

.focus\:right-4\/12:focus{
  right     : 33.333333% !important;
}

.focus\:bottom-4\/12:focus{
  bottom     : 33.333333% !important;
}

.focus\:left-4\/12:focus{
  left     : 33.333333% !important;
}

.focus\:top-5\/12:focus{
  top     : 41.666667% !important;
}

.focus\:right-5\/12:focus{
  right     : 41.666667% !important;
}

.focus\:bottom-5\/12:focus{
  bottom     : 41.666667% !important;
}

.focus\:left-5\/12:focus{
  left     : 41.666667% !important;
}

.focus\:top-6\/12:focus{
  top     : 50% !important;
}

.focus\:right-6\/12:focus{
  right     : 50% !important;
}

.focus\:bottom-6\/12:focus{
  bottom     : 50% !important;
}

.focus\:left-6\/12:focus{
  left     : 50% !important;
}

.focus\:top-7\/12:focus{
  top     : 58.333333% !important;
}

.focus\:right-7\/12:focus{
  right     : 58.333333% !important;
}

.focus\:bottom-7\/12:focus{
  bottom     : 58.333333% !important;
}

.focus\:left-7\/12:focus{
  left     : 58.333333% !important;
}

.focus\:top-8\/12:focus{
  top     : 66.666667% !important;
}

.focus\:right-8\/12:focus{
  right     : 66.666667% !important;
}

.focus\:bottom-8\/12:focus{
  bottom     : 66.666667% !important;
}

.focus\:left-8\/12:focus{
  left     : 66.666667% !important;
}

.focus\:top-9\/12:focus{
  top     : 75% !important;
}

.focus\:right-9\/12:focus{
  right     : 75% !important;
}

.focus\:bottom-9\/12:focus{
  bottom     : 75% !important;
}

.focus\:left-9\/12:focus{
  left     : 75% !important;
}

.focus\:top-10\/12:focus{
  top     : 83.333333% !important;
}

.focus\:right-10\/12:focus{
  right     : 83.333333% !important;
}

.focus\:bottom-10\/12:focus{
  bottom     : 83.333333% !important;
}

.focus\:left-10\/12:focus{
  left     : 83.333333% !important;
}

.focus\:top-11\/12:focus{
  top     : 91.666667% !important;
}

.focus\:right-11\/12:focus{
  right     : 91.666667% !important;
}

.focus\:bottom-11\/12:focus{
  bottom     : 91.666667% !important;
}

.focus\:left-11\/12:focus{
  left     : 91.666667% !important;
}

.focus\:top-full:focus{
  top     : 100% !important;
}

.focus\:right-full:focus{
  right     : 100% !important;
}

.focus\:bottom-full:focus{
  bottom     : 100% !important;
}

.focus\:left-full:focus{
  left     : 100% !important;
}

.resize-none{
  resize     : none !important;
}

.resize-y{
  resize     : vertical !important;
}

.resize-x{
  resize     : horizontal !important;
}

.resize{
  resize     : both !important;
}

.group:hover .group-hover\:resize-none{
  resize     : none !important;
}

.group:hover .group-hover\:resize-y{
  resize     : vertical !important;
}

.group:hover .group-hover\:resize-x{
  resize     : horizontal !important;
}

.group:hover .group-hover\:resize{
  resize     : both !important;
}

.hover\:resize-none:hover{
  resize     : none !important;
}

.hover\:resize-y:hover{
  resize     : vertical !important;
}

.hover\:resize-x:hover{
  resize     : horizontal !important;
}

.hover\:resize:hover{
  resize     : both !important;
}

.focus\:resize-none:focus{
  resize     : none !important;
}

.focus\:resize-y:focus{
  resize     : vertical !important;
}

.focus\:resize-x:focus{
  resize     : horizontal !important;
}

.focus\:resize:focus{
  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(118, 169, 250, 0.45) !important;
}

.shadow-none{
  box-shadow     : none !important;
}

.shadow-solid{
  box-shadow     : 0 0 0 2px currentColor !important;
}

.shadow-outline-gray{
  box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
}

.shadow-outline-blue{
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
}

.shadow-outline-teal{
  box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
}

.shadow-outline-green{
  box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
}

.shadow-outline-yellow{
  box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
}

.shadow-outline-orange{
  box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
}

.shadow-outline-red{
  box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
}

.shadow-outline-pink{
  box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
}

.shadow-outline-purple{
  box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}

.shadow-outline-indigo{
  box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
}

.group:hover .group-hover\:shadow-xs{
  box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.group:hover .group-hover\:shadow-sm{
  box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.group:hover .group-hover\:shadow{
  box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:shadow-2xl{
  box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.group:hover .group-hover\:shadow-inner{
  box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.group:hover .group-hover\:shadow-outline{
  box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
}

.group:hover .group-hover\:shadow-none{
  box-shadow     : none !important;
}

.group:hover .group-hover\:shadow-solid{
  box-shadow     : 0 0 0 2px currentColor !important;
}

.group:hover .group-hover\:shadow-outline-gray{
  box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-blue{
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-teal{
  box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-green{
  box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-yellow{
  box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-orange{
  box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-red{
  box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-pink{
  box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-purple{
  box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}

.group:hover .group-hover\:shadow-outline-indigo{
  box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
}

.hover\:shadow-xs:hover{
  box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.hover\:shadow-sm:hover{
  box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.hover\:shadow:hover{
  box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.hover\:shadow-md:hover{
  box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.hover\:shadow-lg:hover{
  box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.hover\:shadow-xl:hover{
  box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.hover\:shadow-2xl:hover{
  box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.hover\:shadow-inner:hover{
  box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.hover\:shadow-outline:hover{
  box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
}

.hover\:shadow-none:hover{
  box-shadow     : none !important;
}

.hover\:shadow-solid:hover{
  box-shadow     : 0 0 0 2px currentColor !important;
}

.hover\:shadow-outline-gray:hover{
  box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
}

.hover\:shadow-outline-blue:hover{
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
}

.hover\:shadow-outline-teal:hover{
  box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
}

.hover\:shadow-outline-green:hover{
  box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
}

.hover\:shadow-outline-yellow:hover{
  box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
}

.hover\:shadow-outline-orange:hover{
  box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
}

.hover\:shadow-outline-red:hover{
  box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
}

.hover\:shadow-outline-pink:hover{
  box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
}

.hover\:shadow-outline-purple:hover{
  box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}

.hover\:shadow-outline-indigo:hover{
  box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
}

.focus\:shadow-xs:focus{
  box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.focus\:shadow-sm:focus{
  box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.focus\:shadow:focus{
  box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.focus\:shadow-md:focus{
  box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.focus\:shadow-lg:focus{
  box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.focus\:shadow-xl:focus{
  box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.focus\:shadow-2xl:focus{
  box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.focus\:shadow-inner:focus{
  box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.focus\:shadow-outline:focus{
  box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
}

.focus\:shadow-none:focus{
  box-shadow     : none !important;
}

.focus\:shadow-solid:focus{
  box-shadow     : 0 0 0 2px currentColor !important;
}

.focus\:shadow-outline-gray:focus{
  box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
}

.focus\:shadow-outline-blue:focus{
  box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
}

.focus\:shadow-outline-teal:focus{
  box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
}

.focus\:shadow-outline-green:focus{
  box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
}

.focus\:shadow-outline-yellow:focus{
  box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
}

.focus\:shadow-outline-orange:focus{
  box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
}

.focus\:shadow-outline-red:focus{
  box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
}

.focus\:shadow-outline-pink:focus{
  box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
}

.focus\:shadow-outline-purple:focus{
  box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}

.focus\:shadow-outline-indigo:focus{
  box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
}

.fill-current{
  fill     : currentColor !important;
}

.group:hover .group-hover\:fill-current{
  fill     : currentColor !important;
}

.hover\:fill-current:hover{
  fill     : currentColor !important;
}

.focus\:fill-current:focus{
  fill     : currentColor !important;
}

.stroke-current{
  stroke     : currentColor !important;
}

.group:hover .group-hover\:stroke-current{
  stroke     : currentColor !important;
}

.hover\:stroke-current:hover{
  stroke     : currentColor !important;
}

.focus\:stroke-current:focus{
  stroke     : currentColor !important;
}

.stroke-0{
  stroke-width     : 0 !important;
}

.stroke-1{
  stroke-width     : 1 !important;
}

.stroke-2{
  stroke-width     : 2 !important;
}

.group:hover .group-hover\:stroke-0{
  stroke-width     : 0 !important;
}

.group:hover .group-hover\:stroke-1{
  stroke-width     : 1 !important;
}

.group:hover .group-hover\:stroke-2{
  stroke-width     : 2 !important;
}

.hover\:stroke-0:hover{
  stroke-width     : 0 !important;
}

.hover\:stroke-1:hover{
  stroke-width     : 1 !important;
}

.hover\:stroke-2:hover{
  stroke-width     : 2 !important;
}

.focus\:stroke-0:focus{
  stroke-width     : 0 !important;
}

.focus\:stroke-1:focus{
  stroke-width     : 1 !important;
}

.focus\:stroke-2:focus{
  stroke-width     : 2 !important;
}

.table-auto{
  table-layout     : auto !important;
}

.table-fixed{
  table-layout     : fixed !important;
}

.group:hover .group-hover\:table-auto{
  table-layout     : auto !important;
}

.group:hover .group-hover\:table-fixed{
  table-layout     : fixed !important;
}

.hover\:table-auto:hover{
  table-layout     : auto !important;
}

.hover\:table-fixed:hover{
  table-layout     : fixed !important;
}

.focus\:table-auto:focus{
  table-layout     : auto !important;
}

.focus\:table-fixed:focus{
  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;
}

.group:hover .group-hover\:text-left{
  text-align     : left !important;
}

.group:hover .group-hover\:text-center{
  text-align     : center !important;
}

.group:hover .group-hover\:text-right{
  text-align     : right !important;
}

.group:hover .group-hover\:text-justify{
  text-align     : justify !important;
}

.hover\:text-left:hover{
  text-align     : left !important;
}

.hover\:text-center:hover{
  text-align     : center !important;
}

.hover\:text-right:hover{
  text-align     : right !important;
}

.hover\:text-justify:hover{
  text-align     : justify !important;
}

.focus\:text-left:focus{
  text-align     : left !important;
}

.focus\:text-center:focus{
  text-align     : center !important;
}

.focus\:text-right:focus{
  text-align     : right !important;
}

.focus\:text-justify:focus{
  text-align     : justify !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-cool-gray-50{
  --text-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, 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-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-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     : #73230d !important;
  color     : rgba(115, 35, 13, 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-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-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-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-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-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-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-blue-brand{
  --text-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-transparent{
  color     : transparent !important;
}

.group:hover .group-hover\:text-white{
  --text-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-black{
  --text-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-50{
  --text-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-100{
  --text-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-200{
  --text-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-300{
  --text-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-400{
  --text-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-500{
  --text-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-600{
  --text-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-700{
  --text-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-800{
  --text-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-gray-900{
  --text-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-50{
  --text-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-100{
  --text-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-200{
  --text-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-300{
  --text-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-400{
  --text-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-500{
  --text-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-600{
  --text-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-700{
  --text-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-800{
  --text-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-cool-gray-900{
  --text-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-50{
  --text-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-100{
  --text-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-200{
  --text-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-300{
  --text-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-400{
  --text-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-500{
  --text-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-600{
  --text-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-700{
  --text-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-800{
  --text-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-red-900{
  --text-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-50{
  --text-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-100{
  --text-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-200{
  --text-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-300{
  --text-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-400{
  --text-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-500{
  --text-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-600{
  --text-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-700{
  --text-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-800{
  --text-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-orange-900{
  --text-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-50{
  --text-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-100{
  --text-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-200{
  --text-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-300{
  --text-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-400{
  --text-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-500{
  --text-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-600{
  --text-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-700{
  --text-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-800{
  --text-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-yellow-900{
  --text-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-50{
  --text-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-100{
  --text-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-200{
  --text-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-300{
  --text-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-400{
  --text-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-500{
  --text-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-600{
  --text-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-700{
  --text-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-800{
  --text-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-green-900{
  --text-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-50{
  --text-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-100{
  --text-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-200{
  --text-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-300{
  --text-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-400{
  --text-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-500{
  --text-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-600{
  --text-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-700{
  --text-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-800{
  --text-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-teal-900{
  --text-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-50{
  --text-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-100{
  --text-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-200{
  --text-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-300{
  --text-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-400{
  --text-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-500{
  --text-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-600{
  --text-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-700{
  --text-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-800{
  --text-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-900{
  --text-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-50{
  --text-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-100{
  --text-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-200{
  --text-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-300{
  --text-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-400{
  --text-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-500{
  --text-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-600{
  --text-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-700{
  --text-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-800{
  --text-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-indigo-900{
  --text-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-50{
  --text-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-100{
  --text-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-200{
  --text-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-300{
  --text-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-400{
  --text-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-500{
  --text-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-600{
  --text-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-700{
  --text-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-800{
  --text-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-purple-900{
  --text-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-50{
  --text-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-100{
  --text-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-200{
  --text-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-300{
  --text-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-400{
  --text-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-500{
  --text-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-600{
  --text-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-700{
  --text-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-800{
  --text-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-pink-900{
  --text-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--text-opacity)) !important;
}

.group:hover .group-hover\:text-blue-brand{
  --text-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--text-opacity)) !important;
}

.hover\:text-transparent:hover{
  color     : transparent !important;
}

.hover\:text-white:hover{
  --text-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--text-opacity)) !important;
}

.hover\:text-black:hover{
  --text-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--text-opacity)) !important;
}

.hover\:text-gray-50:hover{
  --text-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--text-opacity)) !important;
}

.hover\:text-gray-100:hover{
  --text-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--text-opacity)) !important;
}

.hover\:text-gray-200:hover{
  --text-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--text-opacity)) !important;
}

.hover\:text-gray-300:hover{
  --text-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--text-opacity)) !important;
}

.hover\:text-gray-400:hover{
  --text-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--text-opacity)) !important;
}

.hover\:text-gray-500:hover{
  --text-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--text-opacity)) !important;
}

.hover\:text-gray-600:hover{
  --text-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--text-opacity)) !important;
}

.hover\:text-gray-700:hover{
  --text-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--text-opacity)) !important;
}

.hover\:text-gray-800:hover{
  --text-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--text-opacity)) !important;
}

.hover\:text-gray-900:hover{
  --text-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-50:hover{
  --text-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-100:hover{
  --text-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-200:hover{
  --text-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-300:hover{
  --text-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-400:hover{
  --text-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-500:hover{
  --text-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-600:hover{
  --text-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-700:hover{
  --text-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-800:hover{
  --text-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--text-opacity)) !important;
}

.hover\:text-cool-gray-900:hover{
  --text-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--text-opacity)) !important;
}

.hover\:text-red-50:hover{
  --text-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--text-opacity)) !important;
}

.hover\:text-red-100:hover{
  --text-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--text-opacity)) !important;
}

.hover\:text-red-200:hover{
  --text-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--text-opacity)) !important;
}

.hover\:text-red-300:hover{
  --text-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--text-opacity)) !important;
}

.hover\:text-red-400:hover{
  --text-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--text-opacity)) !important;
}

.hover\:text-red-500:hover{
  --text-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--text-opacity)) !important;
}

.hover\:text-red-600:hover{
  --text-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--text-opacity)) !important;
}

.hover\:text-red-700:hover{
  --text-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--text-opacity)) !important;
}

.hover\:text-red-800:hover{
  --text-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--text-opacity)) !important;
}

.hover\:text-red-900:hover{
  --text-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--text-opacity)) !important;
}

.hover\:text-orange-50:hover{
  --text-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--text-opacity)) !important;
}

.hover\:text-orange-100:hover{
  --text-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--text-opacity)) !important;
}

.hover\:text-orange-200:hover{
  --text-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--text-opacity)) !important;
}

.hover\:text-orange-300:hover{
  --text-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--text-opacity)) !important;
}

.hover\:text-orange-400:hover{
  --text-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--text-opacity)) !important;
}

.hover\:text-orange-500:hover{
  --text-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--text-opacity)) !important;
}

.hover\:text-orange-600:hover{
  --text-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--text-opacity)) !important;
}

.hover\:text-orange-700:hover{
  --text-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--text-opacity)) !important;
}

.hover\:text-orange-800:hover{
  --text-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--text-opacity)) !important;
}

.hover\:text-orange-900:hover{
  --text-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--text-opacity)) !important;
}

.hover\:text-yellow-50:hover{
  --text-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--text-opacity)) !important;
}

.hover\:text-yellow-100:hover{
  --text-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--text-opacity)) !important;
}

.hover\:text-yellow-200:hover{
  --text-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--text-opacity)) !important;
}

.hover\:text-yellow-300:hover{
  --text-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--text-opacity)) !important;
}

.hover\:text-yellow-400:hover{
  --text-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--text-opacity)) !important;
}

.hover\:text-yellow-500:hover{
  --text-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--text-opacity)) !important;
}

.hover\:text-yellow-600:hover{
  --text-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--text-opacity)) !important;
}

.hover\:text-yellow-700:hover{
  --text-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--text-opacity)) !important;
}

.hover\:text-yellow-800:hover{
  --text-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--text-opacity)) !important;
}

.hover\:text-yellow-900:hover{
  --text-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--text-opacity)) !important;
}

.hover\:text-green-50:hover{
  --text-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--text-opacity)) !important;
}

.hover\:text-green-100:hover{
  --text-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--text-opacity)) !important;
}

.hover\:text-green-200:hover{
  --text-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--text-opacity)) !important;
}

.hover\:text-green-300:hover{
  --text-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--text-opacity)) !important;
}

.hover\:text-green-400:hover{
  --text-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--text-opacity)) !important;
}

.hover\:text-green-500:hover{
  --text-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--text-opacity)) !important;
}

.hover\:text-green-600:hover{
  --text-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--text-opacity)) !important;
}

.hover\:text-green-700:hover{
  --text-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--text-opacity)) !important;
}

.hover\:text-green-800:hover{
  --text-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--text-opacity)) !important;
}

.hover\:text-green-900:hover{
  --text-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--text-opacity)) !important;
}

.hover\:text-teal-50:hover{
  --text-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--text-opacity)) !important;
}

.hover\:text-teal-100:hover{
  --text-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--text-opacity)) !important;
}

.hover\:text-teal-200:hover{
  --text-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--text-opacity)) !important;
}

.hover\:text-teal-300:hover{
  --text-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--text-opacity)) !important;
}

.hover\:text-teal-400:hover{
  --text-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--text-opacity)) !important;
}

.hover\:text-teal-500:hover{
  --text-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--text-opacity)) !important;
}

.hover\:text-teal-600:hover{
  --text-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--text-opacity)) !important;
}

.hover\:text-teal-700:hover{
  --text-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--text-opacity)) !important;
}

.hover\:text-teal-800:hover{
  --text-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--text-opacity)) !important;
}

.hover\:text-teal-900:hover{
  --text-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--text-opacity)) !important;
}

.hover\:text-blue-50:hover{
  --text-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--text-opacity)) !important;
}

.hover\:text-blue-100:hover{
  --text-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--text-opacity)) !important;
}

.hover\:text-blue-200:hover{
  --text-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--text-opacity)) !important;
}

.hover\:text-blue-300:hover{
  --text-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--text-opacity)) !important;
}

.hover\:text-blue-400:hover{
  --text-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--text-opacity)) !important;
}

.hover\:text-blue-500:hover{
  --text-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--text-opacity)) !important;
}

.hover\:text-blue-600:hover{
  --text-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--text-opacity)) !important;
}

.hover\:text-blue-700:hover{
  --text-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--text-opacity)) !important;
}

.hover\:text-blue-800:hover{
  --text-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--text-opacity)) !important;
}

.hover\:text-blue-900:hover{
  --text-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--text-opacity)) !important;
}

.hover\:text-indigo-50:hover{
  --text-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--text-opacity)) !important;
}

.hover\:text-indigo-100:hover{
  --text-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--text-opacity)) !important;
}

.hover\:text-indigo-200:hover{
  --text-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--text-opacity)) !important;
}

.hover\:text-indigo-300:hover{
  --text-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--text-opacity)) !important;
}

.hover\:text-indigo-400:hover{
  --text-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--text-opacity)) !important;
}

.hover\:text-indigo-500:hover{
  --text-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--text-opacity)) !important;
}

.hover\:text-indigo-600:hover{
  --text-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--text-opacity)) !important;
}

.hover\:text-indigo-700:hover{
  --text-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--text-opacity)) !important;
}

.hover\:text-indigo-800:hover{
  --text-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--text-opacity)) !important;
}

.hover\:text-indigo-900:hover{
  --text-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--text-opacity)) !important;
}

.hover\:text-purple-50:hover{
  --text-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--text-opacity)) !important;
}

.hover\:text-purple-100:hover{
  --text-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--text-opacity)) !important;
}

.hover\:text-purple-200:hover{
  --text-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--text-opacity)) !important;
}

.hover\:text-purple-300:hover{
  --text-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--text-opacity)) !important;
}

.hover\:text-purple-400:hover{
  --text-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--text-opacity)) !important;
}

.hover\:text-purple-500:hover{
  --text-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--text-opacity)) !important;
}

.hover\:text-purple-600:hover{
  --text-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--text-opacity)) !important;
}

.hover\:text-purple-700:hover{
  --text-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--text-opacity)) !important;
}

.hover\:text-purple-800:hover{
  --text-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--text-opacity)) !important;
}

.hover\:text-purple-900:hover{
  --text-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--text-opacity)) !important;
}

.hover\:text-pink-50:hover{
  --text-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--text-opacity)) !important;
}

.hover\:text-pink-100:hover{
  --text-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--text-opacity)) !important;
}

.hover\:text-pink-200:hover{
  --text-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--text-opacity)) !important;
}

.hover\:text-pink-300:hover{
  --text-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--text-opacity)) !important;
}

.hover\:text-pink-400:hover{
  --text-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--text-opacity)) !important;
}

.hover\:text-pink-500:hover{
  --text-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--text-opacity)) !important;
}

.hover\:text-pink-600:hover{
  --text-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--text-opacity)) !important;
}

.hover\:text-pink-700:hover{
  --text-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--text-opacity)) !important;
}

.hover\:text-pink-800:hover{
  --text-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--text-opacity)) !important;
}

.hover\:text-pink-900:hover{
  --text-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--text-opacity)) !important;
}

.hover\:text-blue-brand:hover{
  --text-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--text-opacity)) !important;
}

.focus\:text-transparent:focus{
  color     : transparent !important;
}

.focus\:text-white:focus{
  --text-opacity     : 1 !important;
  color     : #ffffff !important;
  color     : rgba(255, 255, 255, var(--text-opacity)) !important;
}

.focus\:text-black:focus{
  --text-opacity     : 1 !important;
  color     : #000000 !important;
  color     : rgba(0, 0, 0, var(--text-opacity)) !important;
}

.focus\:text-gray-50:focus{
  --text-opacity     : 1 !important;
  color     : #f9fafb !important;
  color     : rgba(249, 250, 251, var(--text-opacity)) !important;
}

.focus\:text-gray-100:focus{
  --text-opacity     : 1 !important;
  color     : #f4f5f7 !important;
  color     : rgba(244, 245, 247, var(--text-opacity)) !important;
}

.focus\:text-gray-200:focus{
  --text-opacity     : 1 !important;
  color     : #e5e7eb !important;
  color     : rgba(229, 231, 235, var(--text-opacity)) !important;
}

.focus\:text-gray-300:focus{
  --text-opacity     : 1 !important;
  color     : #d2d6dc !important;
  color     : rgba(210, 214, 220, var(--text-opacity)) !important;
}

.focus\:text-gray-400:focus{
  --text-opacity     : 1 !important;
  color     : #9fa6b2 !important;
  color     : rgba(159, 166, 178, var(--text-opacity)) !important;
}

.focus\:text-gray-500:focus{
  --text-opacity     : 1 !important;
  color     : #6b7280 !important;
  color     : rgba(107, 114, 128, var(--text-opacity)) !important;
}

.focus\:text-gray-600:focus{
  --text-opacity     : 1 !important;
  color     : #4b5563 !important;
  color     : rgba(75, 85, 99, var(--text-opacity)) !important;
}

.focus\:text-gray-700:focus{
  --text-opacity     : 1 !important;
  color     : #374151 !important;
  color     : rgba(55, 65, 81, var(--text-opacity)) !important;
}

.focus\:text-gray-800:focus{
  --text-opacity     : 1 !important;
  color     : #252f3f !important;
  color     : rgba(37, 47, 63, var(--text-opacity)) !important;
}

.focus\:text-gray-900:focus{
  --text-opacity     : 1 !important;
  color     : #161e2e !important;
  color     : rgba(22, 30, 46, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-50:focus{
  --text-opacity     : 1 !important;
  color     : #f8fafc !important;
  color     : rgba(248, 250, 252, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-100:focus{
  --text-opacity     : 1 !important;
  color     : #f1f5f9 !important;
  color     : rgba(241, 245, 249, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-200:focus{
  --text-opacity     : 1 !important;
  color     : #e2e8f0 !important;
  color     : rgba(226, 232, 240, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-300:focus{
  --text-opacity     : 1 !important;
  color     : #cfd8e3 !important;
  color     : rgba(207, 216, 227, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-400:focus{
  --text-opacity     : 1 !important;
  color     : #97a6ba !important;
  color     : rgba(151, 166, 186, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-500:focus{
  --text-opacity     : 1 !important;
  color     : #64748b !important;
  color     : rgba(100, 116, 139, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-600:focus{
  --text-opacity     : 1 !important;
  color     : #475569 !important;
  color     : rgba(71, 85, 105, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-700:focus{
  --text-opacity     : 1 !important;
  color     : #364152 !important;
  color     : rgba(54, 65, 82, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-800:focus{
  --text-opacity     : 1 !important;
  color     : #27303f !important;
  color     : rgba(39, 48, 63, var(--text-opacity)) !important;
}

.focus\:text-cool-gray-900:focus{
  --text-opacity     : 1 !important;
  color     : #1a202e !important;
  color     : rgba(26, 32, 46, var(--text-opacity)) !important;
}

.focus\:text-red-50:focus{
  --text-opacity     : 1 !important;
  color     : #fdf2f2 !important;
  color     : rgba(253, 242, 242, var(--text-opacity)) !important;
}

.focus\:text-red-100:focus{
  --text-opacity     : 1 !important;
  color     : #fde8e8 !important;
  color     : rgba(253, 232, 232, var(--text-opacity)) !important;
}

.focus\:text-red-200:focus{
  --text-opacity     : 1 !important;
  color     : #fbd5d5 !important;
  color     : rgba(251, 213, 213, var(--text-opacity)) !important;
}

.focus\:text-red-300:focus{
  --text-opacity     : 1 !important;
  color     : #f8b4b4 !important;
  color     : rgba(248, 180, 180, var(--text-opacity)) !important;
}

.focus\:text-red-400:focus{
  --text-opacity     : 1 !important;
  color     : #f98080 !important;
  color     : rgba(249, 128, 128, var(--text-opacity)) !important;
}

.focus\:text-red-500:focus{
  --text-opacity     : 1 !important;
  color     : #f05252 !important;
  color     : rgba(240, 82, 82, var(--text-opacity)) !important;
}

.focus\:text-red-600:focus{
  --text-opacity     : 1 !important;
  color     : #e02424 !important;
  color     : rgba(224, 36, 36, var(--text-opacity)) !important;
}

.focus\:text-red-700:focus{
  --text-opacity     : 1 !important;
  color     : #c81e1e !important;
  color     : rgba(200, 30, 30, var(--text-opacity)) !important;
}

.focus\:text-red-800:focus{
  --text-opacity     : 1 !important;
  color     : #9b1c1c !important;
  color     : rgba(155, 28, 28, var(--text-opacity)) !important;
}

.focus\:text-red-900:focus{
  --text-opacity     : 1 !important;
  color     : #771d1d !important;
  color     : rgba(119, 29, 29, var(--text-opacity)) !important;
}

.focus\:text-orange-50:focus{
  --text-opacity     : 1 !important;
  color     : #fff8f1 !important;
  color     : rgba(255, 248, 241, var(--text-opacity)) !important;
}

.focus\:text-orange-100:focus{
  --text-opacity     : 1 !important;
  color     : #feecdc !important;
  color     : rgba(254, 236, 220, var(--text-opacity)) !important;
}

.focus\:text-orange-200:focus{
  --text-opacity     : 1 !important;
  color     : #fcd9bd !important;
  color     : rgba(252, 217, 189, var(--text-opacity)) !important;
}

.focus\:text-orange-300:focus{
  --text-opacity     : 1 !important;
  color     : #fdba8c !important;
  color     : rgba(253, 186, 140, var(--text-opacity)) !important;
}

.focus\:text-orange-400:focus{
  --text-opacity     : 1 !important;
  color     : #ff8a4c !important;
  color     : rgba(255, 138, 76, var(--text-opacity)) !important;
}

.focus\:text-orange-500:focus{
  --text-opacity     : 1 !important;
  color     : #ff5a1f !important;
  color     : rgba(255, 90, 31, var(--text-opacity)) !important;
}

.focus\:text-orange-600:focus{
  --text-opacity     : 1 !important;
  color     : #d03801 !important;
  color     : rgba(208, 56, 1, var(--text-opacity)) !important;
}

.focus\:text-orange-700:focus{
  --text-opacity     : 1 !important;
  color     : #b43403 !important;
  color     : rgba(180, 52, 3, var(--text-opacity)) !important;
}

.focus\:text-orange-800:focus{
  --text-opacity     : 1 !important;
  color     : #8a2c0d !important;
  color     : rgba(138, 44, 13, var(--text-opacity)) !important;
}

.focus\:text-orange-900:focus{
  --text-opacity     : 1 !important;
  color     : #73230d !important;
  color     : rgba(115, 35, 13, var(--text-opacity)) !important;
}

.focus\:text-yellow-50:focus{
  --text-opacity     : 1 !important;
  color     : #fdfdea !important;
  color     : rgba(253, 253, 234, var(--text-opacity)) !important;
}

.focus\:text-yellow-100:focus{
  --text-opacity     : 1 !important;
  color     : #fdf6b2 !important;
  color     : rgba(253, 246, 178, var(--text-opacity)) !important;
}

.focus\:text-yellow-200:focus{
  --text-opacity     : 1 !important;
  color     : #fce96a !important;
  color     : rgba(252, 233, 106, var(--text-opacity)) !important;
}

.focus\:text-yellow-300:focus{
  --text-opacity     : 1 !important;
  color     : #faca15 !important;
  color     : rgba(250, 202, 21, var(--text-opacity)) !important;
}

.focus\:text-yellow-400:focus{
  --text-opacity     : 1 !important;
  color     : #e3a008 !important;
  color     : rgba(227, 160, 8, var(--text-opacity)) !important;
}

.focus\:text-yellow-500:focus{
  --text-opacity     : 1 !important;
  color     : #c27803 !important;
  color     : rgba(194, 120, 3, var(--text-opacity)) !important;
}

.focus\:text-yellow-600:focus{
  --text-opacity     : 1 !important;
  color     : #9f580a !important;
  color     : rgba(159, 88, 10, var(--text-opacity)) !important;
}

.focus\:text-yellow-700:focus{
  --text-opacity     : 1 !important;
  color     : #8e4b10 !important;
  color     : rgba(142, 75, 16, var(--text-opacity)) !important;
}

.focus\:text-yellow-800:focus{
  --text-opacity     : 1 !important;
  color     : #723b13 !important;
  color     : rgba(114, 59, 19, var(--text-opacity)) !important;
}

.focus\:text-yellow-900:focus{
  --text-opacity     : 1 !important;
  color     : #633112 !important;
  color     : rgba(99, 49, 18, var(--text-opacity)) !important;
}

.focus\:text-green-50:focus{
  --text-opacity     : 1 !important;
  color     : #f3faf7 !important;
  color     : rgba(243, 250, 247, var(--text-opacity)) !important;
}

.focus\:text-green-100:focus{
  --text-opacity     : 1 !important;
  color     : #def7ec !important;
  color     : rgba(222, 247, 236, var(--text-opacity)) !important;
}

.focus\:text-green-200:focus{
  --text-opacity     : 1 !important;
  color     : #bcf0da !important;
  color     : rgba(188, 240, 218, var(--text-opacity)) !important;
}

.focus\:text-green-300:focus{
  --text-opacity     : 1 !important;
  color     : #84e1bc !important;
  color     : rgba(132, 225, 188, var(--text-opacity)) !important;
}

.focus\:text-green-400:focus{
  --text-opacity     : 1 !important;
  color     : #31c48d !important;
  color     : rgba(49, 196, 141, var(--text-opacity)) !important;
}

.focus\:text-green-500:focus{
  --text-opacity     : 1 !important;
  color     : #0e9f6e !important;
  color     : rgba(14, 159, 110, var(--text-opacity)) !important;
}

.focus\:text-green-600:focus{
  --text-opacity     : 1 !important;
  color     : #057a55 !important;
  color     : rgba(5, 122, 85, var(--text-opacity)) !important;
}

.focus\:text-green-700:focus{
  --text-opacity     : 1 !important;
  color     : #046c4e !important;
  color     : rgba(4, 108, 78, var(--text-opacity)) !important;
}

.focus\:text-green-800:focus{
  --text-opacity     : 1 !important;
  color     : #03543f !important;
  color     : rgba(3, 84, 63, var(--text-opacity)) !important;
}

.focus\:text-green-900:focus{
  --text-opacity     : 1 !important;
  color     : #014737 !important;
  color     : rgba(1, 71, 55, var(--text-opacity)) !important;
}

.focus\:text-teal-50:focus{
  --text-opacity     : 1 !important;
  color     : #edfafa !important;
  color     : rgba(237, 250, 250, var(--text-opacity)) !important;
}

.focus\:text-teal-100:focus{
  --text-opacity     : 1 !important;
  color     : #d5f5f6 !important;
  color     : rgba(213, 245, 246, var(--text-opacity)) !important;
}

.focus\:text-teal-200:focus{
  --text-opacity     : 1 !important;
  color     : #afecef !important;
  color     : rgba(175, 236, 239, var(--text-opacity)) !important;
}

.focus\:text-teal-300:focus{
  --text-opacity     : 1 !important;
  color     : #7edce2 !important;
  color     : rgba(126, 220, 226, var(--text-opacity)) !important;
}

.focus\:text-teal-400:focus{
  --text-opacity     : 1 !important;
  color     : #16bdca !important;
  color     : rgba(22, 189, 202, var(--text-opacity)) !important;
}

.focus\:text-teal-500:focus{
  --text-opacity     : 1 !important;
  color     : #0694a2 !important;
  color     : rgba(6, 148, 162, var(--text-opacity)) !important;
}

.focus\:text-teal-600:focus{
  --text-opacity     : 1 !important;
  color     : #047481 !important;
  color     : rgba(4, 116, 129, var(--text-opacity)) !important;
}

.focus\:text-teal-700:focus{
  --text-opacity     : 1 !important;
  color     : #036672 !important;
  color     : rgba(3, 102, 114, var(--text-opacity)) !important;
}

.focus\:text-teal-800:focus{
  --text-opacity     : 1 !important;
  color     : #05505c !important;
  color     : rgba(5, 80, 92, var(--text-opacity)) !important;
}

.focus\:text-teal-900:focus{
  --text-opacity     : 1 !important;
  color     : #014451 !important;
  color     : rgba(1, 68, 81, var(--text-opacity)) !important;
}

.focus\:text-blue-50:focus{
  --text-opacity     : 1 !important;
  color     : #ebf5ff !important;
  color     : rgba(235, 245, 255, var(--text-opacity)) !important;
}

.focus\:text-blue-100:focus{
  --text-opacity     : 1 !important;
  color     : #e1effe !important;
  color     : rgba(225, 239, 254, var(--text-opacity)) !important;
}

.focus\:text-blue-200:focus{
  --text-opacity     : 1 !important;
  color     : #c3ddfd !important;
  color     : rgba(195, 221, 253, var(--text-opacity)) !important;
}

.focus\:text-blue-300:focus{
  --text-opacity     : 1 !important;
  color     : #a4cafe !important;
  color     : rgba(164, 202, 254, var(--text-opacity)) !important;
}

.focus\:text-blue-400:focus{
  --text-opacity     : 1 !important;
  color     : #76a9fa !important;
  color     : rgba(118, 169, 250, var(--text-opacity)) !important;
}

.focus\:text-blue-500:focus{
  --text-opacity     : 1 !important;
  color     : #3f83f8 !important;
  color     : rgba(63, 131, 248, var(--text-opacity)) !important;
}

.focus\:text-blue-600:focus{
  --text-opacity     : 1 !important;
  color     : #1c64f2 !important;
  color     : rgba(28, 100, 242, var(--text-opacity)) !important;
}

.focus\:text-blue-700:focus{
  --text-opacity     : 1 !important;
  color     : #1a56db !important;
  color     : rgba(26, 86, 219, var(--text-opacity)) !important;
}

.focus\:text-blue-800:focus{
  --text-opacity     : 1 !important;
  color     : #1e429f !important;
  color     : rgba(30, 66, 159, var(--text-opacity)) !important;
}

.focus\:text-blue-900:focus{
  --text-opacity     : 1 !important;
  color     : #233876 !important;
  color     : rgba(35, 56, 118, var(--text-opacity)) !important;
}

.focus\:text-indigo-50:focus{
  --text-opacity     : 1 !important;
  color     : #f0f5ff !important;
  color     : rgba(240, 245, 255, var(--text-opacity)) !important;
}

.focus\:text-indigo-100:focus{
  --text-opacity     : 1 !important;
  color     : #e5edff !important;
  color     : rgba(229, 237, 255, var(--text-opacity)) !important;
}

.focus\:text-indigo-200:focus{
  --text-opacity     : 1 !important;
  color     : #cddbfe !important;
  color     : rgba(205, 219, 254, var(--text-opacity)) !important;
}

.focus\:text-indigo-300:focus{
  --text-opacity     : 1 !important;
  color     : #b4c6fc !important;
  color     : rgba(180, 198, 252, var(--text-opacity)) !important;
}

.focus\:text-indigo-400:focus{
  --text-opacity     : 1 !important;
  color     : #8da2fb !important;
  color     : rgba(141, 162, 251, var(--text-opacity)) !important;
}

.focus\:text-indigo-500:focus{
  --text-opacity     : 1 !important;
  color     : #6875f5 !important;
  color     : rgba(104, 117, 245, var(--text-opacity)) !important;
}

.focus\:text-indigo-600:focus{
  --text-opacity     : 1 !important;
  color     : #5850ec !important;
  color     : rgba(88, 80, 236, var(--text-opacity)) !important;
}

.focus\:text-indigo-700:focus{
  --text-opacity     : 1 !important;
  color     : #5145cd !important;
  color     : rgba(81, 69, 205, var(--text-opacity)) !important;
}

.focus\:text-indigo-800:focus{
  --text-opacity     : 1 !important;
  color     : #42389d !important;
  color     : rgba(66, 56, 157, var(--text-opacity)) !important;
}

.focus\:text-indigo-900:focus{
  --text-opacity     : 1 !important;
  color     : #362f78 !important;
  color     : rgba(54, 47, 120, var(--text-opacity)) !important;
}

.focus\:text-purple-50:focus{
  --text-opacity     : 1 !important;
  color     : #f6f5ff !important;
  color     : rgba(246, 245, 255, var(--text-opacity)) !important;
}

.focus\:text-purple-100:focus{
  --text-opacity     : 1 !important;
  color     : #edebfe !important;
  color     : rgba(237, 235, 254, var(--text-opacity)) !important;
}

.focus\:text-purple-200:focus{
  --text-opacity     : 1 !important;
  color     : #dcd7fe !important;
  color     : rgba(220, 215, 254, var(--text-opacity)) !important;
}

.focus\:text-purple-300:focus{
  --text-opacity     : 1 !important;
  color     : #cabffd !important;
  color     : rgba(202, 191, 253, var(--text-opacity)) !important;
}

.focus\:text-purple-400:focus{
  --text-opacity     : 1 !important;
  color     : #ac94fa !important;
  color     : rgba(172, 148, 250, var(--text-opacity)) !important;
}

.focus\:text-purple-500:focus{
  --text-opacity     : 1 !important;
  color     : #9061f9 !important;
  color     : rgba(144, 97, 249, var(--text-opacity)) !important;
}

.focus\:text-purple-600:focus{
  --text-opacity     : 1 !important;
  color     : #7e3af2 !important;
  color     : rgba(126, 58, 242, var(--text-opacity)) !important;
}

.focus\:text-purple-700:focus{
  --text-opacity     : 1 !important;
  color     : #6c2bd9 !important;
  color     : rgba(108, 43, 217, var(--text-opacity)) !important;
}

.focus\:text-purple-800:focus{
  --text-opacity     : 1 !important;
  color     : #5521b5 !important;
  color     : rgba(85, 33, 181, var(--text-opacity)) !important;
}

.focus\:text-purple-900:focus{
  --text-opacity     : 1 !important;
  color     : #4a1d96 !important;
  color     : rgba(74, 29, 150, var(--text-opacity)) !important;
}

.focus\:text-pink-50:focus{
  --text-opacity     : 1 !important;
  color     : #fdf2f8 !important;
  color     : rgba(253, 242, 248, var(--text-opacity)) !important;
}

.focus\:text-pink-100:focus{
  --text-opacity     : 1 !important;
  color     : #fce8f3 !important;
  color     : rgba(252, 232, 243, var(--text-opacity)) !important;
}

.focus\:text-pink-200:focus{
  --text-opacity     : 1 !important;
  color     : #fad1e8 !important;
  color     : rgba(250, 209, 232, var(--text-opacity)) !important;
}

.focus\:text-pink-300:focus{
  --text-opacity     : 1 !important;
  color     : #f8b4d9 !important;
  color     : rgba(248, 180, 217, var(--text-opacity)) !important;
}

.focus\:text-pink-400:focus{
  --text-opacity     : 1 !important;
  color     : #f17eb8 !important;
  color     : rgba(241, 126, 184, var(--text-opacity)) !important;
}

.focus\:text-pink-500:focus{
  --text-opacity     : 1 !important;
  color     : #e74694 !important;
  color     : rgba(231, 70, 148, var(--text-opacity)) !important;
}

.focus\:text-pink-600:focus{
  --text-opacity     : 1 !important;
  color     : #d61f69 !important;
  color     : rgba(214, 31, 105, var(--text-opacity)) !important;
}

.focus\:text-pink-700:focus{
  --text-opacity     : 1 !important;
  color     : #bf125d !important;
  color     : rgba(191, 18, 93, var(--text-opacity)) !important;
}

.focus\:text-pink-800:focus{
  --text-opacity     : 1 !important;
  color     : #99154b !important;
  color     : rgba(153, 21, 75, var(--text-opacity)) !important;
}

.focus\:text-pink-900:focus{
  --text-opacity     : 1 !important;
  color     : #751a3d !important;
  color     : rgba(117, 26, 61, var(--text-opacity)) !important;
}

.focus\:text-blue-brand:focus{
  --text-opacity     : 1 !important;
  color     : #0287f6 !important;
  color     : rgba(2, 135, 246, var(--text-opacity)) !important;
}

.text-opacity-0{
  --text-opacity     : 0 !important;
}

.text-opacity-25{
  --text-opacity     : 0.25 !important;
}

.text-opacity-50{
  --text-opacity     : 0.5 !important;
}

.text-opacity-75{
  --text-opacity     : 0.75 !important;
}

.text-opacity-100{
  --text-opacity     : 1 !important;
}

.group:hover .group-hover\:text-opacity-0{
  --text-opacity     : 0 !important;
}

.group:hover .group-hover\:text-opacity-25{
  --text-opacity     : 0.25 !important;
}

.group:hover .group-hover\:text-opacity-50{
  --text-opacity     : 0.5 !important;
}

.group:hover .group-hover\:text-opacity-75{
  --text-opacity     : 0.75 !important;
}

.group:hover .group-hover\:text-opacity-100{
  --text-opacity     : 1 !important;
}

.hover\:text-opacity-0:hover{
  --text-opacity     : 0 !important;
}

.hover\:text-opacity-25:hover{
  --text-opacity     : 0.25 !important;
}

.hover\:text-opacity-50:hover{
  --text-opacity     : 0.5 !important;
}

.hover\:text-opacity-75:hover{
  --text-opacity     : 0.75 !important;
}

.hover\:text-opacity-100:hover{
  --text-opacity     : 1 !important;
}

.focus\:text-opacity-0:focus{
  --text-opacity     : 0 !important;
}

.focus\:text-opacity-25:focus{
  --text-opacity     : 0.25 !important;
}

.focus\:text-opacity-50:focus{
  --text-opacity     : 0.5 !important;
}

.focus\:text-opacity-75:focus{
  --text-opacity     : 0.75 !important;
}

.focus\:text-opacity-100:focus{
  --text-opacity     : 1 !important;
}

.italic{
  font-style     : italic !important;
}

.not-italic{
  font-style     : normal !important;
}

.group:hover .group-hover\:italic{
  font-style     : italic !important;
}

.group:hover .group-hover\:not-italic{
  font-style     : normal !important;
}

.hover\:italic:hover{
  font-style     : italic !important;
}

.hover\:not-italic:hover{
  font-style     : normal !important;
}

.focus\:italic:focus{
  font-style     : italic !important;
}

.focus\:not-italic:focus{
  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;
}

.group:hover .group-hover\:uppercase{
  text-transform     : uppercase !important;
}

.group:hover .group-hover\:lowercase{
  text-transform     : lowercase !important;
}

.group:hover .group-hover\:capitalize{
  text-transform     : capitalize !important;
}

.group:hover .group-hover\:normal-case{
  text-transform     : none !important;
}

.hover\:uppercase:hover{
  text-transform     : uppercase !important;
}

.hover\:lowercase:hover{
  text-transform     : lowercase !important;
}

.hover\:capitalize:hover{
  text-transform     : capitalize !important;
}

.hover\:normal-case:hover{
  text-transform     : none !important;
}

.focus\:uppercase:focus{
  text-transform     : uppercase !important;
}

.focus\:lowercase:focus{
  text-transform     : lowercase !important;
}

.focus\:capitalize:focus{
  text-transform     : capitalize !important;
}

.focus\:normal-case:focus{
  text-transform     : none !important;
}

.underline{
  text-decoration     : underline !important;
}

.line-through{
  text-decoration     : line-through !important;
}

.no-underline{
  text-decoration     : none !important;
}

.group:hover .group-hover\:underline{
  text-decoration     : underline !important;
}

.group:hover .group-hover\:line-through{
  text-decoration     : line-through !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:antialiased{
  -webkit-font-smoothing     : antialiased !important;
  -moz-osx-font-smoothing     : grayscale !important;
}

.group:hover .group-hover\:subpixel-antialiased{
  -webkit-font-smoothing     : auto !important;
  -moz-osx-font-smoothing     : auto !important;
}

.hover\:antialiased:hover{
  -webkit-font-smoothing     : antialiased !important;
  -moz-osx-font-smoothing     : grayscale !important;
}

.hover\:subpixel-antialiased:hover{
  -webkit-font-smoothing     : auto !important;
  -moz-osx-font-smoothing     : auto !important;
}

.focus\:antialiased:focus{
  -webkit-font-smoothing     : antialiased !important;
  -moz-osx-font-smoothing     : grayscale !important;
}

.focus\:subpixel-antialiased:focus{
  -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;
}

.group:hover .group-hover\:tracking-tighter{
  letter-spacing     : -0.05em !important;
}

.group:hover .group-hover\:tracking-tight{
  letter-spacing     : -0.025em !important;
}

.group:hover .group-hover\:tracking-normal{
  letter-spacing     : 0 !important;
}

.group:hover .group-hover\:tracking-wide{
  letter-spacing     : 0.025em !important;
}

.group:hover .group-hover\:tracking-wider{
  letter-spacing     : 0.05em !important;
}

.group:hover .group-hover\:tracking-widest{
  letter-spacing     : 0.1em !important;
}

.hover\:tracking-tighter:hover{
  letter-spacing     : -0.05em !important;
}

.hover\:tracking-tight:hover{
  letter-spacing     : -0.025em !important;
}

.hover\:tracking-normal:hover{
  letter-spacing     : 0 !important;
}

.hover\:tracking-wide:hover{
  letter-spacing     : 0.025em !important;
}

.hover\:tracking-wider:hover{
  letter-spacing     : 0.05em !important;
}

.hover\:tracking-widest:hover{
  letter-spacing     : 0.1em !important;
}

.focus\:tracking-tighter:focus{
  letter-spacing     : -0.05em !important;
}

.focus\:tracking-tight:focus{
  letter-spacing     : -0.025em !important;
}

.focus\:tracking-normal:focus{
  letter-spacing     : 0 !important;
}

.focus\:tracking-wide:focus{
  letter-spacing     : 0.025em !important;
}

.focus\:tracking-wider:focus{
  letter-spacing     : 0.05em !important;
}

.focus\:tracking-widest:focus{
  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;
}

.group:hover .group-hover\:select-none{
  -webkit-user-select     : none !important;
     -moz-user-select     : none !important;
      -ms-user-select     : none !important;
          user-select     : none !important;
}

.group:hover .group-hover\:select-text{
  -webkit-user-select     : text !important;
     -moz-user-select     : text !important;
      -ms-user-select     : text !important;
          user-select     : text !important;
}

.group:hover .group-hover\:select-all{
  -webkit-user-select     : all !important;
     -moz-user-select     : all !important;
      -ms-user-select     : all !important;
          user-select     : all !important;
}

.group:hover .group-hover\:select-auto{
  -webkit-user-select     : auto !important;
     -moz-user-select     : auto !important;
      -ms-user-select     : auto !important;
          user-select     : auto !important;
}

.hover\:select-none:hover{
  -webkit-user-select     : none !important;
     -moz-user-select     : none !important;
      -ms-user-select     : none !important;
          user-select     : none !important;
}

.hover\:select-text:hover{
  -webkit-user-select     : text !important;
     -moz-user-select     : text !important;
      -ms-user-select     : text !important;
          user-select     : text !important;
}

.hover\:select-all:hover{
  -webkit-user-select     : all !important;
     -moz-user-select     : all !important;
      -ms-user-select     : all !important;
          user-select     : all !important;
}

.hover\:select-auto:hover{
  -webkit-user-select     : auto !important;
     -moz-user-select     : auto !important;
      -ms-user-select     : auto !important;
          user-select     : auto !important;
}

.focus\:select-none:focus{
  -webkit-user-select     : none !important;
     -moz-user-select     : none !important;
      -ms-user-select     : none !important;
          user-select     : none !important;
}

.focus\:select-text:focus{
  -webkit-user-select     : text !important;
     -moz-user-select     : text !important;
      -ms-user-select     : text !important;
          user-select     : text !important;
}

.focus\:select-all:focus{
  -webkit-user-select     : all !important;
     -moz-user-select     : all !important;
      -ms-user-select     : all !important;
          user-select     : all !important;
}

.focus\:select-auto:focus{
  -webkit-user-select     : auto !important;
     -moz-user-select     : auto !important;
      -ms-user-select     : auto !important;
          user-select     : auto !important;
}

.align-baseline{
  vertical-align     : baseline !important;
}

.align-top{
  vertical-align     : top !important;
}

.align-middle{
  vertical-align     : middle !important;
}

.align-bottom{
  vertical-align     : bottom !important;
}

.align-text-top{
  vertical-align     : text-top !important;
}

.align-text-bottom{
  vertical-align     : text-bottom !important;
}

.group:hover .group-hover\:align-baseline{
  vertical-align     : baseline !important;
}

.group:hover .group-hover\:align-top{
  vertical-align     : top !important;
}

.group:hover .group-hover\:align-middle{
  vertical-align     : middle !important;
}

.group:hover .group-hover\:align-bottom{
  vertical-align     : bottom !important;
}

.group:hover .group-hover\:align-text-top{
  vertical-align     : text-top !important;
}

.group:hover .group-hover\:align-text-bottom{
  vertical-align     : text-bottom !important;
}

.hover\:align-baseline:hover{
  vertical-align     : baseline !important;
}

.hover\:align-top:hover{
  vertical-align     : top !important;
}

.hover\:align-middle:hover{
  vertical-align     : middle !important;
}

.hover\:align-bottom:hover{
  vertical-align     : bottom !important;
}

.hover\:align-text-top:hover{
  vertical-align     : text-top !important;
}

.hover\:align-text-bottom:hover{
  vertical-align     : text-bottom !important;
}

.focus\:align-baseline:focus{
  vertical-align     : baseline !important;
}

.focus\:align-top:focus{
  vertical-align     : top !important;
}

.focus\:align-middle:focus{
  vertical-align     : middle !important;
}

.focus\:align-bottom:focus{
  vertical-align     : bottom !important;
}

.focus\:align-text-top:focus{
  vertical-align     : text-top !important;
}

.focus\:align-text-bottom:focus{
  vertical-align     : text-bottom !important;
}

.visible{
  visibility     : visible !important;
}

.invisible{
  visibility     : hidden !important;
}

.group:hover .group-hover\:visible{
  visibility     : visible !important;
}

.group:hover .group-hover\:invisible{
  visibility     : hidden !important;
}

.hover\:visible:hover{
  visibility     : visible !important;
}

.hover\:invisible:hover{
  visibility     : hidden !important;
}

.focus\:visible:focus{
  visibility     : visible !important;
}

.focus\:invisible:focus{
  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;
}

.group:hover .group-hover\:whitespace-normal{
  white-space     : normal !important;
}

.group:hover .group-hover\:whitespace-no-wrap{
  white-space     : nowrap !important;
}

.group:hover .group-hover\:whitespace-pre{
  white-space     : pre !important;
}

.group:hover .group-hover\:whitespace-pre-line{
  white-space     : pre-line !important;
}

.group:hover .group-hover\:whitespace-pre-wrap{
  white-space     : pre-wrap !important;
}

.hover\:whitespace-normal:hover{
  white-space     : normal !important;
}

.hover\:whitespace-no-wrap:hover{
  white-space     : nowrap !important;
}

.hover\:whitespace-pre:hover{
  white-space     : pre !important;
}

.hover\:whitespace-pre-line:hover{
  white-space     : pre-line !important;
}

.hover\:whitespace-pre-wrap:hover{
  white-space     : pre-wrap !important;
}

.focus\:whitespace-normal:focus{
  white-space     : normal !important;
}

.focus\:whitespace-no-wrap:focus{
  white-space     : nowrap !important;
}

.focus\:whitespace-pre:focus{
  white-space     : pre !important;
}

.focus\:whitespace-pre-line:focus{
  white-space     : pre-line !important;
}

.focus\:whitespace-pre-wrap:focus{
  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;
}

.group:hover .group-hover\:break-normal{
  overflow-wrap     : normal !important;
  word-break     : normal !important;
}

.group:hover .group-hover\:break-words{
  overflow-wrap     : break-word !important;
}

.group:hover .group-hover\:break-all{
  word-break     : break-all !important;
}

.group:hover .group-hover\:truncate{
  overflow     : hidden !important;
  text-overflow     : ellipsis !important;
  white-space     : nowrap !important;
}

.hover\:break-normal:hover{
  overflow-wrap     : normal !important;
  word-break     : normal !important;
}

.hover\:break-words:hover{
  overflow-wrap     : break-word !important;
}

.hover\:break-all:hover{
  word-break     : break-all !important;
}

.hover\:truncate:hover{
  overflow     : hidden !important;
  text-overflow     : ellipsis !important;
  white-space     : nowrap !important;
}

.focus\:break-normal:focus{
  overflow-wrap     : normal !important;
  word-break     : normal !important;
}

.focus\:break-words:focus{
  overflow-wrap     : break-word !important;
}

.focus\:break-all:focus{
  word-break     : break-all !important;
}

.focus\:truncate:focus{
  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-20{
  width     : 5rem !important;
}

.w-24{
  width     : 6rem !important;
}

.w-28{
  width     : 7rem !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-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-96{
  width     : 24rem !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-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;
}

.group:hover .group-hover\:w-0{
  width     : 0 !important;
}

.group:hover .group-hover\:w-1{
  width     : 0.25rem !important;
}

.group:hover .group-hover\:w-2{
  width     : 0.5rem !important;
}

.group:hover .group-hover\:w-3{
  width     : 0.75rem !important;
}

.group:hover .group-hover\:w-4{
  width     : 1rem !important;
}

.group:hover .group-hover\:w-5{
  width     : 1.25rem !important;
}

.group:hover .group-hover\:w-6{
  width     : 1.5rem !important;
}

.group:hover .group-hover\:w-7{
  width     : 1.75rem !important;
}

.group:hover .group-hover\:w-8{
  width     : 2rem !important;
}

.group:hover .group-hover\:w-9{
  width     : 2.25rem !important;
}

.group:hover .group-hover\:w-10{
  width     : 2.5rem !important;
}

.group:hover .group-hover\:w-11{
  width     : 2.75rem !important;
}

.group:hover .group-hover\:w-12{
  width     : 3rem !important;
}

.group:hover .group-hover\:w-13{
  width     : 3.25rem !important;
}

.group:hover .group-hover\:w-14{
  width     : 3.5rem !important;
}

.group:hover .group-hover\:w-15{
  width     : 3.75rem !important;
}

.group:hover .group-hover\:w-16{
  width     : 4rem !important;
}

.group:hover .group-hover\:w-20{
  width     : 5rem !important;
}

.group:hover .group-hover\:w-24{
  width     : 6rem !important;
}

.group:hover .group-hover\:w-28{
  width     : 7rem !important;
}

.group:hover .group-hover\:w-32{
  width     : 8rem !important;
}

.group:hover .group-hover\:w-36{
  width     : 9rem !important;
}

.group:hover .group-hover\:w-40{
  width     : 10rem !important;
}

.group:hover .group-hover\:w-44{
  width     : 11rem !important;
}

.group:hover .group-hover\:w-48{
  width     : 12rem !important;
}

.group:hover .group-hover\:w-52{
  width     : 13rem !important;
}

.group:hover .group-hover\:w-56{
  width     : 14rem !important;
}

.group:hover .group-hover\:w-60{
  width     : 15rem !important;
}

.group:hover .group-hover\:w-64{
  width     : 16rem !important;
}

.group:hover .group-hover\:w-72{
  width     : 18rem !important;
}

.group:hover .group-hover\:w-80{
  width     : 20rem !important;
}

.group:hover .group-hover\:w-96{
  width     : 24rem !important;
}

.group:hover .group-hover\:w-auto{
  width     : auto !important;
}

.group:hover .group-hover\:w-px{
  width     : 1px !important;
}

.group:hover .group-hover\:w-0\.5{
  width     : 0.125rem !important;
}

.group:hover .group-hover\:w-1\.5{
  width     : 0.375rem !important;
}

.group:hover .group-hover\:w-2\.5{
  width     : 0.625rem !important;
}

.group:hover .group-hover\:w-3\.5{
  width     : 0.875rem !important;
}

.group:hover .group-hover\:w-1\/2{
  width     : 50% !important;
}

.group:hover .group-hover\:w-1\/3{
  width     : 33.333333% !important;
}

.group:hover .group-hover\:w-2\/3{
  width     : 66.666667% !important;
}

.group:hover .group-hover\:w-1\/4{
  width     : 25% !important;
}

.group:hover .group-hover\:w-2\/4{
  width     : 50% !important;
}

.group:hover .group-hover\:w-3\/4{
  width     : 75% !important;
}

.group:hover .group-hover\:w-1\/5{
  width     : 20% !important;
}

.group:hover .group-hover\:w-2\/5{
  width     : 40% !important;
}

.group:hover .group-hover\:w-3\/5{
  width     : 60% !important;
}

.group:hover .group-hover\:w-4\/5{
  width     : 80% !important;
}

.group:hover .group-hover\:w-1\/6{
  width     : 16.666667% !important;
}

.group:hover .group-hover\:w-2\/6{
  width     : 33.333333% !important;
}

.group:hover .group-hover\:w-3\/6{
  width     : 50% !important;
}

.group:hover .group-hover\:w-4\/6{
  width     : 66.666667% !important;
}

.group:hover .group-hover\:w-5\/6{
  width     : 83.333333% !important;
}

.group:hover .group-hover\:w-1\/12{
  width     : 8.333333% !important;
}

.group:hover .group-hover\:w-2\/12{
  width     : 16.666667% !important;
}

.group:hover .group-hover\:w-3\/12{
  width     : 25% !important;
}

.group:hover .group-hover\:w-4\/12{
  width     : 33.333333% !important;
}

.group:hover .group-hover\:w-5\/12{
  width     : 41.666667% !important;
}

.group:hover .group-hover\:w-6\/12{
  width     : 50% !important;
}

.group:hover .group-hover\:w-7\/12{
  width     : 58.333333% !important;
}

.group:hover .group-hover\:w-8\/12{
  width     : 66.666667% !important;
}

.group:hover .group-hover\:w-9\/12{
  width     : 75% !important;
}

.group:hover .group-hover\:w-10\/12{
  width     : 83.333333% !important;
}

.group:hover .group-hover\:w-11\/12{
  width     : 91.666667% !important;
}

.group:hover .group-hover\:w-full{
  width     : 100% !important;
}

.group:hover .group-hover\:w-screen{
  width     : 100vw !important;
}

.group:hover .group-hover\:w-min-content{
  width     : -webkit-min-content !important;
  width     : -moz-min-content !important;
  width     : min-content !important;
}

.group:hover .group-hover\:w-max-content{
  width     : -webkit-max-content !important;
  width     : -moz-max-content !important;
  width     : max-content !important;
}

.hover\:w-0:hover{
  width     : 0 !important;
}

.hover\:w-1:hover{
  width     : 0.25rem !important;
}

.hover\:w-2:hover{
  width     : 0.5rem !important;
}

.hover\:w-3:hover{
  width     : 0.75rem !important;
}

.hover\:w-4:hover{
  width     : 1rem !important;
}

.hover\:w-5:hover{
  width     : 1.25rem !important;
}

.hover\:w-6:hover{
  width     : 1.5rem !important;
}

.hover\:w-7:hover{
  width     : 1.75rem !important;
}

.hover\:w-8:hover{
  width     : 2rem !important;
}

.hover\:w-9:hover{
  width     : 2.25rem !important;
}

.hover\:w-10:hover{
  width     : 2.5rem !important;
}

.hover\:w-11:hover{
  width     : 2.75rem !important;
}

.hover\:w-12:hover{
  width     : 3rem !important;
}

.hover\:w-13:hover{
  width     : 3.25rem !important;
}

.hover\:w-14:hover{
  width     : 3.5rem !important;
}

.hover\:w-15:hover{
  width     : 3.75rem !important;
}

.hover\:w-16:hover{
  width     : 4rem !important;
}

.hover\:w-20:hover{
  width     : 5rem !important;
}

.hover\:w-24:hover{
  width     : 6rem !important;
}

.hover\:w-28:hover{
  width     : 7rem !important;
}

.hover\:w-32:hover{
  width     : 8rem !important;
}

.hover\:w-36:hover{
  width     : 9rem !important;
}

.hover\:w-40:hover{
  width     : 10rem !important;
}

.hover\:w-44:hover{
  width     : 11rem !important;
}

.hover\:w-48:hover{
  width     : 12rem !important;
}

.hover\:w-52:hover{
  width     : 13rem !important;
}

.hover\:w-56:hover{
  width     : 14rem !important;
}

.hover\:w-60:hover{
  width     : 15rem !important;
}

.hover\:w-64:hover{
  width     : 16rem !important;
}

.hover\:w-72:hover{
  width     : 18rem !important;
}

.hover\:w-80:hover{
  width     : 20rem !important;
}

.hover\:w-96:hover{
  width     : 24rem !important;
}

.hover\:w-auto:hover{
  width     : auto !important;
}

.hover\:w-px:hover{
  width     : 1px !important;
}

.hover\:w-0\.5:hover{
  width     : 0.125rem !important;
}

.hover\:w-1\.5:hover{
  width     : 0.375rem !important;
}

.hover\:w-2\.5:hover{
  width     : 0.625rem !important;
}

.hover\:w-3\.5:hover{
  width     : 0.875rem !important;
}

.hover\:w-1\/2:hover{
  width     : 50% !important;
}

.hover\:w-1\/3:hover{
  width     : 33.333333% !important;
}

.hover\:w-2\/3:hover{
  width     : 66.666667% !important;
}

.hover\:w-1\/4:hover{
  width     : 25% !important;
}

.hover\:w-2\/4:hover{
  width     : 50% !important;
}

.hover\:w-3\/4:hover{
  width     : 75% !important;
}

.hover\:w-1\/5:hover{
  width     : 20% !important;
}

.hover\:w-2\/5:hover{
  width     : 40% !important;
}

.hover\:w-3\/5:hover{
  width     : 60% !important;
}

.hover\:w-4\/5:hover{
  width     : 80% !important;
}

.hover\:w-1\/6:hover{
  width     : 16.666667% !important;
}

.hover\:w-2\/6:hover{
  width     : 33.333333% !important;
}

.hover\:w-3\/6:hover{
  width     : 50% !important;
}

.hover\:w-4\/6:hover{
  width     : 66.666667% !important;
}

.hover\:w-5\/6:hover{
  width     : 83.333333% !important;
}

.hover\:w-1\/12:hover{
  width     : 8.333333% !important;
}

.hover\:w-2\/12:hover{
  width     : 16.666667% !important;
}

.hover\:w-3\/12:hover{
  width     : 25% !important;
}

.hover\:w-4\/12:hover{
  width     : 33.333333% !important;
}

.hover\:w-5\/12:hover{
  width     : 41.666667% !important;
}

.hover\:w-6\/12:hover{
  width     : 50% !important;
}

.hover\:w-7\/12:hover{
  width     : 58.333333% !important;
}

.hover\:w-8\/12:hover{
  width     : 66.666667% !important;
}

.hover\:w-9\/12:hover{
  width     : 75% !important;
}

.hover\:w-10\/12:hover{
  width     : 83.333333% !important;
}

.hover\:w-11\/12:hover{
  width     : 91.666667% !important;
}

.hover\:w-full:hover{
  width     : 100% !important;
}

.hover\:w-screen:hover{
  width     : 100vw !important;
}

.hover\:w-min-content:hover{
  width     : -webkit-min-content !important;
  width     : -moz-min-content !important;
  width     : min-content !important;
}

.hover\:w-max-content:hover{
  width     : -webkit-max-content !important;
  width     : -moz-max-content !important;
  width     : max-content !important;
}

.focus\:w-0:focus{
  width     : 0 !important;
}

.focus\:w-1:focus{
  width     : 0.25rem !important;
}

.focus\:w-2:focus{
  width     : 0.5rem !important;
}

.focus\:w-3:focus{
  width     : 0.75rem !important;
}

.focus\:w-4:focus{
  width     : 1rem !important;
}

.focus\:w-5:focus{
  width     : 1.25rem !important;
}

.focus\:w-6:focus{
  width     : 1.5rem !important;
}

.focus\:w-7:focus{
  width     : 1.75rem !important;
}

.focus\:w-8:focus{
  width     : 2rem !important;
}

.focus\:w-9:focus{
  width     : 2.25rem !important;
}

.focus\:w-10:focus{
  width     : 2.5rem !important;
}

.focus\:w-11:focus{
  width     : 2.75rem !important;
}

.focus\:w-12:focus{
  width     : 3rem !important;
}

.focus\:w-13:focus{
  width     : 3.25rem !important;
}

.focus\:w-14:focus{
  width     : 3.5rem !important;
}

.focus\:w-15:focus{
  width     : 3.75rem !important;
}

.focus\:w-16:focus{
  width     : 4rem !important;
}

.focus\:w-20:focus{
  width     : 5rem !important;
}

.focus\:w-24:focus{
  width     : 6rem !important;
}

.focus\:w-28:focus{
  width     : 7rem !important;
}

.focus\:w-32:focus{
  width     : 8rem !important;
}

.focus\:w-36:focus{
  width     : 9rem !important;
}

.focus\:w-40:focus{
  width     : 10rem !important;
}

.focus\:w-44:focus{
  width     : 11rem !important;
}

.focus\:w-48:focus{
  width     : 12rem !important;
}

.focus\:w-52:focus{
  width     : 13rem !important;
}

.focus\:w-56:focus{
  width     : 14rem !important;
}

.focus\:w-60:focus{
  width     : 15rem !important;
}

.focus\:w-64:focus{
  width     : 16rem !important;
}

.focus\:w-72:focus{
  width     : 18rem !important;
}

.focus\:w-80:focus{
  width     : 20rem !important;
}

.focus\:w-96:focus{
  width     : 24rem !important;
}

.focus\:w-auto:focus{
  width     : auto !important;
}

.focus\:w-px:focus{
  width     : 1px !important;
}

.focus\:w-0\.5:focus{
  width     : 0.125rem !important;
}

.focus\:w-1\.5:focus{
  width     : 0.375rem !important;
}

.focus\:w-2\.5:focus{
  width     : 0.625rem !important;
}

.focus\:w-3\.5:focus{
  width     : 0.875rem !important;
}

.focus\:w-1\/2:focus{
  width     : 50% !important;
}

.focus\:w-1\/3:focus{
  width     : 33.333333% !important;
}

.focus\:w-2\/3:focus{
  width     : 66.666667% !important;
}

.focus\:w-1\/4:focus{
  width     : 25% !important;
}

.focus\:w-2\/4:focus{
  width     : 50% !important;
}

.focus\:w-3\/4:focus{
  width     : 75% !important;
}

.focus\:w-1\/5:focus{
  width     : 20% !important;
}

.focus\:w-2\/5:focus{
  width     : 40% !important;
}

.focus\:w-3\/5:focus{
  width     : 60% !important;
}

.focus\:w-4\/5:focus{
  width     : 80% !important;
}

.focus\:w-1\/6:focus{
  width     : 16.666667% !important;
}

.focus\:w-2\/6:focus{
  width     : 33.333333% !important;
}

.focus\:w-3\/6:focus{
  width     : 50% !important;
}

.focus\:w-4\/6:focus{
  width     : 66.666667% !important;
}

.focus\:w-5\/6:focus{
  width     : 83.333333% !important;
}

.focus\:w-1\/12:focus{
  width     : 8.333333% !important;
}

.focus\:w-2\/12:focus{
  width     : 16.666667% !important;
}

.focus\:w-3\/12:focus{
  width     : 25% !important;
}

.focus\:w-4\/12:focus{
  width     : 33.333333% !important;
}

.focus\:w-5\/12:focus{
  width     : 41.666667% !important;
}

.focus\:w-6\/12:focus{
  width     : 50% !important;
}

.focus\:w-7\/12:focus{
  width     : 58.333333% !important;
}

.focus\:w-8\/12:focus{
  width     : 66.666667% !important;
}

.focus\:w-9\/12:focus{
  width     : 75% !important;
}

.focus\:w-10\/12:focus{
  width     : 83.333333% !important;
}

.focus\:w-11\/12:focus{
  width     : 91.666667% !important;
}

.focus\:w-full:focus{
  width     : 100% !important;
}

.focus\:w-screen:focus{
  width     : 100vw !important;
}

.focus\:w-min-content:focus{
  width     : -webkit-min-content !important;
  width     : -moz-min-content !important;
  width     : min-content !important;
}

.focus\:w-max-content:focus{
  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-auto{
  z-index     : auto !important;
}

.group:hover .group-hover\:z-0{
  z-index     : 0 !important;
}

.group:hover .group-hover\:z-10{
  z-index     : 10 !important;
}

.group:hover .group-hover\:z-20{
  z-index     : 20 !important;
}

.group:hover .group-hover\:z-30{
  z-index     : 30 !important;
}

.group:hover .group-hover\:z-40{
  z-index     : 40 !important;
}

.group:hover .group-hover\:z-50{
  z-index     : 50 !important;
}

.group:hover .group-hover\:z-auto{
  z-index     : auto !important;
}

.hover\:z-0:hover{
  z-index     : 0 !important;
}

.hover\:z-10:hover{
  z-index     : 10 !important;
}

.hover\:z-20:hover{
  z-index     : 20 !important;
}

.hover\:z-30:hover{
  z-index     : 30 !important;
}

.hover\:z-40:hover{
  z-index     : 40 !important;
}

.hover\:z-50:hover{
  z-index     : 50 !important;
}

.hover\:z-auto:hover{
  z-index     : auto !important;
}

.focus\:z-0:focus{
  z-index     : 0 !important;
}

.focus\:z-10:focus{
  z-index     : 10 !important;
}

.focus\:z-20:focus{
  z-index     : 20 !important;
}

.focus\:z-30:focus{
  z-index     : 30 !important;
}

.focus\:z-40:focus{
  z-index     : 40 !important;
}

.focus\:z-50:focus{
  z-index     : 50 !important;
}

.focus\:z-auto:focus{
  z-index     : auto !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-20{
  grid-gap     : 5rem !important;
  gap     : 5rem !important;
}

.gap-24{
  grid-gap     : 6rem !important;
  gap     : 6rem !important;
}

.gap-28{
  grid-gap     : 7rem !important;
  gap     : 7rem !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-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-96{
  grid-gap     : 24rem !important;
  gap     : 24rem !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;
}

.col-gap-0{
  grid-column-gap     : 0 !important;
  -moz-column-gap     : 0 !important;
       column-gap     : 0 !important;
}

.col-gap-1{
  grid-column-gap     : 0.25rem !important;
  -moz-column-gap     : 0.25rem !important;
       column-gap     : 0.25rem !important;
}

.col-gap-2{
  grid-column-gap     : 0.5rem !important;
  -moz-column-gap     : 0.5rem !important;
       column-gap     : 0.5rem !important;
}

.col-gap-3{
  grid-column-gap     : 0.75rem !important;
  -moz-column-gap     : 0.75rem !important;
       column-gap     : 0.75rem !important;
}

.col-gap-4{
  grid-column-gap     : 1rem !important;
  -moz-column-gap     : 1rem !important;
       column-gap     : 1rem !important;
}

.col-gap-5{
  grid-column-gap     : 1.25rem !important;
  -moz-column-gap     : 1.25rem !important;
       column-gap     : 1.25rem !important;
}

.col-gap-6{
  grid-column-gap     : 1.5rem !important;
  -moz-column-gap     : 1.5rem !important;
       column-gap     : 1.5rem !important;
}

.col-gap-7{
  grid-column-gap     : 1.75rem !important;
  -moz-column-gap     : 1.75rem !important;
       column-gap     : 1.75rem !important;
}

.col-gap-8{
  grid-column-gap     : 2rem !important;
  -moz-column-gap     : 2rem !important;
       column-gap     : 2rem !important;
}

.col-gap-9{
  grid-column-gap     : 2.25rem !important;
  -moz-column-gap     : 2.25rem !important;
       column-gap     : 2.25rem !important;
}

.col-gap-10{
  grid-column-gap     : 2.5rem !important;
  -moz-column-gap     : 2.5rem !important;
       column-gap     : 2.5rem !important;
}

.col-gap-11{
  grid-column-gap     : 2.75rem !important;
  -moz-column-gap     : 2.75rem !important;
       column-gap     : 2.75rem !important;
}

.col-gap-12{
  grid-column-gap     : 3rem !important;
  -moz-column-gap     : 3rem !important;
       column-gap     : 3rem !important;
}

.col-gap-13{
  grid-column-gap     : 3.25rem !important;
  -moz-column-gap     : 3.25rem !important;
       column-gap     : 3.25rem !important;
}

.col-gap-14{
  grid-column-gap     : 3.5rem !important;
  -moz-column-gap     : 3.5rem !important;
       column-gap     : 3.5rem !important;
}

.col-gap-15{
  grid-column-gap     : 3.75rem !important;
  -moz-column-gap     : 3.75rem !important;
       column-gap     : 3.75rem !important;
}

.col-gap-16{
  grid-column-gap     : 4rem !important;
  -moz-column-gap     : 4rem !important;
       column-gap     : 4rem !important;
}

.col-gap-20{
  grid-column-gap     : 5rem !important;
  -moz-column-gap     : 5rem !important;
       column-gap     : 5rem !important;
}

.col-gap-24{
  grid-column-gap     : 6rem !important;
  -moz-column-gap     : 6rem !important;
       column-gap     : 6rem !important;
}

.col-gap-28{
  grid-column-gap     : 7rem !important;
  -moz-column-gap     : 7rem !important;
       column-gap     : 7rem !important;
}

.col-gap-32{
  grid-column-gap     : 8rem !important;
  -moz-column-gap     : 8rem !important;
       column-gap     : 8rem !important;
}

.col-gap-36{
  grid-column-gap     : 9rem !important;
  -moz-column-gap     : 9rem !important;
       column-gap     : 9rem !important;
}

.col-gap-40{
  grid-column-gap     : 10rem !important;
  -moz-column-gap     : 10rem !important;
       column-gap     : 10rem !important;
}

.col-gap-44{
  grid-column-gap     : 11rem !important;
  -moz-column-gap     : 11rem !important;
       column-gap     : 11rem !important;
}

.col-gap-48{
  grid-column-gap     : 12rem !important;
  -moz-column-gap     : 12rem !important;
       column-gap     : 12rem !important;
}

.col-gap-52{
  grid-column-gap     : 13rem !important;
  -moz-column-gap     : 13rem !important;
       column-gap     : 13rem !important;
}

.col-gap-56{
  grid-column-gap     : 14rem !important;
  -moz-column-gap     : 14rem !important;
       column-gap     : 14rem !important;
}

.col-gap-60{
  grid-column-gap     : 15rem !important;
  -moz-column-gap     : 15rem !important;
       column-gap     : 15rem !important;
}

.col-gap-64{
  grid-column-gap     : 16rem !important;
  -moz-column-gap     : 16rem !important;
       column-gap     : 16rem !important;
}

.col-gap-72{
  grid-column-gap     : 18rem !important;
  -moz-column-gap     : 18rem !important;
       column-gap     : 18rem !important;
}

.col-gap-80{
  grid-column-gap     : 20rem !important;
  -moz-column-gap     : 20rem !important;
       column-gap     : 20rem !important;
}

.col-gap-96{
  grid-column-gap     : 24rem !important;
  -moz-column-gap     : 24rem !important;
       column-gap     : 24rem !important;
}

.col-gap-px{
  grid-column-gap     : 1px !important;
  -moz-column-gap     : 1px !important;
       column-gap     : 1px !important;
}

.col-gap-0\.5{
  grid-column-gap     : 0.125rem !important;
  -moz-column-gap     : 0.125rem !important;
       column-gap     : 0.125rem !important;
}

.col-gap-1\.5{
  grid-column-gap     : 0.375rem !important;
  -moz-column-gap     : 0.375rem !important;
       column-gap     : 0.375rem !important;
}

.col-gap-2\.5{
  grid-column-gap     : 0.625rem !important;
  -moz-column-gap     : 0.625rem !important;
       column-gap     : 0.625rem !important;
}

.col-gap-3\.5{
  grid-column-gap     : 0.875rem !important;
  -moz-column-gap     : 0.875rem !important;
       column-gap     : 0.875rem !important;
}

.col-gap-1\/2{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.col-gap-1\/3{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.col-gap-2\/3{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.col-gap-1\/4{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.col-gap-2\/4{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.col-gap-3\/4{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.col-gap-1\/5{
  grid-column-gap     : 20% !important;
  -moz-column-gap     : 20% !important;
       column-gap     : 20% !important;
}

.col-gap-2\/5{
  grid-column-gap     : 40% !important;
  -moz-column-gap     : 40% !important;
       column-gap     : 40% !important;
}

.col-gap-3\/5{
  grid-column-gap     : 60% !important;
  -moz-column-gap     : 60% !important;
       column-gap     : 60% !important;
}

.col-gap-4\/5{
  grid-column-gap     : 80% !important;
  -moz-column-gap     : 80% !important;
       column-gap     : 80% !important;
}

.col-gap-1\/6{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.col-gap-2\/6{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.col-gap-3\/6{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.col-gap-4\/6{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.col-gap-5\/6{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.col-gap-1\/12{
  grid-column-gap     : 8.333333% !important;
  -moz-column-gap     : 8.333333% !important;
       column-gap     : 8.333333% !important;
}

.col-gap-2\/12{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.col-gap-3\/12{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.col-gap-4\/12{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.col-gap-5\/12{
  grid-column-gap     : 41.666667% !important;
  -moz-column-gap     : 41.666667% !important;
       column-gap     : 41.666667% !important;
}

.col-gap-6\/12{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.col-gap-7\/12{
  grid-column-gap     : 58.333333% !important;
  -moz-column-gap     : 58.333333% !important;
       column-gap     : 58.333333% !important;
}

.col-gap-8\/12{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.col-gap-9\/12{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.col-gap-10\/12{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.col-gap-11\/12{
  grid-column-gap     : 91.666667% !important;
  -moz-column-gap     : 91.666667% !important;
       column-gap     : 91.666667% !important;
}

.col-gap-full{
  grid-column-gap     : 100% !important;
  -moz-column-gap     : 100% !important;
       column-gap     : 100% !important;
}

.row-gap-0{
  grid-row-gap     : 0 !important;
  row-gap     : 0 !important;
}

.row-gap-1{
  grid-row-gap     : 0.25rem !important;
  row-gap     : 0.25rem !important;
}

.row-gap-2{
  grid-row-gap     : 0.5rem !important;
  row-gap     : 0.5rem !important;
}

.row-gap-3{
  grid-row-gap     : 0.75rem !important;
  row-gap     : 0.75rem !important;
}

.row-gap-4{
  grid-row-gap     : 1rem !important;
  row-gap     : 1rem !important;
}

.row-gap-5{
  grid-row-gap     : 1.25rem !important;
  row-gap     : 1.25rem !important;
}

.row-gap-6{
  grid-row-gap     : 1.5rem !important;
  row-gap     : 1.5rem !important;
}

.row-gap-7{
  grid-row-gap     : 1.75rem !important;
  row-gap     : 1.75rem !important;
}

.row-gap-8{
  grid-row-gap     : 2rem !important;
  row-gap     : 2rem !important;
}

.row-gap-9{
  grid-row-gap     : 2.25rem !important;
  row-gap     : 2.25rem !important;
}

.row-gap-10{
  grid-row-gap     : 2.5rem !important;
  row-gap     : 2.5rem !important;
}

.row-gap-11{
  grid-row-gap     : 2.75rem !important;
  row-gap     : 2.75rem !important;
}

.row-gap-12{
  grid-row-gap     : 3rem !important;
  row-gap     : 3rem !important;
}

.row-gap-13{
  grid-row-gap     : 3.25rem !important;
  row-gap     : 3.25rem !important;
}

.row-gap-14{
  grid-row-gap     : 3.5rem !important;
  row-gap     : 3.5rem !important;
}

.row-gap-15{
  grid-row-gap     : 3.75rem !important;
  row-gap     : 3.75rem !important;
}

.row-gap-16{
  grid-row-gap     : 4rem !important;
  row-gap     : 4rem !important;
}

.row-gap-20{
  grid-row-gap     : 5rem !important;
  row-gap     : 5rem !important;
}

.row-gap-24{
  grid-row-gap     : 6rem !important;
  row-gap     : 6rem !important;
}

.row-gap-28{
  grid-row-gap     : 7rem !important;
  row-gap     : 7rem !important;
}

.row-gap-32{
  grid-row-gap     : 8rem !important;
  row-gap     : 8rem !important;
}

.row-gap-36{
  grid-row-gap     : 9rem !important;
  row-gap     : 9rem !important;
}

.row-gap-40{
  grid-row-gap     : 10rem !important;
  row-gap     : 10rem !important;
}

.row-gap-44{
  grid-row-gap     : 11rem !important;
  row-gap     : 11rem !important;
}

.row-gap-48{
  grid-row-gap     : 12rem !important;
  row-gap     : 12rem !important;
}

.row-gap-52{
  grid-row-gap     : 13rem !important;
  row-gap     : 13rem !important;
}

.row-gap-56{
  grid-row-gap     : 14rem !important;
  row-gap     : 14rem !important;
}

.row-gap-60{
  grid-row-gap     : 15rem !important;
  row-gap     : 15rem !important;
}

.row-gap-64{
  grid-row-gap     : 16rem !important;
  row-gap     : 16rem !important;
}

.row-gap-72{
  grid-row-gap     : 18rem !important;
  row-gap     : 18rem !important;
}

.row-gap-80{
  grid-row-gap     : 20rem !important;
  row-gap     : 20rem !important;
}

.row-gap-96{
  grid-row-gap     : 24rem !important;
  row-gap     : 24rem !important;
}

.row-gap-px{
  grid-row-gap     : 1px !important;
  row-gap     : 1px !important;
}

.row-gap-0\.5{
  grid-row-gap     : 0.125rem !important;
  row-gap     : 0.125rem !important;
}

.row-gap-1\.5{
  grid-row-gap     : 0.375rem !important;
  row-gap     : 0.375rem !important;
}

.row-gap-2\.5{
  grid-row-gap     : 0.625rem !important;
  row-gap     : 0.625rem !important;
}

.row-gap-3\.5{
  grid-row-gap     : 0.875rem !important;
  row-gap     : 0.875rem !important;
}

.row-gap-1\/2{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.row-gap-1\/3{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.row-gap-2\/3{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.row-gap-1\/4{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.row-gap-2\/4{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.row-gap-3\/4{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.row-gap-1\/5{
  grid-row-gap     : 20% !important;
  row-gap     : 20% !important;
}

.row-gap-2\/5{
  grid-row-gap     : 40% !important;
  row-gap     : 40% !important;
}

.row-gap-3\/5{
  grid-row-gap     : 60% !important;
  row-gap     : 60% !important;
}

.row-gap-4\/5{
  grid-row-gap     : 80% !important;
  row-gap     : 80% !important;
}

.row-gap-1\/6{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.row-gap-2\/6{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.row-gap-3\/6{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.row-gap-4\/6{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.row-gap-5\/6{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.row-gap-1\/12{
  grid-row-gap     : 8.333333% !important;
  row-gap     : 8.333333% !important;
}

.row-gap-2\/12{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.row-gap-3\/12{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.row-gap-4\/12{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.row-gap-5\/12{
  grid-row-gap     : 41.666667% !important;
  row-gap     : 41.666667% !important;
}

.row-gap-6\/12{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.row-gap-7\/12{
  grid-row-gap     : 58.333333% !important;
  row-gap     : 58.333333% !important;
}

.row-gap-8\/12{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.row-gap-9\/12{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.row-gap-10\/12{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.row-gap-11\/12{
  grid-row-gap     : 91.666667% !important;
  row-gap     : 91.666667% !important;
}

.row-gap-full{
  grid-row-gap     : 100% !important;
  row-gap     : 100% !important;
}

.group:hover .group-hover\:gap-0{
  grid-gap     : 0 !important;
  gap     : 0 !important;
}

.group:hover .group-hover\:gap-1{
  grid-gap     : 0.25rem !important;
  gap     : 0.25rem !important;
}

.group:hover .group-hover\:gap-2{
  grid-gap     : 0.5rem !important;
  gap     : 0.5rem !important;
}

.group:hover .group-hover\:gap-3{
  grid-gap     : 0.75rem !important;
  gap     : 0.75rem !important;
}

.group:hover .group-hover\:gap-4{
  grid-gap     : 1rem !important;
  gap     : 1rem !important;
}

.group:hover .group-hover\:gap-5{
  grid-gap     : 1.25rem !important;
  gap     : 1.25rem !important;
}

.group:hover .group-hover\:gap-6{
  grid-gap     : 1.5rem !important;
  gap     : 1.5rem !important;
}

.group:hover .group-hover\:gap-7{
  grid-gap     : 1.75rem !important;
  gap     : 1.75rem !important;
}

.group:hover .group-hover\:gap-8{
  grid-gap     : 2rem !important;
  gap     : 2rem !important;
}

.group:hover .group-hover\:gap-9{
  grid-gap     : 2.25rem !important;
  gap     : 2.25rem !important;
}

.group:hover .group-hover\:gap-10{
  grid-gap     : 2.5rem !important;
  gap     : 2.5rem !important;
}

.group:hover .group-hover\:gap-11{
  grid-gap     : 2.75rem !important;
  gap     : 2.75rem !important;
}

.group:hover .group-hover\:gap-12{
  grid-gap     : 3rem !important;
  gap     : 3rem !important;
}

.group:hover .group-hover\:gap-13{
  grid-gap     : 3.25rem !important;
  gap     : 3.25rem !important;
}

.group:hover .group-hover\:gap-14{
  grid-gap     : 3.5rem !important;
  gap     : 3.5rem !important;
}

.group:hover .group-hover\:gap-15{
  grid-gap     : 3.75rem !important;
  gap     : 3.75rem !important;
}

.group:hover .group-hover\:gap-16{
  grid-gap     : 4rem !important;
  gap     : 4rem !important;
}

.group:hover .group-hover\:gap-20{
  grid-gap     : 5rem !important;
  gap     : 5rem !important;
}

.group:hover .group-hover\:gap-24{
  grid-gap     : 6rem !important;
  gap     : 6rem !important;
}

.group:hover .group-hover\:gap-28{
  grid-gap     : 7rem !important;
  gap     : 7rem !important;
}

.group:hover .group-hover\:gap-32{
  grid-gap     : 8rem !important;
  gap     : 8rem !important;
}

.group:hover .group-hover\:gap-36{
  grid-gap     : 9rem !important;
  gap     : 9rem !important;
}

.group:hover .group-hover\:gap-40{
  grid-gap     : 10rem !important;
  gap     : 10rem !important;
}

.group:hover .group-hover\:gap-44{
  grid-gap     : 11rem !important;
  gap     : 11rem !important;
}

.group:hover .group-hover\:gap-48{
  grid-gap     : 12rem !important;
  gap     : 12rem !important;
}

.group:hover .group-hover\:gap-52{
  grid-gap     : 13rem !important;
  gap     : 13rem !important;
}

.group:hover .group-hover\:gap-56{
  grid-gap     : 14rem !important;
  gap     : 14rem !important;
}

.group:hover .group-hover\:gap-60{
  grid-gap     : 15rem !important;
  gap     : 15rem !important;
}

.group:hover .group-hover\:gap-64{
  grid-gap     : 16rem !important;
  gap     : 16rem !important;
}

.group:hover .group-hover\:gap-72{
  grid-gap     : 18rem !important;
  gap     : 18rem !important;
}

.group:hover .group-hover\:gap-80{
  grid-gap     : 20rem !important;
  gap     : 20rem !important;
}

.group:hover .group-hover\:gap-96{
  grid-gap     : 24rem !important;
  gap     : 24rem !important;
}

.group:hover .group-hover\:gap-px{
  grid-gap     : 1px !important;
  gap     : 1px !important;
}

.group:hover .group-hover\:gap-0\.5{
  grid-gap     : 0.125rem !important;
  gap     : 0.125rem !important;
}

.group:hover .group-hover\:gap-1\.5{
  grid-gap     : 0.375rem !important;
  gap     : 0.375rem !important;
}

.group:hover .group-hover\:gap-2\.5{
  grid-gap     : 0.625rem !important;
  gap     : 0.625rem !important;
}

.group:hover .group-hover\:gap-3\.5{
  grid-gap     : 0.875rem !important;
  gap     : 0.875rem !important;
}

.group:hover .group-hover\:gap-1\/2{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.group:hover .group-hover\:gap-1\/3{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.group:hover .group-hover\:gap-2\/3{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.group:hover .group-hover\:gap-1\/4{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.group:hover .group-hover\:gap-2\/4{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.group:hover .group-hover\:gap-3\/4{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.group:hover .group-hover\:gap-1\/5{
  grid-gap     : 20% !important;
  gap     : 20% !important;
}

.group:hover .group-hover\:gap-2\/5{
  grid-gap     : 40% !important;
  gap     : 40% !important;
}

.group:hover .group-hover\:gap-3\/5{
  grid-gap     : 60% !important;
  gap     : 60% !important;
}

.group:hover .group-hover\:gap-4\/5{
  grid-gap     : 80% !important;
  gap     : 80% !important;
}

.group:hover .group-hover\:gap-1\/6{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.group:hover .group-hover\:gap-2\/6{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.group:hover .group-hover\:gap-3\/6{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.group:hover .group-hover\:gap-4\/6{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.group:hover .group-hover\:gap-5\/6{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.group:hover .group-hover\:gap-1\/12{
  grid-gap     : 8.333333% !important;
  gap     : 8.333333% !important;
}

.group:hover .group-hover\:gap-2\/12{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.group:hover .group-hover\:gap-3\/12{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.group:hover .group-hover\:gap-4\/12{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.group:hover .group-hover\:gap-5\/12{
  grid-gap     : 41.666667% !important;
  gap     : 41.666667% !important;
}

.group:hover .group-hover\:gap-6\/12{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.group:hover .group-hover\:gap-7\/12{
  grid-gap     : 58.333333% !important;
  gap     : 58.333333% !important;
}

.group:hover .group-hover\:gap-8\/12{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.group:hover .group-hover\:gap-9\/12{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.group:hover .group-hover\:gap-10\/12{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.group:hover .group-hover\:gap-11\/12{
  grid-gap     : 91.666667% !important;
  gap     : 91.666667% !important;
}

.group:hover .group-hover\:gap-full{
  grid-gap     : 100% !important;
  gap     : 100% !important;
}

.group:hover .group-hover\:col-gap-0{
  grid-column-gap     : 0 !important;
  -moz-column-gap     : 0 !important;
       column-gap     : 0 !important;
}

.group:hover .group-hover\:col-gap-1{
  grid-column-gap     : 0.25rem !important;
  -moz-column-gap     : 0.25rem !important;
       column-gap     : 0.25rem !important;
}

.group:hover .group-hover\:col-gap-2{
  grid-column-gap     : 0.5rem !important;
  -moz-column-gap     : 0.5rem !important;
       column-gap     : 0.5rem !important;
}

.group:hover .group-hover\:col-gap-3{
  grid-column-gap     : 0.75rem !important;
  -moz-column-gap     : 0.75rem !important;
       column-gap     : 0.75rem !important;
}

.group:hover .group-hover\:col-gap-4{
  grid-column-gap     : 1rem !important;
  -moz-column-gap     : 1rem !important;
       column-gap     : 1rem !important;
}

.group:hover .group-hover\:col-gap-5{
  grid-column-gap     : 1.25rem !important;
  -moz-column-gap     : 1.25rem !important;
       column-gap     : 1.25rem !important;
}

.group:hover .group-hover\:col-gap-6{
  grid-column-gap     : 1.5rem !important;
  -moz-column-gap     : 1.5rem !important;
       column-gap     : 1.5rem !important;
}

.group:hover .group-hover\:col-gap-7{
  grid-column-gap     : 1.75rem !important;
  -moz-column-gap     : 1.75rem !important;
       column-gap     : 1.75rem !important;
}

.group:hover .group-hover\:col-gap-8{
  grid-column-gap     : 2rem !important;
  -moz-column-gap     : 2rem !important;
       column-gap     : 2rem !important;
}

.group:hover .group-hover\:col-gap-9{
  grid-column-gap     : 2.25rem !important;
  -moz-column-gap     : 2.25rem !important;
       column-gap     : 2.25rem !important;
}

.group:hover .group-hover\:col-gap-10{
  grid-column-gap     : 2.5rem !important;
  -moz-column-gap     : 2.5rem !important;
       column-gap     : 2.5rem !important;
}

.group:hover .group-hover\:col-gap-11{
  grid-column-gap     : 2.75rem !important;
  -moz-column-gap     : 2.75rem !important;
       column-gap     : 2.75rem !important;
}

.group:hover .group-hover\:col-gap-12{
  grid-column-gap     : 3rem !important;
  -moz-column-gap     : 3rem !important;
       column-gap     : 3rem !important;
}

.group:hover .group-hover\:col-gap-13{
  grid-column-gap     : 3.25rem !important;
  -moz-column-gap     : 3.25rem !important;
       column-gap     : 3.25rem !important;
}

.group:hover .group-hover\:col-gap-14{
  grid-column-gap     : 3.5rem !important;
  -moz-column-gap     : 3.5rem !important;
       column-gap     : 3.5rem !important;
}

.group:hover .group-hover\:col-gap-15{
  grid-column-gap     : 3.75rem !important;
  -moz-column-gap     : 3.75rem !important;
       column-gap     : 3.75rem !important;
}

.group:hover .group-hover\:col-gap-16{
  grid-column-gap     : 4rem !important;
  -moz-column-gap     : 4rem !important;
       column-gap     : 4rem !important;
}

.group:hover .group-hover\:col-gap-20{
  grid-column-gap     : 5rem !important;
  -moz-column-gap     : 5rem !important;
       column-gap     : 5rem !important;
}

.group:hover .group-hover\:col-gap-24{
  grid-column-gap     : 6rem !important;
  -moz-column-gap     : 6rem !important;
       column-gap     : 6rem !important;
}

.group:hover .group-hover\:col-gap-28{
  grid-column-gap     : 7rem !important;
  -moz-column-gap     : 7rem !important;
       column-gap     : 7rem !important;
}

.group:hover .group-hover\:col-gap-32{
  grid-column-gap     : 8rem !important;
  -moz-column-gap     : 8rem !important;
       column-gap     : 8rem !important;
}

.group:hover .group-hover\:col-gap-36{
  grid-column-gap     : 9rem !important;
  -moz-column-gap     : 9rem !important;
       column-gap     : 9rem !important;
}

.group:hover .group-hover\:col-gap-40{
  grid-column-gap     : 10rem !important;
  -moz-column-gap     : 10rem !important;
       column-gap     : 10rem !important;
}

.group:hover .group-hover\:col-gap-44{
  grid-column-gap     : 11rem !important;
  -moz-column-gap     : 11rem !important;
       column-gap     : 11rem !important;
}

.group:hover .group-hover\:col-gap-48{
  grid-column-gap     : 12rem !important;
  -moz-column-gap     : 12rem !important;
       column-gap     : 12rem !important;
}

.group:hover .group-hover\:col-gap-52{
  grid-column-gap     : 13rem !important;
  -moz-column-gap     : 13rem !important;
       column-gap     : 13rem !important;
}

.group:hover .group-hover\:col-gap-56{
  grid-column-gap     : 14rem !important;
  -moz-column-gap     : 14rem !important;
       column-gap     : 14rem !important;
}

.group:hover .group-hover\:col-gap-60{
  grid-column-gap     : 15rem !important;
  -moz-column-gap     : 15rem !important;
       column-gap     : 15rem !important;
}

.group:hover .group-hover\:col-gap-64{
  grid-column-gap     : 16rem !important;
  -moz-column-gap     : 16rem !important;
       column-gap     : 16rem !important;
}

.group:hover .group-hover\:col-gap-72{
  grid-column-gap     : 18rem !important;
  -moz-column-gap     : 18rem !important;
       column-gap     : 18rem !important;
}

.group:hover .group-hover\:col-gap-80{
  grid-column-gap     : 20rem !important;
  -moz-column-gap     : 20rem !important;
       column-gap     : 20rem !important;
}

.group:hover .group-hover\:col-gap-96{
  grid-column-gap     : 24rem !important;
  -moz-column-gap     : 24rem !important;
       column-gap     : 24rem !important;
}

.group:hover .group-hover\:col-gap-px{
  grid-column-gap     : 1px !important;
  -moz-column-gap     : 1px !important;
       column-gap     : 1px !important;
}

.group:hover .group-hover\:col-gap-0\.5{
  grid-column-gap     : 0.125rem !important;
  -moz-column-gap     : 0.125rem !important;
       column-gap     : 0.125rem !important;
}

.group:hover .group-hover\:col-gap-1\.5{
  grid-column-gap     : 0.375rem !important;
  -moz-column-gap     : 0.375rem !important;
       column-gap     : 0.375rem !important;
}

.group:hover .group-hover\:col-gap-2\.5{
  grid-column-gap     : 0.625rem !important;
  -moz-column-gap     : 0.625rem !important;
       column-gap     : 0.625rem !important;
}

.group:hover .group-hover\:col-gap-3\.5{
  grid-column-gap     : 0.875rem !important;
  -moz-column-gap     : 0.875rem !important;
       column-gap     : 0.875rem !important;
}

.group:hover .group-hover\:col-gap-1\/2{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.group:hover .group-hover\:col-gap-1\/3{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.group:hover .group-hover\:col-gap-2\/3{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.group:hover .group-hover\:col-gap-1\/4{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.group:hover .group-hover\:col-gap-2\/4{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.group:hover .group-hover\:col-gap-3\/4{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.group:hover .group-hover\:col-gap-1\/5{
  grid-column-gap     : 20% !important;
  -moz-column-gap     : 20% !important;
       column-gap     : 20% !important;
}

.group:hover .group-hover\:col-gap-2\/5{
  grid-column-gap     : 40% !important;
  -moz-column-gap     : 40% !important;
       column-gap     : 40% !important;
}

.group:hover .group-hover\:col-gap-3\/5{
  grid-column-gap     : 60% !important;
  -moz-column-gap     : 60% !important;
       column-gap     : 60% !important;
}

.group:hover .group-hover\:col-gap-4\/5{
  grid-column-gap     : 80% !important;
  -moz-column-gap     : 80% !important;
       column-gap     : 80% !important;
}

.group:hover .group-hover\:col-gap-1\/6{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.group:hover .group-hover\:col-gap-2\/6{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.group:hover .group-hover\:col-gap-3\/6{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.group:hover .group-hover\:col-gap-4\/6{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.group:hover .group-hover\:col-gap-5\/6{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.group:hover .group-hover\:col-gap-1\/12{
  grid-column-gap     : 8.333333% !important;
  -moz-column-gap     : 8.333333% !important;
       column-gap     : 8.333333% !important;
}

.group:hover .group-hover\:col-gap-2\/12{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.group:hover .group-hover\:col-gap-3\/12{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.group:hover .group-hover\:col-gap-4\/12{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.group:hover .group-hover\:col-gap-5\/12{
  grid-column-gap     : 41.666667% !important;
  -moz-column-gap     : 41.666667% !important;
       column-gap     : 41.666667% !important;
}

.group:hover .group-hover\:col-gap-6\/12{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.group:hover .group-hover\:col-gap-7\/12{
  grid-column-gap     : 58.333333% !important;
  -moz-column-gap     : 58.333333% !important;
       column-gap     : 58.333333% !important;
}

.group:hover .group-hover\:col-gap-8\/12{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.group:hover .group-hover\:col-gap-9\/12{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.group:hover .group-hover\:col-gap-10\/12{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.group:hover .group-hover\:col-gap-11\/12{
  grid-column-gap     : 91.666667% !important;
  -moz-column-gap     : 91.666667% !important;
       column-gap     : 91.666667% !important;
}

.group:hover .group-hover\:col-gap-full{
  grid-column-gap     : 100% !important;
  -moz-column-gap     : 100% !important;
       column-gap     : 100% !important;
}

.group:hover .group-hover\:row-gap-0{
  grid-row-gap     : 0 !important;
  row-gap     : 0 !important;
}

.group:hover .group-hover\:row-gap-1{
  grid-row-gap     : 0.25rem !important;
  row-gap     : 0.25rem !important;
}

.group:hover .group-hover\:row-gap-2{
  grid-row-gap     : 0.5rem !important;
  row-gap     : 0.5rem !important;
}

.group:hover .group-hover\:row-gap-3{
  grid-row-gap     : 0.75rem !important;
  row-gap     : 0.75rem !important;
}

.group:hover .group-hover\:row-gap-4{
  grid-row-gap     : 1rem !important;
  row-gap     : 1rem !important;
}

.group:hover .group-hover\:row-gap-5{
  grid-row-gap     : 1.25rem !important;
  row-gap     : 1.25rem !important;
}

.group:hover .group-hover\:row-gap-6{
  grid-row-gap     : 1.5rem !important;
  row-gap     : 1.5rem !important;
}

.group:hover .group-hover\:row-gap-7{
  grid-row-gap     : 1.75rem !important;
  row-gap     : 1.75rem !important;
}

.group:hover .group-hover\:row-gap-8{
  grid-row-gap     : 2rem !important;
  row-gap     : 2rem !important;
}

.group:hover .group-hover\:row-gap-9{
  grid-row-gap     : 2.25rem !important;
  row-gap     : 2.25rem !important;
}

.group:hover .group-hover\:row-gap-10{
  grid-row-gap     : 2.5rem !important;
  row-gap     : 2.5rem !important;
}

.group:hover .group-hover\:row-gap-11{
  grid-row-gap     : 2.75rem !important;
  row-gap     : 2.75rem !important;
}

.group:hover .group-hover\:row-gap-12{
  grid-row-gap     : 3rem !important;
  row-gap     : 3rem !important;
}

.group:hover .group-hover\:row-gap-13{
  grid-row-gap     : 3.25rem !important;
  row-gap     : 3.25rem !important;
}

.group:hover .group-hover\:row-gap-14{
  grid-row-gap     : 3.5rem !important;
  row-gap     : 3.5rem !important;
}

.group:hover .group-hover\:row-gap-15{
  grid-row-gap     : 3.75rem !important;
  row-gap     : 3.75rem !important;
}

.group:hover .group-hover\:row-gap-16{
  grid-row-gap     : 4rem !important;
  row-gap     : 4rem !important;
}

.group:hover .group-hover\:row-gap-20{
  grid-row-gap     : 5rem !important;
  row-gap     : 5rem !important;
}

.group:hover .group-hover\:row-gap-24{
  grid-row-gap     : 6rem !important;
  row-gap     : 6rem !important;
}

.group:hover .group-hover\:row-gap-28{
  grid-row-gap     : 7rem !important;
  row-gap     : 7rem !important;
}

.group:hover .group-hover\:row-gap-32{
  grid-row-gap     : 8rem !important;
  row-gap     : 8rem !important;
}

.group:hover .group-hover\:row-gap-36{
  grid-row-gap     : 9rem !important;
  row-gap     : 9rem !important;
}

.group:hover .group-hover\:row-gap-40{
  grid-row-gap     : 10rem !important;
  row-gap     : 10rem !important;
}

.group:hover .group-hover\:row-gap-44{
  grid-row-gap     : 11rem !important;
  row-gap     : 11rem !important;
}

.group:hover .group-hover\:row-gap-48{
  grid-row-gap     : 12rem !important;
  row-gap     : 12rem !important;
}

.group:hover .group-hover\:row-gap-52{
  grid-row-gap     : 13rem !important;
  row-gap     : 13rem !important;
}

.group:hover .group-hover\:row-gap-56{
  grid-row-gap     : 14rem !important;
  row-gap     : 14rem !important;
}

.group:hover .group-hover\:row-gap-60{
  grid-row-gap     : 15rem !important;
  row-gap     : 15rem !important;
}

.group:hover .group-hover\:row-gap-64{
  grid-row-gap     : 16rem !important;
  row-gap     : 16rem !important;
}

.group:hover .group-hover\:row-gap-72{
  grid-row-gap     : 18rem !important;
  row-gap     : 18rem !important;
}

.group:hover .group-hover\:row-gap-80{
  grid-row-gap     : 20rem !important;
  row-gap     : 20rem !important;
}

.group:hover .group-hover\:row-gap-96{
  grid-row-gap     : 24rem !important;
  row-gap     : 24rem !important;
}

.group:hover .group-hover\:row-gap-px{
  grid-row-gap     : 1px !important;
  row-gap     : 1px !important;
}

.group:hover .group-hover\:row-gap-0\.5{
  grid-row-gap     : 0.125rem !important;
  row-gap     : 0.125rem !important;
}

.group:hover .group-hover\:row-gap-1\.5{
  grid-row-gap     : 0.375rem !important;
  row-gap     : 0.375rem !important;
}

.group:hover .group-hover\:row-gap-2\.5{
  grid-row-gap     : 0.625rem !important;
  row-gap     : 0.625rem !important;
}

.group:hover .group-hover\:row-gap-3\.5{
  grid-row-gap     : 0.875rem !important;
  row-gap     : 0.875rem !important;
}

.group:hover .group-hover\:row-gap-1\/2{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.group:hover .group-hover\:row-gap-1\/3{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.group:hover .group-hover\:row-gap-2\/3{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.group:hover .group-hover\:row-gap-1\/4{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.group:hover .group-hover\:row-gap-2\/4{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.group:hover .group-hover\:row-gap-3\/4{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.group:hover .group-hover\:row-gap-1\/5{
  grid-row-gap     : 20% !important;
  row-gap     : 20% !important;
}

.group:hover .group-hover\:row-gap-2\/5{
  grid-row-gap     : 40% !important;
  row-gap     : 40% !important;
}

.group:hover .group-hover\:row-gap-3\/5{
  grid-row-gap     : 60% !important;
  row-gap     : 60% !important;
}

.group:hover .group-hover\:row-gap-4\/5{
  grid-row-gap     : 80% !important;
  row-gap     : 80% !important;
}

.group:hover .group-hover\:row-gap-1\/6{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.group:hover .group-hover\:row-gap-2\/6{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.group:hover .group-hover\:row-gap-3\/6{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.group:hover .group-hover\:row-gap-4\/6{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.group:hover .group-hover\:row-gap-5\/6{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.group:hover .group-hover\:row-gap-1\/12{
  grid-row-gap     : 8.333333% !important;
  row-gap     : 8.333333% !important;
}

.group:hover .group-hover\:row-gap-2\/12{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.group:hover .group-hover\:row-gap-3\/12{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.group:hover .group-hover\:row-gap-4\/12{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.group:hover .group-hover\:row-gap-5\/12{
  grid-row-gap     : 41.666667% !important;
  row-gap     : 41.666667% !important;
}

.group:hover .group-hover\:row-gap-6\/12{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.group:hover .group-hover\:row-gap-7\/12{
  grid-row-gap     : 58.333333% !important;
  row-gap     : 58.333333% !important;
}

.group:hover .group-hover\:row-gap-8\/12{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.group:hover .group-hover\:row-gap-9\/12{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.group:hover .group-hover\:row-gap-10\/12{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.group:hover .group-hover\:row-gap-11\/12{
  grid-row-gap     : 91.666667% !important;
  row-gap     : 91.666667% !important;
}

.group:hover .group-hover\:row-gap-full{
  grid-row-gap     : 100% !important;
  row-gap     : 100% !important;
}

.hover\:gap-0:hover{
  grid-gap     : 0 !important;
  gap     : 0 !important;
}

.hover\:gap-1:hover{
  grid-gap     : 0.25rem !important;
  gap     : 0.25rem !important;
}

.hover\:gap-2:hover{
  grid-gap     : 0.5rem !important;
  gap     : 0.5rem !important;
}

.hover\:gap-3:hover{
  grid-gap     : 0.75rem !important;
  gap     : 0.75rem !important;
}

.hover\:gap-4:hover{
  grid-gap     : 1rem !important;
  gap     : 1rem !important;
}

.hover\:gap-5:hover{
  grid-gap     : 1.25rem !important;
  gap     : 1.25rem !important;
}

.hover\:gap-6:hover{
  grid-gap     : 1.5rem !important;
  gap     : 1.5rem !important;
}

.hover\:gap-7:hover{
  grid-gap     : 1.75rem !important;
  gap     : 1.75rem !important;
}

.hover\:gap-8:hover{
  grid-gap     : 2rem !important;
  gap     : 2rem !important;
}

.hover\:gap-9:hover{
  grid-gap     : 2.25rem !important;
  gap     : 2.25rem !important;
}

.hover\:gap-10:hover{
  grid-gap     : 2.5rem !important;
  gap     : 2.5rem !important;
}

.hover\:gap-11:hover{
  grid-gap     : 2.75rem !important;
  gap     : 2.75rem !important;
}

.hover\:gap-12:hover{
  grid-gap     : 3rem !important;
  gap     : 3rem !important;
}

.hover\:gap-13:hover{
  grid-gap     : 3.25rem !important;
  gap     : 3.25rem !important;
}

.hover\:gap-14:hover{
  grid-gap     : 3.5rem !important;
  gap     : 3.5rem !important;
}

.hover\:gap-15:hover{
  grid-gap     : 3.75rem !important;
  gap     : 3.75rem !important;
}

.hover\:gap-16:hover{
  grid-gap     : 4rem !important;
  gap     : 4rem !important;
}

.hover\:gap-20:hover{
  grid-gap     : 5rem !important;
  gap     : 5rem !important;
}

.hover\:gap-24:hover{
  grid-gap     : 6rem !important;
  gap     : 6rem !important;
}

.hover\:gap-28:hover{
  grid-gap     : 7rem !important;
  gap     : 7rem !important;
}

.hover\:gap-32:hover{
  grid-gap     : 8rem !important;
  gap     : 8rem !important;
}

.hover\:gap-36:hover{
  grid-gap     : 9rem !important;
  gap     : 9rem !important;
}

.hover\:gap-40:hover{
  grid-gap     : 10rem !important;
  gap     : 10rem !important;
}

.hover\:gap-44:hover{
  grid-gap     : 11rem !important;
  gap     : 11rem !important;
}

.hover\:gap-48:hover{
  grid-gap     : 12rem !important;
  gap     : 12rem !important;
}

.hover\:gap-52:hover{
  grid-gap     : 13rem !important;
  gap     : 13rem !important;
}

.hover\:gap-56:hover{
  grid-gap     : 14rem !important;
  gap     : 14rem !important;
}

.hover\:gap-60:hover{
  grid-gap     : 15rem !important;
  gap     : 15rem !important;
}

.hover\:gap-64:hover{
  grid-gap     : 16rem !important;
  gap     : 16rem !important;
}

.hover\:gap-72:hover{
  grid-gap     : 18rem !important;
  gap     : 18rem !important;
}

.hover\:gap-80:hover{
  grid-gap     : 20rem !important;
  gap     : 20rem !important;
}

.hover\:gap-96:hover{
  grid-gap     : 24rem !important;
  gap     : 24rem !important;
}

.hover\:gap-px:hover{
  grid-gap     : 1px !important;
  gap     : 1px !important;
}

.hover\:gap-0\.5:hover{
  grid-gap     : 0.125rem !important;
  gap     : 0.125rem !important;
}

.hover\:gap-1\.5:hover{
  grid-gap     : 0.375rem !important;
  gap     : 0.375rem !important;
}

.hover\:gap-2\.5:hover{
  grid-gap     : 0.625rem !important;
  gap     : 0.625rem !important;
}

.hover\:gap-3\.5:hover{
  grid-gap     : 0.875rem !important;
  gap     : 0.875rem !important;
}

.hover\:gap-1\/2:hover{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.hover\:gap-1\/3:hover{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.hover\:gap-2\/3:hover{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.hover\:gap-1\/4:hover{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.hover\:gap-2\/4:hover{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.hover\:gap-3\/4:hover{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.hover\:gap-1\/5:hover{
  grid-gap     : 20% !important;
  gap     : 20% !important;
}

.hover\:gap-2\/5:hover{
  grid-gap     : 40% !important;
  gap     : 40% !important;
}

.hover\:gap-3\/5:hover{
  grid-gap     : 60% !important;
  gap     : 60% !important;
}

.hover\:gap-4\/5:hover{
  grid-gap     : 80% !important;
  gap     : 80% !important;
}

.hover\:gap-1\/6:hover{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.hover\:gap-2\/6:hover{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.hover\:gap-3\/6:hover{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.hover\:gap-4\/6:hover{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.hover\:gap-5\/6:hover{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.hover\:gap-1\/12:hover{
  grid-gap     : 8.333333% !important;
  gap     : 8.333333% !important;
}

.hover\:gap-2\/12:hover{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.hover\:gap-3\/12:hover{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.hover\:gap-4\/12:hover{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.hover\:gap-5\/12:hover{
  grid-gap     : 41.666667% !important;
  gap     : 41.666667% !important;
}

.hover\:gap-6\/12:hover{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.hover\:gap-7\/12:hover{
  grid-gap     : 58.333333% !important;
  gap     : 58.333333% !important;
}

.hover\:gap-8\/12:hover{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.hover\:gap-9\/12:hover{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.hover\:gap-10\/12:hover{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.hover\:gap-11\/12:hover{
  grid-gap     : 91.666667% !important;
  gap     : 91.666667% !important;
}

.hover\:gap-full:hover{
  grid-gap     : 100% !important;
  gap     : 100% !important;
}

.hover\:col-gap-0:hover{
  grid-column-gap     : 0 !important;
  -moz-column-gap     : 0 !important;
       column-gap     : 0 !important;
}

.hover\:col-gap-1:hover{
  grid-column-gap     : 0.25rem !important;
  -moz-column-gap     : 0.25rem !important;
       column-gap     : 0.25rem !important;
}

.hover\:col-gap-2:hover{
  grid-column-gap     : 0.5rem !important;
  -moz-column-gap     : 0.5rem !important;
       column-gap     : 0.5rem !important;
}

.hover\:col-gap-3:hover{
  grid-column-gap     : 0.75rem !important;
  -moz-column-gap     : 0.75rem !important;
       column-gap     : 0.75rem !important;
}

.hover\:col-gap-4:hover{
  grid-column-gap     : 1rem !important;
  -moz-column-gap     : 1rem !important;
       column-gap     : 1rem !important;
}

.hover\:col-gap-5:hover{
  grid-column-gap     : 1.25rem !important;
  -moz-column-gap     : 1.25rem !important;
       column-gap     : 1.25rem !important;
}

.hover\:col-gap-6:hover{
  grid-column-gap     : 1.5rem !important;
  -moz-column-gap     : 1.5rem !important;
       column-gap     : 1.5rem !important;
}

.hover\:col-gap-7:hover{
  grid-column-gap     : 1.75rem !important;
  -moz-column-gap     : 1.75rem !important;
       column-gap     : 1.75rem !important;
}

.hover\:col-gap-8:hover{
  grid-column-gap     : 2rem !important;
  -moz-column-gap     : 2rem !important;
       column-gap     : 2rem !important;
}

.hover\:col-gap-9:hover{
  grid-column-gap     : 2.25rem !important;
  -moz-column-gap     : 2.25rem !important;
       column-gap     : 2.25rem !important;
}

.hover\:col-gap-10:hover{
  grid-column-gap     : 2.5rem !important;
  -moz-column-gap     : 2.5rem !important;
       column-gap     : 2.5rem !important;
}

.hover\:col-gap-11:hover{
  grid-column-gap     : 2.75rem !important;
  -moz-column-gap     : 2.75rem !important;
       column-gap     : 2.75rem !important;
}

.hover\:col-gap-12:hover{
  grid-column-gap     : 3rem !important;
  -moz-column-gap     : 3rem !important;
       column-gap     : 3rem !important;
}

.hover\:col-gap-13:hover{
  grid-column-gap     : 3.25rem !important;
  -moz-column-gap     : 3.25rem !important;
       column-gap     : 3.25rem !important;
}

.hover\:col-gap-14:hover{
  grid-column-gap     : 3.5rem !important;
  -moz-column-gap     : 3.5rem !important;
       column-gap     : 3.5rem !important;
}

.hover\:col-gap-15:hover{
  grid-column-gap     : 3.75rem !important;
  -moz-column-gap     : 3.75rem !important;
       column-gap     : 3.75rem !important;
}

.hover\:col-gap-16:hover{
  grid-column-gap     : 4rem !important;
  -moz-column-gap     : 4rem !important;
       column-gap     : 4rem !important;
}

.hover\:col-gap-20:hover{
  grid-column-gap     : 5rem !important;
  -moz-column-gap     : 5rem !important;
       column-gap     : 5rem !important;
}

.hover\:col-gap-24:hover{
  grid-column-gap     : 6rem !important;
  -moz-column-gap     : 6rem !important;
       column-gap     : 6rem !important;
}

.hover\:col-gap-28:hover{
  grid-column-gap     : 7rem !important;
  -moz-column-gap     : 7rem !important;
       column-gap     : 7rem !important;
}

.hover\:col-gap-32:hover{
  grid-column-gap     : 8rem !important;
  -moz-column-gap     : 8rem !important;
       column-gap     : 8rem !important;
}

.hover\:col-gap-36:hover{
  grid-column-gap     : 9rem !important;
  -moz-column-gap     : 9rem !important;
       column-gap     : 9rem !important;
}

.hover\:col-gap-40:hover{
  grid-column-gap     : 10rem !important;
  -moz-column-gap     : 10rem !important;
       column-gap     : 10rem !important;
}

.hover\:col-gap-44:hover{
  grid-column-gap     : 11rem !important;
  -moz-column-gap     : 11rem !important;
       column-gap     : 11rem !important;
}

.hover\:col-gap-48:hover{
  grid-column-gap     : 12rem !important;
  -moz-column-gap     : 12rem !important;
       column-gap     : 12rem !important;
}

.hover\:col-gap-52:hover{
  grid-column-gap     : 13rem !important;
  -moz-column-gap     : 13rem !important;
       column-gap     : 13rem !important;
}

.hover\:col-gap-56:hover{
  grid-column-gap     : 14rem !important;
  -moz-column-gap     : 14rem !important;
       column-gap     : 14rem !important;
}

.hover\:col-gap-60:hover{
  grid-column-gap     : 15rem !important;
  -moz-column-gap     : 15rem !important;
       column-gap     : 15rem !important;
}

.hover\:col-gap-64:hover{
  grid-column-gap     : 16rem !important;
  -moz-column-gap     : 16rem !important;
       column-gap     : 16rem !important;
}

.hover\:col-gap-72:hover{
  grid-column-gap     : 18rem !important;
  -moz-column-gap     : 18rem !important;
       column-gap     : 18rem !important;
}

.hover\:col-gap-80:hover{
  grid-column-gap     : 20rem !important;
  -moz-column-gap     : 20rem !important;
       column-gap     : 20rem !important;
}

.hover\:col-gap-96:hover{
  grid-column-gap     : 24rem !important;
  -moz-column-gap     : 24rem !important;
       column-gap     : 24rem !important;
}

.hover\:col-gap-px:hover{
  grid-column-gap     : 1px !important;
  -moz-column-gap     : 1px !important;
       column-gap     : 1px !important;
}

.hover\:col-gap-0\.5:hover{
  grid-column-gap     : 0.125rem !important;
  -moz-column-gap     : 0.125rem !important;
       column-gap     : 0.125rem !important;
}

.hover\:col-gap-1\.5:hover{
  grid-column-gap     : 0.375rem !important;
  -moz-column-gap     : 0.375rem !important;
       column-gap     : 0.375rem !important;
}

.hover\:col-gap-2\.5:hover{
  grid-column-gap     : 0.625rem !important;
  -moz-column-gap     : 0.625rem !important;
       column-gap     : 0.625rem !important;
}

.hover\:col-gap-3\.5:hover{
  grid-column-gap     : 0.875rem !important;
  -moz-column-gap     : 0.875rem !important;
       column-gap     : 0.875rem !important;
}

.hover\:col-gap-1\/2:hover{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.hover\:col-gap-1\/3:hover{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.hover\:col-gap-2\/3:hover{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.hover\:col-gap-1\/4:hover{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.hover\:col-gap-2\/4:hover{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.hover\:col-gap-3\/4:hover{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.hover\:col-gap-1\/5:hover{
  grid-column-gap     : 20% !important;
  -moz-column-gap     : 20% !important;
       column-gap     : 20% !important;
}

.hover\:col-gap-2\/5:hover{
  grid-column-gap     : 40% !important;
  -moz-column-gap     : 40% !important;
       column-gap     : 40% !important;
}

.hover\:col-gap-3\/5:hover{
  grid-column-gap     : 60% !important;
  -moz-column-gap     : 60% !important;
       column-gap     : 60% !important;
}

.hover\:col-gap-4\/5:hover{
  grid-column-gap     : 80% !important;
  -moz-column-gap     : 80% !important;
       column-gap     : 80% !important;
}

.hover\:col-gap-1\/6:hover{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.hover\:col-gap-2\/6:hover{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.hover\:col-gap-3\/6:hover{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.hover\:col-gap-4\/6:hover{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.hover\:col-gap-5\/6:hover{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.hover\:col-gap-1\/12:hover{
  grid-column-gap     : 8.333333% !important;
  -moz-column-gap     : 8.333333% !important;
       column-gap     : 8.333333% !important;
}

.hover\:col-gap-2\/12:hover{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.hover\:col-gap-3\/12:hover{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.hover\:col-gap-4\/12:hover{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.hover\:col-gap-5\/12:hover{
  grid-column-gap     : 41.666667% !important;
  -moz-column-gap     : 41.666667% !important;
       column-gap     : 41.666667% !important;
}

.hover\:col-gap-6\/12:hover{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.hover\:col-gap-7\/12:hover{
  grid-column-gap     : 58.333333% !important;
  -moz-column-gap     : 58.333333% !important;
       column-gap     : 58.333333% !important;
}

.hover\:col-gap-8\/12:hover{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.hover\:col-gap-9\/12:hover{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.hover\:col-gap-10\/12:hover{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.hover\:col-gap-11\/12:hover{
  grid-column-gap     : 91.666667% !important;
  -moz-column-gap     : 91.666667% !important;
       column-gap     : 91.666667% !important;
}

.hover\:col-gap-full:hover{
  grid-column-gap     : 100% !important;
  -moz-column-gap     : 100% !important;
       column-gap     : 100% !important;
}

.hover\:row-gap-0:hover{
  grid-row-gap     : 0 !important;
  row-gap     : 0 !important;
}

.hover\:row-gap-1:hover{
  grid-row-gap     : 0.25rem !important;
  row-gap     : 0.25rem !important;
}

.hover\:row-gap-2:hover{
  grid-row-gap     : 0.5rem !important;
  row-gap     : 0.5rem !important;
}

.hover\:row-gap-3:hover{
  grid-row-gap     : 0.75rem !important;
  row-gap     : 0.75rem !important;
}

.hover\:row-gap-4:hover{
  grid-row-gap     : 1rem !important;
  row-gap     : 1rem !important;
}

.hover\:row-gap-5:hover{
  grid-row-gap     : 1.25rem !important;
  row-gap     : 1.25rem !important;
}

.hover\:row-gap-6:hover{
  grid-row-gap     : 1.5rem !important;
  row-gap     : 1.5rem !important;
}

.hover\:row-gap-7:hover{
  grid-row-gap     : 1.75rem !important;
  row-gap     : 1.75rem !important;
}

.hover\:row-gap-8:hover{
  grid-row-gap     : 2rem !important;
  row-gap     : 2rem !important;
}

.hover\:row-gap-9:hover{
  grid-row-gap     : 2.25rem !important;
  row-gap     : 2.25rem !important;
}

.hover\:row-gap-10:hover{
  grid-row-gap     : 2.5rem !important;
  row-gap     : 2.5rem !important;
}

.hover\:row-gap-11:hover{
  grid-row-gap     : 2.75rem !important;
  row-gap     : 2.75rem !important;
}

.hover\:row-gap-12:hover{
  grid-row-gap     : 3rem !important;
  row-gap     : 3rem !important;
}

.hover\:row-gap-13:hover{
  grid-row-gap     : 3.25rem !important;
  row-gap     : 3.25rem !important;
}

.hover\:row-gap-14:hover{
  grid-row-gap     : 3.5rem !important;
  row-gap     : 3.5rem !important;
}

.hover\:row-gap-15:hover{
  grid-row-gap     : 3.75rem !important;
  row-gap     : 3.75rem !important;
}

.hover\:row-gap-16:hover{
  grid-row-gap     : 4rem !important;
  row-gap     : 4rem !important;
}

.hover\:row-gap-20:hover{
  grid-row-gap     : 5rem !important;
  row-gap     : 5rem !important;
}

.hover\:row-gap-24:hover{
  grid-row-gap     : 6rem !important;
  row-gap     : 6rem !important;
}

.hover\:row-gap-28:hover{
  grid-row-gap     : 7rem !important;
  row-gap     : 7rem !important;
}

.hover\:row-gap-32:hover{
  grid-row-gap     : 8rem !important;
  row-gap     : 8rem !important;
}

.hover\:row-gap-36:hover{
  grid-row-gap     : 9rem !important;
  row-gap     : 9rem !important;
}

.hover\:row-gap-40:hover{
  grid-row-gap     : 10rem !important;
  row-gap     : 10rem !important;
}

.hover\:row-gap-44:hover{
  grid-row-gap     : 11rem !important;
  row-gap     : 11rem !important;
}

.hover\:row-gap-48:hover{
  grid-row-gap     : 12rem !important;
  row-gap     : 12rem !important;
}

.hover\:row-gap-52:hover{
  grid-row-gap     : 13rem !important;
  row-gap     : 13rem !important;
}

.hover\:row-gap-56:hover{
  grid-row-gap     : 14rem !important;
  row-gap     : 14rem !important;
}

.hover\:row-gap-60:hover{
  grid-row-gap     : 15rem !important;
  row-gap     : 15rem !important;
}

.hover\:row-gap-64:hover{
  grid-row-gap     : 16rem !important;
  row-gap     : 16rem !important;
}

.hover\:row-gap-72:hover{
  grid-row-gap     : 18rem !important;
  row-gap     : 18rem !important;
}

.hover\:row-gap-80:hover{
  grid-row-gap     : 20rem !important;
  row-gap     : 20rem !important;
}

.hover\:row-gap-96:hover{
  grid-row-gap     : 24rem !important;
  row-gap     : 24rem !important;
}

.hover\:row-gap-px:hover{
  grid-row-gap     : 1px !important;
  row-gap     : 1px !important;
}

.hover\:row-gap-0\.5:hover{
  grid-row-gap     : 0.125rem !important;
  row-gap     : 0.125rem !important;
}

.hover\:row-gap-1\.5:hover{
  grid-row-gap     : 0.375rem !important;
  row-gap     : 0.375rem !important;
}

.hover\:row-gap-2\.5:hover{
  grid-row-gap     : 0.625rem !important;
  row-gap     : 0.625rem !important;
}

.hover\:row-gap-3\.5:hover{
  grid-row-gap     : 0.875rem !important;
  row-gap     : 0.875rem !important;
}

.hover\:row-gap-1\/2:hover{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.hover\:row-gap-1\/3:hover{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.hover\:row-gap-2\/3:hover{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.hover\:row-gap-1\/4:hover{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.hover\:row-gap-2\/4:hover{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.hover\:row-gap-3\/4:hover{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.hover\:row-gap-1\/5:hover{
  grid-row-gap     : 20% !important;
  row-gap     : 20% !important;
}

.hover\:row-gap-2\/5:hover{
  grid-row-gap     : 40% !important;
  row-gap     : 40% !important;
}

.hover\:row-gap-3\/5:hover{
  grid-row-gap     : 60% !important;
  row-gap     : 60% !important;
}

.hover\:row-gap-4\/5:hover{
  grid-row-gap     : 80% !important;
  row-gap     : 80% !important;
}

.hover\:row-gap-1\/6:hover{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.hover\:row-gap-2\/6:hover{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.hover\:row-gap-3\/6:hover{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.hover\:row-gap-4\/6:hover{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.hover\:row-gap-5\/6:hover{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.hover\:row-gap-1\/12:hover{
  grid-row-gap     : 8.333333% !important;
  row-gap     : 8.333333% !important;
}

.hover\:row-gap-2\/12:hover{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.hover\:row-gap-3\/12:hover{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.hover\:row-gap-4\/12:hover{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.hover\:row-gap-5\/12:hover{
  grid-row-gap     : 41.666667% !important;
  row-gap     : 41.666667% !important;
}

.hover\:row-gap-6\/12:hover{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.hover\:row-gap-7\/12:hover{
  grid-row-gap     : 58.333333% !important;
  row-gap     : 58.333333% !important;
}

.hover\:row-gap-8\/12:hover{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.hover\:row-gap-9\/12:hover{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.hover\:row-gap-10\/12:hover{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.hover\:row-gap-11\/12:hover{
  grid-row-gap     : 91.666667% !important;
  row-gap     : 91.666667% !important;
}

.hover\:row-gap-full:hover{
  grid-row-gap     : 100% !important;
  row-gap     : 100% !important;
}

.focus\:gap-0:focus{
  grid-gap     : 0 !important;
  gap     : 0 !important;
}

.focus\:gap-1:focus{
  grid-gap     : 0.25rem !important;
  gap     : 0.25rem !important;
}

.focus\:gap-2:focus{
  grid-gap     : 0.5rem !important;
  gap     : 0.5rem !important;
}

.focus\:gap-3:focus{
  grid-gap     : 0.75rem !important;
  gap     : 0.75rem !important;
}

.focus\:gap-4:focus{
  grid-gap     : 1rem !important;
  gap     : 1rem !important;
}

.focus\:gap-5:focus{
  grid-gap     : 1.25rem !important;
  gap     : 1.25rem !important;
}

.focus\:gap-6:focus{
  grid-gap     : 1.5rem !important;
  gap     : 1.5rem !important;
}

.focus\:gap-7:focus{
  grid-gap     : 1.75rem !important;
  gap     : 1.75rem !important;
}

.focus\:gap-8:focus{
  grid-gap     : 2rem !important;
  gap     : 2rem !important;
}

.focus\:gap-9:focus{
  grid-gap     : 2.25rem !important;
  gap     : 2.25rem !important;
}

.focus\:gap-10:focus{
  grid-gap     : 2.5rem !important;
  gap     : 2.5rem !important;
}

.focus\:gap-11:focus{
  grid-gap     : 2.75rem !important;
  gap     : 2.75rem !important;
}

.focus\:gap-12:focus{
  grid-gap     : 3rem !important;
  gap     : 3rem !important;
}

.focus\:gap-13:focus{
  grid-gap     : 3.25rem !important;
  gap     : 3.25rem !important;
}

.focus\:gap-14:focus{
  grid-gap     : 3.5rem !important;
  gap     : 3.5rem !important;
}

.focus\:gap-15:focus{
  grid-gap     : 3.75rem !important;
  gap     : 3.75rem !important;
}

.focus\:gap-16:focus{
  grid-gap     : 4rem !important;
  gap     : 4rem !important;
}

.focus\:gap-20:focus{
  grid-gap     : 5rem !important;
  gap     : 5rem !important;
}

.focus\:gap-24:focus{
  grid-gap     : 6rem !important;
  gap     : 6rem !important;
}

.focus\:gap-28:focus{
  grid-gap     : 7rem !important;
  gap     : 7rem !important;
}

.focus\:gap-32:focus{
  grid-gap     : 8rem !important;
  gap     : 8rem !important;
}

.focus\:gap-36:focus{
  grid-gap     : 9rem !important;
  gap     : 9rem !important;
}

.focus\:gap-40:focus{
  grid-gap     : 10rem !important;
  gap     : 10rem !important;
}

.focus\:gap-44:focus{
  grid-gap     : 11rem !important;
  gap     : 11rem !important;
}

.focus\:gap-48:focus{
  grid-gap     : 12rem !important;
  gap     : 12rem !important;
}

.focus\:gap-52:focus{
  grid-gap     : 13rem !important;
  gap     : 13rem !important;
}

.focus\:gap-56:focus{
  grid-gap     : 14rem !important;
  gap     : 14rem !important;
}

.focus\:gap-60:focus{
  grid-gap     : 15rem !important;
  gap     : 15rem !important;
}

.focus\:gap-64:focus{
  grid-gap     : 16rem !important;
  gap     : 16rem !important;
}

.focus\:gap-72:focus{
  grid-gap     : 18rem !important;
  gap     : 18rem !important;
}

.focus\:gap-80:focus{
  grid-gap     : 20rem !important;
  gap     : 20rem !important;
}

.focus\:gap-96:focus{
  grid-gap     : 24rem !important;
  gap     : 24rem !important;
}

.focus\:gap-px:focus{
  grid-gap     : 1px !important;
  gap     : 1px !important;
}

.focus\:gap-0\.5:focus{
  grid-gap     : 0.125rem !important;
  gap     : 0.125rem !important;
}

.focus\:gap-1\.5:focus{
  grid-gap     : 0.375rem !important;
  gap     : 0.375rem !important;
}

.focus\:gap-2\.5:focus{
  grid-gap     : 0.625rem !important;
  gap     : 0.625rem !important;
}

.focus\:gap-3\.5:focus{
  grid-gap     : 0.875rem !important;
  gap     : 0.875rem !important;
}

.focus\:gap-1\/2:focus{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.focus\:gap-1\/3:focus{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.focus\:gap-2\/3:focus{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.focus\:gap-1\/4:focus{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.focus\:gap-2\/4:focus{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.focus\:gap-3\/4:focus{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.focus\:gap-1\/5:focus{
  grid-gap     : 20% !important;
  gap     : 20% !important;
}

.focus\:gap-2\/5:focus{
  grid-gap     : 40% !important;
  gap     : 40% !important;
}

.focus\:gap-3\/5:focus{
  grid-gap     : 60% !important;
  gap     : 60% !important;
}

.focus\:gap-4\/5:focus{
  grid-gap     : 80% !important;
  gap     : 80% !important;
}

.focus\:gap-1\/6:focus{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.focus\:gap-2\/6:focus{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.focus\:gap-3\/6:focus{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.focus\:gap-4\/6:focus{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.focus\:gap-5\/6:focus{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.focus\:gap-1\/12:focus{
  grid-gap     : 8.333333% !important;
  gap     : 8.333333% !important;
}

.focus\:gap-2\/12:focus{
  grid-gap     : 16.666667% !important;
  gap     : 16.666667% !important;
}

.focus\:gap-3\/12:focus{
  grid-gap     : 25% !important;
  gap     : 25% !important;
}

.focus\:gap-4\/12:focus{
  grid-gap     : 33.333333% !important;
  gap     : 33.333333% !important;
}

.focus\:gap-5\/12:focus{
  grid-gap     : 41.666667% !important;
  gap     : 41.666667% !important;
}

.focus\:gap-6\/12:focus{
  grid-gap     : 50% !important;
  gap     : 50% !important;
}

.focus\:gap-7\/12:focus{
  grid-gap     : 58.333333% !important;
  gap     : 58.333333% !important;
}

.focus\:gap-8\/12:focus{
  grid-gap     : 66.666667% !important;
  gap     : 66.666667% !important;
}

.focus\:gap-9\/12:focus{
  grid-gap     : 75% !important;
  gap     : 75% !important;
}

.focus\:gap-10\/12:focus{
  grid-gap     : 83.333333% !important;
  gap     : 83.333333% !important;
}

.focus\:gap-11\/12:focus{
  grid-gap     : 91.666667% !important;
  gap     : 91.666667% !important;
}

.focus\:gap-full:focus{
  grid-gap     : 100% !important;
  gap     : 100% !important;
}

.focus\:col-gap-0:focus{
  grid-column-gap     : 0 !important;
  -moz-column-gap     : 0 !important;
       column-gap     : 0 !important;
}

.focus\:col-gap-1:focus{
  grid-column-gap     : 0.25rem !important;
  -moz-column-gap     : 0.25rem !important;
       column-gap     : 0.25rem !important;
}

.focus\:col-gap-2:focus{
  grid-column-gap     : 0.5rem !important;
  -moz-column-gap     : 0.5rem !important;
       column-gap     : 0.5rem !important;
}

.focus\:col-gap-3:focus{
  grid-column-gap     : 0.75rem !important;
  -moz-column-gap     : 0.75rem !important;
       column-gap     : 0.75rem !important;
}

.focus\:col-gap-4:focus{
  grid-column-gap     : 1rem !important;
  -moz-column-gap     : 1rem !important;
       column-gap     : 1rem !important;
}

.focus\:col-gap-5:focus{
  grid-column-gap     : 1.25rem !important;
  -moz-column-gap     : 1.25rem !important;
       column-gap     : 1.25rem !important;
}

.focus\:col-gap-6:focus{
  grid-column-gap     : 1.5rem !important;
  -moz-column-gap     : 1.5rem !important;
       column-gap     : 1.5rem !important;
}

.focus\:col-gap-7:focus{
  grid-column-gap     : 1.75rem !important;
  -moz-column-gap     : 1.75rem !important;
       column-gap     : 1.75rem !important;
}

.focus\:col-gap-8:focus{
  grid-column-gap     : 2rem !important;
  -moz-column-gap     : 2rem !important;
       column-gap     : 2rem !important;
}

.focus\:col-gap-9:focus{
  grid-column-gap     : 2.25rem !important;
  -moz-column-gap     : 2.25rem !important;
       column-gap     : 2.25rem !important;
}

.focus\:col-gap-10:focus{
  grid-column-gap     : 2.5rem !important;
  -moz-column-gap     : 2.5rem !important;
       column-gap     : 2.5rem !important;
}

.focus\:col-gap-11:focus{
  grid-column-gap     : 2.75rem !important;
  -moz-column-gap     : 2.75rem !important;
       column-gap     : 2.75rem !important;
}

.focus\:col-gap-12:focus{
  grid-column-gap     : 3rem !important;
  -moz-column-gap     : 3rem !important;
       column-gap     : 3rem !important;
}

.focus\:col-gap-13:focus{
  grid-column-gap     : 3.25rem !important;
  -moz-column-gap     : 3.25rem !important;
       column-gap     : 3.25rem !important;
}

.focus\:col-gap-14:focus{
  grid-column-gap     : 3.5rem !important;
  -moz-column-gap     : 3.5rem !important;
       column-gap     : 3.5rem !important;
}

.focus\:col-gap-15:focus{
  grid-column-gap     : 3.75rem !important;
  -moz-column-gap     : 3.75rem !important;
       column-gap     : 3.75rem !important;
}

.focus\:col-gap-16:focus{
  grid-column-gap     : 4rem !important;
  -moz-column-gap     : 4rem !important;
       column-gap     : 4rem !important;
}

.focus\:col-gap-20:focus{
  grid-column-gap     : 5rem !important;
  -moz-column-gap     : 5rem !important;
       column-gap     : 5rem !important;
}

.focus\:col-gap-24:focus{
  grid-column-gap     : 6rem !important;
  -moz-column-gap     : 6rem !important;
       column-gap     : 6rem !important;
}

.focus\:col-gap-28:focus{
  grid-column-gap     : 7rem !important;
  -moz-column-gap     : 7rem !important;
       column-gap     : 7rem !important;
}

.focus\:col-gap-32:focus{
  grid-column-gap     : 8rem !important;
  -moz-column-gap     : 8rem !important;
       column-gap     : 8rem !important;
}

.focus\:col-gap-36:focus{
  grid-column-gap     : 9rem !important;
  -moz-column-gap     : 9rem !important;
       column-gap     : 9rem !important;
}

.focus\:col-gap-40:focus{
  grid-column-gap     : 10rem !important;
  -moz-column-gap     : 10rem !important;
       column-gap     : 10rem !important;
}

.focus\:col-gap-44:focus{
  grid-column-gap     : 11rem !important;
  -moz-column-gap     : 11rem !important;
       column-gap     : 11rem !important;
}

.focus\:col-gap-48:focus{
  grid-column-gap     : 12rem !important;
  -moz-column-gap     : 12rem !important;
       column-gap     : 12rem !important;
}

.focus\:col-gap-52:focus{
  grid-column-gap     : 13rem !important;
  -moz-column-gap     : 13rem !important;
       column-gap     : 13rem !important;
}

.focus\:col-gap-56:focus{
  grid-column-gap     : 14rem !important;
  -moz-column-gap     : 14rem !important;
       column-gap     : 14rem !important;
}

.focus\:col-gap-60:focus{
  grid-column-gap     : 15rem !important;
  -moz-column-gap     : 15rem !important;
       column-gap     : 15rem !important;
}

.focus\:col-gap-64:focus{
  grid-column-gap     : 16rem !important;
  -moz-column-gap     : 16rem !important;
       column-gap     : 16rem !important;
}

.focus\:col-gap-72:focus{
  grid-column-gap     : 18rem !important;
  -moz-column-gap     : 18rem !important;
       column-gap     : 18rem !important;
}

.focus\:col-gap-80:focus{
  grid-column-gap     : 20rem !important;
  -moz-column-gap     : 20rem !important;
       column-gap     : 20rem !important;
}

.focus\:col-gap-96:focus{
  grid-column-gap     : 24rem !important;
  -moz-column-gap     : 24rem !important;
       column-gap     : 24rem !important;
}

.focus\:col-gap-px:focus{
  grid-column-gap     : 1px !important;
  -moz-column-gap     : 1px !important;
       column-gap     : 1px !important;
}

.focus\:col-gap-0\.5:focus{
  grid-column-gap     : 0.125rem !important;
  -moz-column-gap     : 0.125rem !important;
       column-gap     : 0.125rem !important;
}

.focus\:col-gap-1\.5:focus{
  grid-column-gap     : 0.375rem !important;
  -moz-column-gap     : 0.375rem !important;
       column-gap     : 0.375rem !important;
}

.focus\:col-gap-2\.5:focus{
  grid-column-gap     : 0.625rem !important;
  -moz-column-gap     : 0.625rem !important;
       column-gap     : 0.625rem !important;
}

.focus\:col-gap-3\.5:focus{
  grid-column-gap     : 0.875rem !important;
  -moz-column-gap     : 0.875rem !important;
       column-gap     : 0.875rem !important;
}

.focus\:col-gap-1\/2:focus{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.focus\:col-gap-1\/3:focus{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.focus\:col-gap-2\/3:focus{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.focus\:col-gap-1\/4:focus{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.focus\:col-gap-2\/4:focus{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.focus\:col-gap-3\/4:focus{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.focus\:col-gap-1\/5:focus{
  grid-column-gap     : 20% !important;
  -moz-column-gap     : 20% !important;
       column-gap     : 20% !important;
}

.focus\:col-gap-2\/5:focus{
  grid-column-gap     : 40% !important;
  -moz-column-gap     : 40% !important;
       column-gap     : 40% !important;
}

.focus\:col-gap-3\/5:focus{
  grid-column-gap     : 60% !important;
  -moz-column-gap     : 60% !important;
       column-gap     : 60% !important;
}

.focus\:col-gap-4\/5:focus{
  grid-column-gap     : 80% !important;
  -moz-column-gap     : 80% !important;
       column-gap     : 80% !important;
}

.focus\:col-gap-1\/6:focus{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.focus\:col-gap-2\/6:focus{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.focus\:col-gap-3\/6:focus{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.focus\:col-gap-4\/6:focus{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.focus\:col-gap-5\/6:focus{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.focus\:col-gap-1\/12:focus{
  grid-column-gap     : 8.333333% !important;
  -moz-column-gap     : 8.333333% !important;
       column-gap     : 8.333333% !important;
}

.focus\:col-gap-2\/12:focus{
  grid-column-gap     : 16.666667% !important;
  -moz-column-gap     : 16.666667% !important;
       column-gap     : 16.666667% !important;
}

.focus\:col-gap-3\/12:focus{
  grid-column-gap     : 25% !important;
  -moz-column-gap     : 25% !important;
       column-gap     : 25% !important;
}

.focus\:col-gap-4\/12:focus{
  grid-column-gap     : 33.333333% !important;
  -moz-column-gap     : 33.333333% !important;
       column-gap     : 33.333333% !important;
}

.focus\:col-gap-5\/12:focus{
  grid-column-gap     : 41.666667% !important;
  -moz-column-gap     : 41.666667% !important;
       column-gap     : 41.666667% !important;
}

.focus\:col-gap-6\/12:focus{
  grid-column-gap     : 50% !important;
  -moz-column-gap     : 50% !important;
       column-gap     : 50% !important;
}

.focus\:col-gap-7\/12:focus{
  grid-column-gap     : 58.333333% !important;
  -moz-column-gap     : 58.333333% !important;
       column-gap     : 58.333333% !important;
}

.focus\:col-gap-8\/12:focus{
  grid-column-gap     : 66.666667% !important;
  -moz-column-gap     : 66.666667% !important;
       column-gap     : 66.666667% !important;
}

.focus\:col-gap-9\/12:focus{
  grid-column-gap     : 75% !important;
  -moz-column-gap     : 75% !important;
       column-gap     : 75% !important;
}

.focus\:col-gap-10\/12:focus{
  grid-column-gap     : 83.333333% !important;
  -moz-column-gap     : 83.333333% !important;
       column-gap     : 83.333333% !important;
}

.focus\:col-gap-11\/12:focus{
  grid-column-gap     : 91.666667% !important;
  -moz-column-gap     : 91.666667% !important;
       column-gap     : 91.666667% !important;
}

.focus\:col-gap-full:focus{
  grid-column-gap     : 100% !important;
  -moz-column-gap     : 100% !important;
       column-gap     : 100% !important;
}

.focus\:row-gap-0:focus{
  grid-row-gap     : 0 !important;
  row-gap     : 0 !important;
}

.focus\:row-gap-1:focus{
  grid-row-gap     : 0.25rem !important;
  row-gap     : 0.25rem !important;
}

.focus\:row-gap-2:focus{
  grid-row-gap     : 0.5rem !important;
  row-gap     : 0.5rem !important;
}

.focus\:row-gap-3:focus{
  grid-row-gap     : 0.75rem !important;
  row-gap     : 0.75rem !important;
}

.focus\:row-gap-4:focus{
  grid-row-gap     : 1rem !important;
  row-gap     : 1rem !important;
}

.focus\:row-gap-5:focus{
  grid-row-gap     : 1.25rem !important;
  row-gap     : 1.25rem !important;
}

.focus\:row-gap-6:focus{
  grid-row-gap     : 1.5rem !important;
  row-gap     : 1.5rem !important;
}

.focus\:row-gap-7:focus{
  grid-row-gap     : 1.75rem !important;
  row-gap     : 1.75rem !important;
}

.focus\:row-gap-8:focus{
  grid-row-gap     : 2rem !important;
  row-gap     : 2rem !important;
}

.focus\:row-gap-9:focus{
  grid-row-gap     : 2.25rem !important;
  row-gap     : 2.25rem !important;
}

.focus\:row-gap-10:focus{
  grid-row-gap     : 2.5rem !important;
  row-gap     : 2.5rem !important;
}

.focus\:row-gap-11:focus{
  grid-row-gap     : 2.75rem !important;
  row-gap     : 2.75rem !important;
}

.focus\:row-gap-12:focus{
  grid-row-gap     : 3rem !important;
  row-gap     : 3rem !important;
}

.focus\:row-gap-13:focus{
  grid-row-gap     : 3.25rem !important;
  row-gap     : 3.25rem !important;
}

.focus\:row-gap-14:focus{
  grid-row-gap     : 3.5rem !important;
  row-gap     : 3.5rem !important;
}

.focus\:row-gap-15:focus{
  grid-row-gap     : 3.75rem !important;
  row-gap     : 3.75rem !important;
}

.focus\:row-gap-16:focus{
  grid-row-gap     : 4rem !important;
  row-gap     : 4rem !important;
}

.focus\:row-gap-20:focus{
  grid-row-gap     : 5rem !important;
  row-gap     : 5rem !important;
}

.focus\:row-gap-24:focus{
  grid-row-gap     : 6rem !important;
  row-gap     : 6rem !important;
}

.focus\:row-gap-28:focus{
  grid-row-gap     : 7rem !important;
  row-gap     : 7rem !important;
}

.focus\:row-gap-32:focus{
  grid-row-gap     : 8rem !important;
  row-gap     : 8rem !important;
}

.focus\:row-gap-36:focus{
  grid-row-gap     : 9rem !important;
  row-gap     : 9rem !important;
}

.focus\:row-gap-40:focus{
  grid-row-gap     : 10rem !important;
  row-gap     : 10rem !important;
}

.focus\:row-gap-44:focus{
  grid-row-gap     : 11rem !important;
  row-gap     : 11rem !important;
}

.focus\:row-gap-48:focus{
  grid-row-gap     : 12rem !important;
  row-gap     : 12rem !important;
}

.focus\:row-gap-52:focus{
  grid-row-gap     : 13rem !important;
  row-gap     : 13rem !important;
}

.focus\:row-gap-56:focus{
  grid-row-gap     : 14rem !important;
  row-gap     : 14rem !important;
}

.focus\:row-gap-60:focus{
  grid-row-gap     : 15rem !important;
  row-gap     : 15rem !important;
}

.focus\:row-gap-64:focus{
  grid-row-gap     : 16rem !important;
  row-gap     : 16rem !important;
}

.focus\:row-gap-72:focus{
  grid-row-gap     : 18rem !important;
  row-gap     : 18rem !important;
}

.focus\:row-gap-80:focus{
  grid-row-gap     : 20rem !important;
  row-gap     : 20rem !important;
}

.focus\:row-gap-96:focus{
  grid-row-gap     : 24rem !important;
  row-gap     : 24rem !important;
}

.focus\:row-gap-px:focus{
  grid-row-gap     : 1px !important;
  row-gap     : 1px !important;
}

.focus\:row-gap-0\.5:focus{
  grid-row-gap     : 0.125rem !important;
  row-gap     : 0.125rem !important;
}

.focus\:row-gap-1\.5:focus{
  grid-row-gap     : 0.375rem !important;
  row-gap     : 0.375rem !important;
}

.focus\:row-gap-2\.5:focus{
  grid-row-gap     : 0.625rem !important;
  row-gap     : 0.625rem !important;
}

.focus\:row-gap-3\.5:focus{
  grid-row-gap     : 0.875rem !important;
  row-gap     : 0.875rem !important;
}

.focus\:row-gap-1\/2:focus{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.focus\:row-gap-1\/3:focus{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.focus\:row-gap-2\/3:focus{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.focus\:row-gap-1\/4:focus{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.focus\:row-gap-2\/4:focus{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.focus\:row-gap-3\/4:focus{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.focus\:row-gap-1\/5:focus{
  grid-row-gap     : 20% !important;
  row-gap     : 20% !important;
}

.focus\:row-gap-2\/5:focus{
  grid-row-gap     : 40% !important;
  row-gap     : 40% !important;
}

.focus\:row-gap-3\/5:focus{
  grid-row-gap     : 60% !important;
  row-gap     : 60% !important;
}

.focus\:row-gap-4\/5:focus{
  grid-row-gap     : 80% !important;
  row-gap     : 80% !important;
}

.focus\:row-gap-1\/6:focus{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.focus\:row-gap-2\/6:focus{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.focus\:row-gap-3\/6:focus{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.focus\:row-gap-4\/6:focus{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.focus\:row-gap-5\/6:focus{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.focus\:row-gap-1\/12:focus{
  grid-row-gap     : 8.333333% !important;
  row-gap     : 8.333333% !important;
}

.focus\:row-gap-2\/12:focus{
  grid-row-gap     : 16.666667% !important;
  row-gap     : 16.666667% !important;
}

.focus\:row-gap-3\/12:focus{
  grid-row-gap     : 25% !important;
  row-gap     : 25% !important;
}

.focus\:row-gap-4\/12:focus{
  grid-row-gap     : 33.333333% !important;
  row-gap     : 33.333333% !important;
}

.focus\:row-gap-5\/12:focus{
  grid-row-gap     : 41.666667% !important;
  row-gap     : 41.666667% !important;
}

.focus\:row-gap-6\/12:focus{
  grid-row-gap     : 50% !important;
  row-gap     : 50% !important;
}

.focus\:row-gap-7\/12:focus{
  grid-row-gap     : 58.333333% !important;
  row-gap     : 58.333333% !important;
}

.focus\:row-gap-8\/12:focus{
  grid-row-gap     : 66.666667% !important;
  row-gap     : 66.666667% !important;
}

.focus\:row-gap-9\/12:focus{
  grid-row-gap     : 75% !important;
  row-gap     : 75% !important;
}

.focus\:row-gap-10\/12:focus{
  grid-row-gap     : 83.333333% !important;
  row-gap     : 83.333333% !important;
}

.focus\:row-gap-11\/12:focus{
  grid-row-gap     : 91.666667% !important;
  row-gap     : 91.666667% !important;
}

.focus\:row-gap-full:focus{
  grid-row-gap     : 100% !important;
  row-gap     : 100% !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;
}

.group:hover .group-hover\:grid-flow-row{
  grid-auto-flow     : row !important;
}

.group:hover .group-hover\:grid-flow-col{
  grid-auto-flow     : column !important;
}

.group:hover .group-hover\:grid-flow-row-dense{
  grid-auto-flow     : row dense !important;
}

.group:hover .group-hover\:grid-flow-col-dense{
  grid-auto-flow     : column dense !important;
}

.hover\:grid-flow-row:hover{
  grid-auto-flow     : row !important;
}

.hover\:grid-flow-col:hover{
  grid-auto-flow     : column !important;
}

.hover\:grid-flow-row-dense:hover{
  grid-auto-flow     : row dense !important;
}

.hover\:grid-flow-col-dense:hover{
  grid-auto-flow     : column dense !important;
}

.focus\:grid-flow-row:focus{
  grid-auto-flow     : row !important;
}

.focus\:grid-flow-col:focus{
  grid-auto-flow     : column !important;
}

.focus\:grid-flow-row-dense:focus{
  grid-auto-flow     : row dense !important;
}

.focus\:grid-flow-col-dense:focus{
  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;
}

.group:hover .group-hover\:grid-cols-1{
  grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-2{
  grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-3{
  grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-4{
  grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-5{
  grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-6{
  grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-7{
  grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-8{
  grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-9{
  grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-10{
  grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-11{
  grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-12{
  grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-cols-none{
  grid-template-columns     : none !important;
}

.hover\:grid-cols-1:hover{
  grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-2:hover{
  grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-3:hover{
  grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-4:hover{
  grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-5:hover{
  grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-6:hover{
  grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-7:hover{
  grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-8:hover{
  grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-9:hover{
  grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-10:hover{
  grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-11:hover{
  grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-12:hover{
  grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
}

.hover\:grid-cols-none:hover{
  grid-template-columns     : none !important;
}

.focus\:grid-cols-1:focus{
  grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-2:focus{
  grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-3:focus{
  grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-4:focus{
  grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-5:focus{
  grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-6:focus{
  grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-7:focus{
  grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-8:focus{
  grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-9:focus{
  grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-10:focus{
  grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-11:focus{
  grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-12:focus{
  grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
}

.focus\:grid-cols-none:focus{
  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;
}

.group:hover .group-hover\:col-auto{
  grid-column     : auto !important;
}

.group:hover .group-hover\:col-span-1{
  grid-column     : span 1 / span 1 !important;
}

.group:hover .group-hover\:col-span-2{
  grid-column     : span 2 / span 2 !important;
}

.group:hover .group-hover\:col-span-3{
  grid-column     : span 3 / span 3 !important;
}

.group:hover .group-hover\:col-span-4{
  grid-column     : span 4 / span 4 !important;
}

.group:hover .group-hover\:col-span-5{
  grid-column     : span 5 / span 5 !important;
}

.group:hover .group-hover\:col-span-6{
  grid-column     : span 6 / span 6 !important;
}

.group:hover .group-hover\:col-span-7{
  grid-column     : span 7 / span 7 !important;
}

.group:hover .group-hover\:col-span-8{
  grid-column     : span 8 / span 8 !important;
}

.group:hover .group-hover\:col-span-9{
  grid-column     : span 9 / span 9 !important;
}

.group:hover .group-hover\:col-span-10{
  grid-column     : span 10 / span 10 !important;
}

.group:hover .group-hover\:col-span-11{
  grid-column     : span 11 / span 11 !important;
}

.group:hover .group-hover\:col-span-12{
  grid-column     : span 12 / span 12 !important;
}

.hover\:col-auto:hover{
  grid-column     : auto !important;
}

.hover\:col-span-1:hover{
  grid-column     : span 1 / span 1 !important;
}

.hover\:col-span-2:hover{
  grid-column     : span 2 / span 2 !important;
}

.hover\:col-span-3:hover{
  grid-column     : span 3 / span 3 !important;
}

.hover\:col-span-4:hover{
  grid-column     : span 4 / span 4 !important;
}

.hover\:col-span-5:hover{
  grid-column     : span 5 / span 5 !important;
}

.hover\:col-span-6:hover{
  grid-column     : span 6 / span 6 !important;
}

.hover\:col-span-7:hover{
  grid-column     : span 7 / span 7 !important;
}

.hover\:col-span-8:hover{
  grid-column     : span 8 / span 8 !important;
}

.hover\:col-span-9:hover{
  grid-column     : span 9 / span 9 !important;
}

.hover\:col-span-10:hover{
  grid-column     : span 10 / span 10 !important;
}

.hover\:col-span-11:hover{
  grid-column     : span 11 / span 11 !important;
}

.hover\:col-span-12:hover{
  grid-column     : span 12 / span 12 !important;
}

.focus\:col-auto:focus{
  grid-column     : auto !important;
}

.focus\:col-span-1:focus{
  grid-column     : span 1 / span 1 !important;
}

.focus\:col-span-2:focus{
  grid-column     : span 2 / span 2 !important;
}

.focus\:col-span-3:focus{
  grid-column     : span 3 / span 3 !important;
}

.focus\:col-span-4:focus{
  grid-column     : span 4 / span 4 !important;
}

.focus\:col-span-5:focus{
  grid-column     : span 5 / span 5 !important;
}

.focus\:col-span-6:focus{
  grid-column     : span 6 / span 6 !important;
}

.focus\:col-span-7:focus{
  grid-column     : span 7 / span 7 !important;
}

.focus\:col-span-8:focus{
  grid-column     : span 8 / span 8 !important;
}

.focus\:col-span-9:focus{
  grid-column     : span 9 / span 9 !important;
}

.focus\:col-span-10:focus{
  grid-column     : span 10 / span 10 !important;
}

.focus\:col-span-11:focus{
  grid-column     : span 11 / span 11 !important;
}

.focus\:col-span-12:focus{
  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;
}

.group:hover .group-hover\:col-start-1{
  grid-column-start     : 1 !important;
}

.group:hover .group-hover\:col-start-2{
  grid-column-start     : 2 !important;
}

.group:hover .group-hover\:col-start-3{
  grid-column-start     : 3 !important;
}

.group:hover .group-hover\:col-start-4{
  grid-column-start     : 4 !important;
}

.group:hover .group-hover\:col-start-5{
  grid-column-start     : 5 !important;
}

.group:hover .group-hover\:col-start-6{
  grid-column-start     : 6 !important;
}

.group:hover .group-hover\:col-start-7{
  grid-column-start     : 7 !important;
}

.group:hover .group-hover\:col-start-8{
  grid-column-start     : 8 !important;
}

.group:hover .group-hover\:col-start-9{
  grid-column-start     : 9 !important;
}

.group:hover .group-hover\:col-start-10{
  grid-column-start     : 10 !important;
}

.group:hover .group-hover\:col-start-11{
  grid-column-start     : 11 !important;
}

.group:hover .group-hover\:col-start-12{
  grid-column-start     : 12 !important;
}

.group:hover .group-hover\:col-start-13{
  grid-column-start     : 13 !important;
}

.group:hover .group-hover\:col-start-auto{
  grid-column-start     : auto !important;
}

.hover\:col-start-1:hover{
  grid-column-start     : 1 !important;
}

.hover\:col-start-2:hover{
  grid-column-start     : 2 !important;
}

.hover\:col-start-3:hover{
  grid-column-start     : 3 !important;
}

.hover\:col-start-4:hover{
  grid-column-start     : 4 !important;
}

.hover\:col-start-5:hover{
  grid-column-start     : 5 !important;
}

.hover\:col-start-6:hover{
  grid-column-start     : 6 !important;
}

.hover\:col-start-7:hover{
  grid-column-start     : 7 !important;
}

.hover\:col-start-8:hover{
  grid-column-start     : 8 !important;
}

.hover\:col-start-9:hover{
  grid-column-start     : 9 !important;
}

.hover\:col-start-10:hover{
  grid-column-start     : 10 !important;
}

.hover\:col-start-11:hover{
  grid-column-start     : 11 !important;
}

.hover\:col-start-12:hover{
  grid-column-start     : 12 !important;
}

.hover\:col-start-13:hover{
  grid-column-start     : 13 !important;
}

.hover\:col-start-auto:hover{
  grid-column-start     : auto !important;
}

.focus\:col-start-1:focus{
  grid-column-start     : 1 !important;
}

.focus\:col-start-2:focus{
  grid-column-start     : 2 !important;
}

.focus\:col-start-3:focus{
  grid-column-start     : 3 !important;
}

.focus\:col-start-4:focus{
  grid-column-start     : 4 !important;
}

.focus\:col-start-5:focus{
  grid-column-start     : 5 !important;
}

.focus\:col-start-6:focus{
  grid-column-start     : 6 !important;
}

.focus\:col-start-7:focus{
  grid-column-start     : 7 !important;
}

.focus\:col-start-8:focus{
  grid-column-start     : 8 !important;
}

.focus\:col-start-9:focus{
  grid-column-start     : 9 !important;
}

.focus\:col-start-10:focus{
  grid-column-start     : 10 !important;
}

.focus\:col-start-11:focus{
  grid-column-start     : 11 !important;
}

.focus\:col-start-12:focus{
  grid-column-start     : 12 !important;
}

.focus\:col-start-13:focus{
  grid-column-start     : 13 !important;
}

.focus\:col-start-auto:focus{
  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;
}

.group:hover .group-hover\:col-end-1{
  grid-column-end     : 1 !important;
}

.group:hover .group-hover\:col-end-2{
  grid-column-end     : 2 !important;
}

.group:hover .group-hover\:col-end-3{
  grid-column-end     : 3 !important;
}

.group:hover .group-hover\:col-end-4{
  grid-column-end     : 4 !important;
}

.group:hover .group-hover\:col-end-5{
  grid-column-end     : 5 !important;
}

.group:hover .group-hover\:col-end-6{
  grid-column-end     : 6 !important;
}

.group:hover .group-hover\:col-end-7{
  grid-column-end     : 7 !important;
}

.group:hover .group-hover\:col-end-8{
  grid-column-end     : 8 !important;
}

.group:hover .group-hover\:col-end-9{
  grid-column-end     : 9 !important;
}

.group:hover .group-hover\:col-end-10{
  grid-column-end     : 10 !important;
}

.group:hover .group-hover\:col-end-11{
  grid-column-end     : 11 !important;
}

.group:hover .group-hover\:col-end-12{
  grid-column-end     : 12 !important;
}

.group:hover .group-hover\:col-end-13{
  grid-column-end     : 13 !important;
}

.group:hover .group-hover\:col-end-auto{
  grid-column-end     : auto !important;
}

.hover\:col-end-1:hover{
  grid-column-end     : 1 !important;
}

.hover\:col-end-2:hover{
  grid-column-end     : 2 !important;
}

.hover\:col-end-3:hover{
  grid-column-end     : 3 !important;
}

.hover\:col-end-4:hover{
  grid-column-end     : 4 !important;
}

.hover\:col-end-5:hover{
  grid-column-end     : 5 !important;
}

.hover\:col-end-6:hover{
  grid-column-end     : 6 !important;
}

.hover\:col-end-7:hover{
  grid-column-end     : 7 !important;
}

.hover\:col-end-8:hover{
  grid-column-end     : 8 !important;
}

.hover\:col-end-9:hover{
  grid-column-end     : 9 !important;
}

.hover\:col-end-10:hover{
  grid-column-end     : 10 !important;
}

.hover\:col-end-11:hover{
  grid-column-end     : 11 !important;
}

.hover\:col-end-12:hover{
  grid-column-end     : 12 !important;
}

.hover\:col-end-13:hover{
  grid-column-end     : 13 !important;
}

.hover\:col-end-auto:hover{
  grid-column-end     : auto !important;
}

.focus\:col-end-1:focus{
  grid-column-end     : 1 !important;
}

.focus\:col-end-2:focus{
  grid-column-end     : 2 !important;
}

.focus\:col-end-3:focus{
  grid-column-end     : 3 !important;
}

.focus\:col-end-4:focus{
  grid-column-end     : 4 !important;
}

.focus\:col-end-5:focus{
  grid-column-end     : 5 !important;
}

.focus\:col-end-6:focus{
  grid-column-end     : 6 !important;
}

.focus\:col-end-7:focus{
  grid-column-end     : 7 !important;
}

.focus\:col-end-8:focus{
  grid-column-end     : 8 !important;
}

.focus\:col-end-9:focus{
  grid-column-end     : 9 !important;
}

.focus\:col-end-10:focus{
  grid-column-end     : 10 !important;
}

.focus\:col-end-11:focus{
  grid-column-end     : 11 !important;
}

.focus\:col-end-12:focus{
  grid-column-end     : 12 !important;
}

.focus\:col-end-13:focus{
  grid-column-end     : 13 !important;
}

.focus\:col-end-auto:focus{
  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;
}

.group:hover .group-hover\:grid-rows-1{
  grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-2{
  grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-3{
  grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-4{
  grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-5{
  grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-6{
  grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
}

.group:hover .group-hover\:grid-rows-none{
  grid-template-rows     : none !important;
}

.hover\:grid-rows-1:hover{
  grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-2:hover{
  grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-3:hover{
  grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-4:hover{
  grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-5:hover{
  grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-6:hover{
  grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
}

.hover\:grid-rows-none:hover{
  grid-template-rows     : none !important;
}

.focus\:grid-rows-1:focus{
  grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-2:focus{
  grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-3:focus{
  grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-4:focus{
  grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-5:focus{
  grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-6:focus{
  grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
}

.focus\:grid-rows-none:focus{
  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;
}

.group:hover .group-hover\:row-auto{
  grid-row     : auto !important;
}

.group:hover .group-hover\:row-span-1{
  grid-row     : span 1 / span 1 !important;
}

.group:hover .group-hover\:row-span-2{
  grid-row     : span 2 / span 2 !important;
}

.group:hover .group-hover\:row-span-3{
  grid-row     : span 3 / span 3 !important;
}

.group:hover .group-hover\:row-span-4{
  grid-row     : span 4 / span 4 !important;
}

.group:hover .group-hover\:row-span-5{
  grid-row     : span 5 / span 5 !important;
}

.group:hover .group-hover\:row-span-6{
  grid-row     : span 6 / span 6 !important;
}

.hover\:row-auto:hover{
  grid-row     : auto !important;
}

.hover\:row-span-1:hover{
  grid-row     : span 1 / span 1 !important;
}

.hover\:row-span-2:hover{
  grid-row     : span 2 / span 2 !important;
}

.hover\:row-span-3:hover{
  grid-row     : span 3 / span 3 !important;
}

.hover\:row-span-4:hover{
  grid-row     : span 4 / span 4 !important;
}

.hover\:row-span-5:hover{
  grid-row     : span 5 / span 5 !important;
}

.hover\:row-span-6:hover{
  grid-row     : span 6 / span 6 !important;
}

.focus\:row-auto:focus{
  grid-row     : auto !important;
}

.focus\:row-span-1:focus{
  grid-row     : span 1 / span 1 !important;
}

.focus\:row-span-2:focus{
  grid-row     : span 2 / span 2 !important;
}

.focus\:row-span-3:focus{
  grid-row     : span 3 / span 3 !important;
}

.focus\:row-span-4:focus{
  grid-row     : span 4 / span 4 !important;
}

.focus\:row-span-5:focus{
  grid-row     : span 5 / span 5 !important;
}

.focus\:row-span-6:focus{
  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;
}

.group:hover .group-hover\:row-start-1{
  grid-row-start     : 1 !important;
}

.group:hover .group-hover\:row-start-2{
  grid-row-start     : 2 !important;
}

.group:hover .group-hover\:row-start-3{
  grid-row-start     : 3 !important;
}

.group:hover .group-hover\:row-start-4{
  grid-row-start     : 4 !important;
}

.group:hover .group-hover\:row-start-5{
  grid-row-start     : 5 !important;
}

.group:hover .group-hover\:row-start-6{
  grid-row-start     : 6 !important;
}

.group:hover .group-hover\:row-start-7{
  grid-row-start     : 7 !important;
}

.group:hover .group-hover\:row-start-auto{
  grid-row-start     : auto !important;
}

.hover\:row-start-1:hover{
  grid-row-start     : 1 !important;
}

.hover\:row-start-2:hover{
  grid-row-start     : 2 !important;
}

.hover\:row-start-3:hover{
  grid-row-start     : 3 !important;
}

.hover\:row-start-4:hover{
  grid-row-start     : 4 !important;
}

.hover\:row-start-5:hover{
  grid-row-start     : 5 !important;
}

.hover\:row-start-6:hover{
  grid-row-start     : 6 !important;
}

.hover\:row-start-7:hover{
  grid-row-start     : 7 !important;
}

.hover\:row-start-auto:hover{
  grid-row-start     : auto !important;
}

.focus\:row-start-1:focus{
  grid-row-start     : 1 !important;
}

.focus\:row-start-2:focus{
  grid-row-start     : 2 !important;
}

.focus\:row-start-3:focus{
  grid-row-start     : 3 !important;
}

.focus\:row-start-4:focus{
  grid-row-start     : 4 !important;
}

.focus\:row-start-5:focus{
  grid-row-start     : 5 !important;
}

.focus\:row-start-6:focus{
  grid-row-start     : 6 !important;
}

.focus\:row-start-7:focus{
  grid-row-start     : 7 !important;
}

.focus\:row-start-auto:focus{
  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;
}

.group:hover .group-hover\:row-end-1{
  grid-row-end     : 1 !important;
}

.group:hover .group-hover\:row-end-2{
  grid-row-end     : 2 !important;
}

.group:hover .group-hover\:row-end-3{
  grid-row-end     : 3 !important;
}

.group:hover .group-hover\:row-end-4{
  grid-row-end     : 4 !important;
}

.group:hover .group-hover\:row-end-5{
  grid-row-end     : 5 !important;
}

.group:hover .group-hover\:row-end-6{
  grid-row-end     : 6 !important;
}

.group:hover .group-hover\:row-end-7{
  grid-row-end     : 7 !important;
}

.group:hover .group-hover\:row-end-auto{
  grid-row-end     : auto !important;
}

.hover\:row-end-1:hover{
  grid-row-end     : 1 !important;
}

.hover\:row-end-2:hover{
  grid-row-end     : 2 !important;
}

.hover\:row-end-3:hover{
  grid-row-end     : 3 !important;
}

.hover\:row-end-4:hover{
  grid-row-end     : 4 !important;
}

.hover\:row-end-5:hover{
  grid-row-end     : 5 !important;
}

.hover\:row-end-6:hover{
  grid-row-end     : 6 !important;
}

.hover\:row-end-7:hover{
  grid-row-end     : 7 !important;
}

.hover\:row-end-auto:hover{
  grid-row-end     : auto !important;
}

.focus\:row-end-1:focus{
  grid-row-end     : 1 !important;
}

.focus\:row-end-2:focus{
  grid-row-end     : 2 !important;
}

.focus\:row-end-3:focus{
  grid-row-end     : 3 !important;
}

.focus\:row-end-4:focus{
  grid-row-end     : 4 !important;
}

.focus\:row-end-5:focus{
  grid-row-end     : 5 !important;
}

.focus\:row-end-6:focus{
  grid-row-end     : 6 !important;
}

.focus\:row-end-7:focus{
  grid-row-end     : 7 !important;
}

.focus\:row-end-auto:focus{
  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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:transform-none{
  transform     : none !important;
}

.hover\:transform:hover{
  --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;
}

.hover\:transform-none:hover{
  transform     : none !important;
}

.focus\:transform:focus{
  --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;
}

.focus\:transform-none:focus{
  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;
}

.group:hover .group-hover\:origin-center{
  transform-origin     : center !important;
}

.group:hover .group-hover\:origin-top{
  transform-origin     : top !important;
}

.group:hover .group-hover\:origin-top-right{
  transform-origin     : top right !important;
}

.group:hover .group-hover\:origin-right{
  transform-origin     : right !important;
}

.group:hover .group-hover\:origin-bottom-right{
  transform-origin     : bottom right !important;
}

.group:hover .group-hover\:origin-bottom{
  transform-origin     : bottom !important;
}

.group:hover .group-hover\:origin-bottom-left{
  transform-origin     : bottom left !important;
}

.group:hover .group-hover\:origin-left{
  transform-origin     : left !important;
}

.group:hover .group-hover\:origin-top-left{
  transform-origin     : top left !important;
}

.hover\:origin-center:hover{
  transform-origin     : center !important;
}

.hover\:origin-top:hover{
  transform-origin     : top !important;
}

.hover\:origin-top-right:hover{
  transform-origin     : top right !important;
}

.hover\:origin-right:hover{
  transform-origin     : right !important;
}

.hover\:origin-bottom-right:hover{
  transform-origin     : bottom right !important;
}

.hover\:origin-bottom:hover{
  transform-origin     : bottom !important;
}

.hover\:origin-bottom-left:hover{
  transform-origin     : bottom left !important;
}

.hover\:origin-left:hover{
  transform-origin     : left !important;
}

.hover\:origin-top-left:hover{
  transform-origin     : top left !important;
}

.focus\:origin-center:focus{
  transform-origin     : center !important;
}

.focus\:origin-top:focus{
  transform-origin     : top !important;
}

.focus\:origin-top-right:focus{
  transform-origin     : top right !important;
}

.focus\:origin-right:focus{
  transform-origin     : right !important;
}

.focus\:origin-bottom-right:focus{
  transform-origin     : bottom right !important;
}

.focus\:origin-bottom:focus{
  transform-origin     : bottom !important;
}

.focus\:origin-bottom-left:focus{
  transform-origin     : bottom left !important;
}

.focus\:origin-left:focus{
  transform-origin     : left !important;
}

.focus\:origin-top-left:focus{
  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;
}

.group:hover .group-hover\:scale-0{
  --transform-scale-x     : 0 !important;
  --transform-scale-y     : 0 !important;
}

.group:hover .group-hover\:scale-50{
  --transform-scale-x     : .5 !important;
  --transform-scale-y     : .5 !important;
}

.group:hover .group-hover\:scale-75{
  --transform-scale-x     : .75 !important;
  --transform-scale-y     : .75 !important;
}

.group:hover .group-hover\:scale-90{
  --transform-scale-x     : .9 !important;
  --transform-scale-y     : .9 !important;
}

.group:hover .group-hover\:scale-95{
  --transform-scale-x     : .95 !important;
  --transform-scale-y     : .95 !important;
}

.group:hover .group-hover\:scale-100{
  --transform-scale-x     : 1 !important;
  --transform-scale-y     : 1 !important;
}

.group:hover .group-hover\:scale-105{
  --transform-scale-x     : 1.05 !important;
  --transform-scale-y     : 1.05 !important;
}

.group:hover .group-hover\:scale-110{
  --transform-scale-x     : 1.1 !important;
  --transform-scale-y     : 1.1 !important;
}

.group:hover .group-hover\:scale-125{
  --transform-scale-x     : 1.25 !important;
  --transform-scale-y     : 1.25 !important;
}

.group:hover .group-hover\:scale-150{
  --transform-scale-x     : 1.5 !important;
  --transform-scale-y     : 1.5 !important;
}

.group:hover .group-hover\:scale-x-0{
  --transform-scale-x     : 0 !important;
}

.group:hover .group-hover\:scale-x-50{
  --transform-scale-x     : .5 !important;
}

.group:hover .group-hover\:scale-x-75{
  --transform-scale-x     : .75 !important;
}

.group:hover .group-hover\:scale-x-90{
  --transform-scale-x     : .9 !important;
}

.group:hover .group-hover\:scale-x-95{
  --transform-scale-x     : .95 !important;
}

.group:hover .group-hover\:scale-x-100{
  --transform-scale-x     : 1 !important;
}

.group:hover .group-hover\:scale-x-105{
  --transform-scale-x     : 1.05 !important;
}

.group:hover .group-hover\:scale-x-110{
  --transform-scale-x     : 1.1 !important;
}

.group:hover .group-hover\:scale-x-125{
  --transform-scale-x     : 1.25 !important;
}

.group:hover .group-hover\:scale-x-150{
  --transform-scale-x     : 1.5 !important;
}

.group:hover .group-hover\:scale-y-0{
  --transform-scale-y     : 0 !important;
}

.group:hover .group-hover\:scale-y-50{
  --transform-scale-y     : .5 !important;
}

.group:hover .group-hover\:scale-y-75{
  --transform-scale-y     : .75 !important;
}

.group:hover .group-hover\:scale-y-90{
  --transform-scale-y     : .9 !important;
}

.group:hover .group-hover\:scale-y-95{
  --transform-scale-y     : .95 !important;
}

.group:hover .group-hover\:scale-y-100{
  --transform-scale-y     : 1 !important;
}

.group:hover .group-hover\:scale-y-105{
  --transform-scale-y     : 1.05 !important;
}

.group:hover .group-hover\:scale-y-110{
  --transform-scale-y     : 1.1 !important;
}

.group:hover .group-hover\:scale-y-125{
  --transform-scale-y     : 1.25 !important;
}

.group:hover .group-hover\:scale-y-150{
  --transform-scale-y     : 1.5 !important;
}

.hover\:scale-0:hover{
  --transform-scale-x     : 0 !important;
  --transform-scale-y     : 0 !important;
}

.hover\:scale-50:hover{
  --transform-scale-x     : .5 !important;
  --transform-scale-y     : .5 !important;
}

.hover\:scale-75:hover{
  --transform-scale-x     : .75 !important;
  --transform-scale-y     : .75 !important;
}

.hover\:scale-90:hover{
  --transform-scale-x     : .9 !important;
  --transform-scale-y     : .9 !important;
}

.hover\:scale-95:hover{
  --transform-scale-x     : .95 !important;
  --transform-scale-y     : .95 !important;
}

.hover\:scale-100:hover{
  --transform-scale-x     : 1 !important;
  --transform-scale-y     : 1 !important;
}

.hover\:scale-105:hover{
  --transform-scale-x     : 1.05 !important;
  --transform-scale-y     : 1.05 !important;
}

.hover\:scale-110:hover{
  --transform-scale-x     : 1.1 !important;
  --transform-scale-y     : 1.1 !important;
}

.hover\:scale-125:hover{
  --transform-scale-x     : 1.25 !important;
  --transform-scale-y     : 1.25 !important;
}

.hover\:scale-150:hover{
  --transform-scale-x     : 1.5 !important;
  --transform-scale-y     : 1.5 !important;
}

.hover\:scale-x-0:hover{
  --transform-scale-x     : 0 !important;
}

.hover\:scale-x-50:hover{
  --transform-scale-x     : .5 !important;
}

.hover\:scale-x-75:hover{
  --transform-scale-x     : .75 !important;
}

.hover\:scale-x-90:hover{
  --transform-scale-x     : .9 !important;
}

.hover\:scale-x-95:hover{
  --transform-scale-x     : .95 !important;
}

.hover\:scale-x-100:hover{
  --transform-scale-x     : 1 !important;
}

.hover\:scale-x-105:hover{
  --transform-scale-x     : 1.05 !important;
}

.hover\:scale-x-110:hover{
  --transform-scale-x     : 1.1 !important;
}

.hover\:scale-x-125:hover{
  --transform-scale-x     : 1.25 !important;
}

.hover\:scale-x-150:hover{
  --transform-scale-x     : 1.5 !important;
}

.hover\:scale-y-0:hover{
  --transform-scale-y     : 0 !important;
}

.hover\:scale-y-50:hover{
  --transform-scale-y     : .5 !important;
}

.hover\:scale-y-75:hover{
  --transform-scale-y     : .75 !important;
}

.hover\:scale-y-90:hover{
  --transform-scale-y     : .9 !important;
}

.hover\:scale-y-95:hover{
  --transform-scale-y     : .95 !important;
}

.hover\:scale-y-100:hover{
  --transform-scale-y     : 1 !important;
}

.hover\:scale-y-105:hover{
  --transform-scale-y     : 1.05 !important;
}

.hover\:scale-y-110:hover{
  --transform-scale-y     : 1.1 !important;
}

.hover\:scale-y-125:hover{
  --transform-scale-y     : 1.25 !important;
}

.hover\:scale-y-150:hover{
  --transform-scale-y     : 1.5 !important;
}

.focus\:scale-0:focus{
  --transform-scale-x     : 0 !important;
  --transform-scale-y     : 0 !important;
}

.focus\:scale-50:focus{
  --transform-scale-x     : .5 !important;
  --transform-scale-y     : .5 !important;
}

.focus\:scale-75:focus{
  --transform-scale-x     : .75 !important;
  --transform-scale-y     : .75 !important;
}

.focus\:scale-90:focus{
  --transform-scale-x     : .9 !important;
  --transform-scale-y     : .9 !important;
}

.focus\:scale-95:focus{
  --transform-scale-x     : .95 !important;
  --transform-scale-y     : .95 !important;
}

.focus\:scale-100:focus{
  --transform-scale-x     : 1 !important;
  --transform-scale-y     : 1 !important;
}

.focus\:scale-105:focus{
  --transform-scale-x     : 1.05 !important;
  --transform-scale-y     : 1.05 !important;
}

.focus\:scale-110:focus{
  --transform-scale-x     : 1.1 !important;
  --transform-scale-y     : 1.1 !important;
}

.focus\:scale-125:focus{
  --transform-scale-x     : 1.25 !important;
  --transform-scale-y     : 1.25 !important;
}

.focus\:scale-150:focus{
  --transform-scale-x     : 1.5 !important;
  --transform-scale-y     : 1.5 !important;
}

.focus\:scale-x-0:focus{
  --transform-scale-x     : 0 !important;
}

.focus\:scale-x-50:focus{
  --transform-scale-x     : .5 !important;
}

.focus\:scale-x-75:focus{
  --transform-scale-x     : .75 !important;
}

.focus\:scale-x-90:focus{
  --transform-scale-x     : .9 !important;
}

.focus\:scale-x-95:focus{
  --transform-scale-x     : .95 !important;
}

.focus\:scale-x-100:focus{
  --transform-scale-x     : 1 !important;
}

.focus\:scale-x-105:focus{
  --transform-scale-x     : 1.05 !important;
}

.focus\:scale-x-110:focus{
  --transform-scale-x     : 1.1 !important;
}

.focus\:scale-x-125:focus{
  --transform-scale-x     : 1.25 !important;
}

.focus\:scale-x-150:focus{
  --transform-scale-x     : 1.5 !important;
}

.focus\:scale-y-0:focus{
  --transform-scale-y     : 0 !important;
}

.focus\:scale-y-50:focus{
  --transform-scale-y     : .5 !important;
}

.focus\:scale-y-75:focus{
  --transform-scale-y     : .75 !important;
}

.focus\:scale-y-90:focus{
  --transform-scale-y     : .9 !important;
}

.focus\:scale-y-95:focus{
  --transform-scale-y     : .95 !important;
}

.focus\:scale-y-100:focus{
  --transform-scale-y     : 1 !important;
}

.focus\:scale-y-105:focus{
  --transform-scale-y     : 1.05 !important;
}

.focus\:scale-y-110:focus{
  --transform-scale-y     : 1.1 !important;
}

.focus\:scale-y-125:focus{
  --transform-scale-y     : 1.25 !important;
}

.focus\:scale-y-150:focus{
  --transform-scale-y     : 1.5 !important;
}

.rotate-0{
  --transform-rotate     : 0 !important;
}

.rotate-45{
  --transform-rotate     : 45deg !important;
}

.rotate-90{
  --transform-rotate     : 90deg !important;
}

.rotate-180{
  --transform-rotate     : 180deg !important;
}

.-rotate-180{
  --transform-rotate     : -180deg !important;
}

.-rotate-90{
  --transform-rotate     : -90deg !important;
}

.-rotate-45{
  --transform-rotate     : -45deg !important;
}

.group:hover .group-hover\:rotate-0{
  --transform-rotate     : 0 !important;
}

.group:hover .group-hover\:rotate-45{
  --transform-rotate     : 45deg !important;
}

.group:hover .group-hover\:rotate-90{
  --transform-rotate     : 90deg !important;
}

.group:hover .group-hover\:rotate-180{
  --transform-rotate     : 180deg !important;
}

.group:hover .group-hover\:-rotate-180{
  --transform-rotate     : -180deg !important;
}

.group:hover .group-hover\:-rotate-90{
  --transform-rotate     : -90deg !important;
}

.group:hover .group-hover\:-rotate-45{
  --transform-rotate     : -45deg !important;
}

.hover\:rotate-0:hover{
  --transform-rotate     : 0 !important;
}

.hover\:rotate-45:hover{
  --transform-rotate     : 45deg !important;
}

.hover\:rotate-90:hover{
  --transform-rotate     : 90deg !important;
}

.hover\:rotate-180:hover{
  --transform-rotate     : 180deg !important;
}

.hover\:-rotate-180:hover{
  --transform-rotate     : -180deg !important;
}

.hover\:-rotate-90:hover{
  --transform-rotate     : -90deg !important;
}

.hover\:-rotate-45:hover{
  --transform-rotate     : -45deg !important;
}

.focus\:rotate-0:focus{
  --transform-rotate     : 0 !important;
}

.focus\:rotate-45:focus{
  --transform-rotate     : 45deg !important;
}

.focus\:rotate-90:focus{
  --transform-rotate     : 90deg !important;
}

.focus\:rotate-180:focus{
  --transform-rotate     : 180deg !important;
}

.focus\:-rotate-180:focus{
  --transform-rotate     : -180deg !important;
}

.focus\:-rotate-90:focus{
  --transform-rotate     : -90deg !important;
}

.focus\:-rotate-45:focus{
  --transform-rotate     : -45deg !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-20{
  --transform-translate-x     : 5rem !important;
}

.translate-x-24{
  --transform-translate-x     : 6rem !important;
}

.translate-x-28{
  --transform-translate-x     : 7rem !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-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-96{
  --transform-translate-x     : 24rem !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-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-20{
  --transform-translate-x     : -5rem !important;
}

.-translate-x-24{
  --transform-translate-x     : -6rem !important;
}

.-translate-x-28{
  --transform-translate-x     : -7rem !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-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-96{
  --transform-translate-x     : -24rem !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-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-20{
  --transform-translate-y     : 5rem !important;
}

.translate-y-24{
  --transform-translate-y     : 6rem !important;
}

.translate-y-28{
  --transform-translate-y     : 7rem !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-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-96{
  --transform-translate-y     : 24rem !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-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-20{
  --transform-translate-y     : -5rem !important;
}

.-translate-y-24{
  --transform-translate-y     : -6rem !important;
}

.-translate-y-28{
  --transform-translate-y     : -7rem !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-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-96{
  --transform-translate-y     : -24rem !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;
}

.group:hover .group-hover\:translate-x-0{
  --transform-translate-x     : 0 !important;
}

.group:hover .group-hover\:translate-x-1{
  --transform-translate-x     : 0.25rem !important;
}

.group:hover .group-hover\:translate-x-2{
  --transform-translate-x     : 0.5rem !important;
}

.group:hover .group-hover\:translate-x-3{
  --transform-translate-x     : 0.75rem !important;
}

.group:hover .group-hover\:translate-x-4{
  --transform-translate-x     : 1rem !important;
}

.group:hover .group-hover\:translate-x-5{
  --transform-translate-x     : 1.25rem !important;
}

.group:hover .group-hover\:translate-x-6{
  --transform-translate-x     : 1.5rem !important;
}

.group:hover .group-hover\:translate-x-7{
  --transform-translate-x     : 1.75rem !important;
}

.group:hover .group-hover\:translate-x-8{
  --transform-translate-x     : 2rem !important;
}

.group:hover .group-hover\:translate-x-9{
  --transform-translate-x     : 2.25rem !important;
}

.group:hover .group-hover\:translate-x-10{
  --transform-translate-x     : 2.5rem !important;
}

.group:hover .group-hover\:translate-x-11{
  --transform-translate-x     : 2.75rem !important;
}

.group:hover .group-hover\:translate-x-12{
  --transform-translate-x     : 3rem !important;
}

.group:hover .group-hover\:translate-x-13{
  --transform-translate-x     : 3.25rem !important;
}

.group:hover .group-hover\:translate-x-14{
  --transform-translate-x     : 3.5rem !important;
}

.group:hover .group-hover\:translate-x-15{
  --transform-translate-x     : 3.75rem !important;
}

.group:hover .group-hover\:translate-x-16{
  --transform-translate-x     : 4rem !important;
}

.group:hover .group-hover\:translate-x-20{
  --transform-translate-x     : 5rem !important;
}

.group:hover .group-hover\:translate-x-24{
  --transform-translate-x     : 6rem !important;
}

.group:hover .group-hover\:translate-x-28{
  --transform-translate-x     : 7rem !important;
}

.group:hover .group-hover\:translate-x-32{
  --transform-translate-x     : 8rem !important;
}

.group:hover .group-hover\:translate-x-36{
  --transform-translate-x     : 9rem !important;
}

.group:hover .group-hover\:translate-x-40{
  --transform-translate-x     : 10rem !important;
}

.group:hover .group-hover\:translate-x-44{
  --transform-translate-x     : 11rem !important;
}

.group:hover .group-hover\:translate-x-48{
  --transform-translate-x     : 12rem !important;
}

.group:hover .group-hover\:translate-x-52{
  --transform-translate-x     : 13rem !important;
}

.group:hover .group-hover\:translate-x-56{
  --transform-translate-x     : 14rem !important;
}

.group:hover .group-hover\:translate-x-60{
  --transform-translate-x     : 15rem !important;
}

.group:hover .group-hover\:translate-x-64{
  --transform-translate-x     : 16rem !important;
}

.group:hover .group-hover\:translate-x-72{
  --transform-translate-x     : 18rem !important;
}

.group:hover .group-hover\:translate-x-80{
  --transform-translate-x     : 20rem !important;
}

.group:hover .group-hover\:translate-x-96{
  --transform-translate-x     : 24rem !important;
}

.group:hover .group-hover\:translate-x-px{
  --transform-translate-x     : 1px !important;
}

.group:hover .group-hover\:translate-x-0\.5{
  --transform-translate-x     : 0.125rem !important;
}

.group:hover .group-hover\:translate-x-1\.5{
  --transform-translate-x     : 0.375rem !important;
}

.group:hover .group-hover\:translate-x-2\.5{
  --transform-translate-x     : 0.625rem !important;
}

.group:hover .group-hover\:translate-x-3\.5{
  --transform-translate-x     : 0.875rem !important;
}

.group:hover .group-hover\:translate-x-1\/2{
  --transform-translate-x     : 50% !important;
}

.group:hover .group-hover\:translate-x-1\/3{
  --transform-translate-x     : 33.333333% !important;
}

.group:hover .group-hover\:translate-x-2\/3{
  --transform-translate-x     : 66.666667% !important;
}

.group:hover .group-hover\:translate-x-1\/4{
  --transform-translate-x     : 25% !important;
}

.group:hover .group-hover\:translate-x-2\/4{
  --transform-translate-x     : 50% !important;
}

.group:hover .group-hover\:translate-x-3\/4{
  --transform-translate-x     : 75% !important;
}

.group:hover .group-hover\:translate-x-1\/5{
  --transform-translate-x     : 20% !important;
}

.group:hover .group-hover\:translate-x-2\/5{
  --transform-translate-x     : 40% !important;
}

.group:hover .group-hover\:translate-x-3\/5{
  --transform-translate-x     : 60% !important;
}

.group:hover .group-hover\:translate-x-4\/5{
  --transform-translate-x     : 80% !important;
}

.group:hover .group-hover\:translate-x-1\/6{
  --transform-translate-x     : 16.666667% !important;
}

.group:hover .group-hover\:translate-x-2\/6{
  --transform-translate-x     : 33.333333% !important;
}

.group:hover .group-hover\:translate-x-3\/6{
  --transform-translate-x     : 50% !important;
}

.group:hover .group-hover\:translate-x-4\/6{
  --transform-translate-x     : 66.666667% !important;
}

.group:hover .group-hover\:translate-x-5\/6{
  --transform-translate-x     : 83.333333% !important;
}

.group:hover .group-hover\:translate-x-1\/12{
  --transform-translate-x     : 8.333333% !important;
}

.group:hover .group-hover\:translate-x-2\/12{
  --transform-translate-x     : 16.666667% !important;
}

.group:hover .group-hover\:translate-x-3\/12{
  --transform-translate-x     : 25% !important;
}

.group:hover .group-hover\:translate-x-4\/12{
  --transform-translate-x     : 33.333333% !important;
}

.group:hover .group-hover\:translate-x-5\/12{
  --transform-translate-x     : 41.666667% !important;
}

.group:hover .group-hover\:translate-x-6\/12{
  --transform-translate-x     : 50% !important;
}

.group:hover .group-hover\:translate-x-7\/12{
  --transform-translate-x     : 58.333333% !important;
}

.group:hover .group-hover\:translate-x-8\/12{
  --transform-translate-x     : 66.666667% !important;
}

.group:hover .group-hover\:translate-x-9\/12{
  --transform-translate-x     : 75% !important;
}

.group:hover .group-hover\:translate-x-10\/12{
  --transform-translate-x     : 83.333333% !important;
}

.group:hover .group-hover\:translate-x-11\/12{
  --transform-translate-x     : 91.666667% !important;
}

.group:hover .group-hover\:translate-x-full{
  --transform-translate-x     : 100% !important;
}

.group:hover .group-hover\:-translate-x-1{
  --transform-translate-x     : -0.25rem !important;
}

.group:hover .group-hover\:-translate-x-2{
  --transform-translate-x     : -0.5rem !important;
}

.group:hover .group-hover\:-translate-x-3{
  --transform-translate-x     : -0.75rem !important;
}

.group:hover .group-hover\:-translate-x-4{
  --transform-translate-x     : -1rem !important;
}

.group:hover .group-hover\:-translate-x-5{
  --transform-translate-x     : -1.25rem !important;
}

.group:hover .group-hover\:-translate-x-6{
  --transform-translate-x     : -1.5rem !important;
}

.group:hover .group-hover\:-translate-x-7{
  --transform-translate-x     : -1.75rem !important;
}

.group:hover .group-hover\:-translate-x-8{
  --transform-translate-x     : -2rem !important;
}

.group:hover .group-hover\:-translate-x-9{
  --transform-translate-x     : -2.25rem !important;
}

.group:hover .group-hover\:-translate-x-10{
  --transform-translate-x     : -2.5rem !important;
}

.group:hover .group-hover\:-translate-x-11{
  --transform-translate-x     : -2.75rem !important;
}

.group:hover .group-hover\:-translate-x-12{
  --transform-translate-x     : -3rem !important;
}

.group:hover .group-hover\:-translate-x-13{
  --transform-translate-x     : -3.25rem !important;
}

.group:hover .group-hover\:-translate-x-14{
  --transform-translate-x     : -3.5rem !important;
}

.group:hover .group-hover\:-translate-x-15{
  --transform-translate-x     : -3.75rem !important;
}

.group:hover .group-hover\:-translate-x-16{
  --transform-translate-x     : -4rem !important;
}

.group:hover .group-hover\:-translate-x-20{
  --transform-translate-x     : -5rem !important;
}

.group:hover .group-hover\:-translate-x-24{
  --transform-translate-x     : -6rem !important;
}

.group:hover .group-hover\:-translate-x-28{
  --transform-translate-x     : -7rem !important;
}

.group:hover .group-hover\:-translate-x-32{
  --transform-translate-x     : -8rem !important;
}

.group:hover .group-hover\:-translate-x-36{
  --transform-translate-x     : -9rem !important;
}

.group:hover .group-hover\:-translate-x-40{
  --transform-translate-x     : -10rem !important;
}

.group:hover .group-hover\:-translate-x-44{
  --transform-translate-x     : -11rem !important;
}

.group:hover .group-hover\:-translate-x-48{
  --transform-translate-x     : -12rem !important;
}

.group:hover .group-hover\:-translate-x-52{
  --transform-translate-x     : -13rem !important;
}

.group:hover .group-hover\:-translate-x-56{
  --transform-translate-x     : -14rem !important;
}

.group:hover .group-hover\:-translate-x-60{
  --transform-translate-x     : -15rem !important;
}

.group:hover .group-hover\:-translate-x-64{
  --transform-translate-x     : -16rem !important;
}

.group:hover .group-hover\:-translate-x-72{
  --transform-translate-x     : -18rem !important;
}

.group:hover .group-hover\:-translate-x-80{
  --transform-translate-x     : -20rem !important;
}

.group:hover .group-hover\:-translate-x-96{
  --transform-translate-x     : -24rem !important;
}

.group:hover .group-hover\:-translate-x-px{
  --transform-translate-x     : -1px !important;
}

.group:hover .group-hover\:-translate-x-0\.5{
  --transform-translate-x     : -0.125rem !important;
}

.group:hover .group-hover\:-translate-x-1\.5{
  --transform-translate-x     : -0.375rem !important;
}

.group:hover .group-hover\:-translate-x-2\.5{
  --transform-translate-x     : -0.625rem !important;
}

.group:hover .group-hover\:-translate-x-3\.5{
  --transform-translate-x     : -0.875rem !important;
}

.group:hover .group-hover\:-translate-x-1\/2{
  --transform-translate-x     : -50% !important;
}

.group:hover .group-hover\:-translate-x-1\/3{
  --transform-translate-x     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-x-2\/3{
  --transform-translate-x     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-x-1\/4{
  --transform-translate-x     : -25% !important;
}

.group:hover .group-hover\:-translate-x-2\/4{
  --transform-translate-x     : -50% !important;
}

.group:hover .group-hover\:-translate-x-3\/4{
  --transform-translate-x     : -75% !important;
}

.group:hover .group-hover\:-translate-x-1\/5{
  --transform-translate-x     : -20% !important;
}

.group:hover .group-hover\:-translate-x-2\/5{
  --transform-translate-x     : -40% !important;
}

.group:hover .group-hover\:-translate-x-3\/5{
  --transform-translate-x     : -60% !important;
}

.group:hover .group-hover\:-translate-x-4\/5{
  --transform-translate-x     : -80% !important;
}

.group:hover .group-hover\:-translate-x-1\/6{
  --transform-translate-x     : -16.66667% !important;
}

.group:hover .group-hover\:-translate-x-2\/6{
  --transform-translate-x     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-x-3\/6{
  --transform-translate-x     : -50% !important;
}

.group:hover .group-hover\:-translate-x-4\/6{
  --transform-translate-x     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-x-5\/6{
  --transform-translate-x     : -83.33333% !important;
}

.group:hover .group-hover\:-translate-x-1\/12{
  --transform-translate-x     : -8.33333% !important;
}

.group:hover .group-hover\:-translate-x-2\/12{
  --transform-translate-x     : -16.66667% !important;
}

.group:hover .group-hover\:-translate-x-3\/12{
  --transform-translate-x     : -25% !important;
}

.group:hover .group-hover\:-translate-x-4\/12{
  --transform-translate-x     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-x-5\/12{
  --transform-translate-x     : -41.66667% !important;
}

.group:hover .group-hover\:-translate-x-6\/12{
  --transform-translate-x     : -50% !important;
}

.group:hover .group-hover\:-translate-x-7\/12{
  --transform-translate-x     : -58.33333% !important;
}

.group:hover .group-hover\:-translate-x-8\/12{
  --transform-translate-x     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-x-9\/12{
  --transform-translate-x     : -75% !important;
}

.group:hover .group-hover\:-translate-x-10\/12{
  --transform-translate-x     : -83.33333% !important;
}

.group:hover .group-hover\:-translate-x-11\/12{
  --transform-translate-x     : -91.66667% !important;
}

.group:hover .group-hover\:-translate-x-full{
  --transform-translate-x     : -100% !important;
}

.group:hover .group-hover\:translate-y-0{
  --transform-translate-y     : 0 !important;
}

.group:hover .group-hover\:translate-y-1{
  --transform-translate-y     : 0.25rem !important;
}

.group:hover .group-hover\:translate-y-2{
  --transform-translate-y     : 0.5rem !important;
}

.group:hover .group-hover\:translate-y-3{
  --transform-translate-y     : 0.75rem !important;
}

.group:hover .group-hover\:translate-y-4{
  --transform-translate-y     : 1rem !important;
}

.group:hover .group-hover\:translate-y-5{
  --transform-translate-y     : 1.25rem !important;
}

.group:hover .group-hover\:translate-y-6{
  --transform-translate-y     : 1.5rem !important;
}

.group:hover .group-hover\:translate-y-7{
  --transform-translate-y     : 1.75rem !important;
}

.group:hover .group-hover\:translate-y-8{
  --transform-translate-y     : 2rem !important;
}

.group:hover .group-hover\:translate-y-9{
  --transform-translate-y     : 2.25rem !important;
}

.group:hover .group-hover\:translate-y-10{
  --transform-translate-y     : 2.5rem !important;
}

.group:hover .group-hover\:translate-y-11{
  --transform-translate-y     : 2.75rem !important;
}

.group:hover .group-hover\:translate-y-12{
  --transform-translate-y     : 3rem !important;
}

.group:hover .group-hover\:translate-y-13{
  --transform-translate-y     : 3.25rem !important;
}

.group:hover .group-hover\:translate-y-14{
  --transform-translate-y     : 3.5rem !important;
}

.group:hover .group-hover\:translate-y-15{
  --transform-translate-y     : 3.75rem !important;
}

.group:hover .group-hover\:translate-y-16{
  --transform-translate-y     : 4rem !important;
}

.group:hover .group-hover\:translate-y-20{
  --transform-translate-y     : 5rem !important;
}

.group:hover .group-hover\:translate-y-24{
  --transform-translate-y     : 6rem !important;
}

.group:hover .group-hover\:translate-y-28{
  --transform-translate-y     : 7rem !important;
}

.group:hover .group-hover\:translate-y-32{
  --transform-translate-y     : 8rem !important;
}

.group:hover .group-hover\:translate-y-36{
  --transform-translate-y     : 9rem !important;
}

.group:hover .group-hover\:translate-y-40{
  --transform-translate-y     : 10rem !important;
}

.group:hover .group-hover\:translate-y-44{
  --transform-translate-y     : 11rem !important;
}

.group:hover .group-hover\:translate-y-48{
  --transform-translate-y     : 12rem !important;
}

.group:hover .group-hover\:translate-y-52{
  --transform-translate-y     : 13rem !important;
}

.group:hover .group-hover\:translate-y-56{
  --transform-translate-y     : 14rem !important;
}

.group:hover .group-hover\:translate-y-60{
  --transform-translate-y     : 15rem !important;
}

.group:hover .group-hover\:translate-y-64{
  --transform-translate-y     : 16rem !important;
}

.group:hover .group-hover\:translate-y-72{
  --transform-translate-y     : 18rem !important;
}

.group:hover .group-hover\:translate-y-80{
  --transform-translate-y     : 20rem !important;
}

.group:hover .group-hover\:translate-y-96{
  --transform-translate-y     : 24rem !important;
}

.group:hover .group-hover\:translate-y-px{
  --transform-translate-y     : 1px !important;
}

.group:hover .group-hover\:translate-y-0\.5{
  --transform-translate-y     : 0.125rem !important;
}

.group:hover .group-hover\:translate-y-1\.5{
  --transform-translate-y     : 0.375rem !important;
}

.group:hover .group-hover\:translate-y-2\.5{
  --transform-translate-y     : 0.625rem !important;
}

.group:hover .group-hover\:translate-y-3\.5{
  --transform-translate-y     : 0.875rem !important;
}

.group:hover .group-hover\:translate-y-1\/2{
  --transform-translate-y     : 50% !important;
}

.group:hover .group-hover\:translate-y-1\/3{
  --transform-translate-y     : 33.333333% !important;
}

.group:hover .group-hover\:translate-y-2\/3{
  --transform-translate-y     : 66.666667% !important;
}

.group:hover .group-hover\:translate-y-1\/4{
  --transform-translate-y     : 25% !important;
}

.group:hover .group-hover\:translate-y-2\/4{
  --transform-translate-y     : 50% !important;
}

.group:hover .group-hover\:translate-y-3\/4{
  --transform-translate-y     : 75% !important;
}

.group:hover .group-hover\:translate-y-1\/5{
  --transform-translate-y     : 20% !important;
}

.group:hover .group-hover\:translate-y-2\/5{
  --transform-translate-y     : 40% !important;
}

.group:hover .group-hover\:translate-y-3\/5{
  --transform-translate-y     : 60% !important;
}

.group:hover .group-hover\:translate-y-4\/5{
  --transform-translate-y     : 80% !important;
}

.group:hover .group-hover\:translate-y-1\/6{
  --transform-translate-y     : 16.666667% !important;
}

.group:hover .group-hover\:translate-y-2\/6{
  --transform-translate-y     : 33.333333% !important;
}

.group:hover .group-hover\:translate-y-3\/6{
  --transform-translate-y     : 50% !important;
}

.group:hover .group-hover\:translate-y-4\/6{
  --transform-translate-y     : 66.666667% !important;
}

.group:hover .group-hover\:translate-y-5\/6{
  --transform-translate-y     : 83.333333% !important;
}

.group:hover .group-hover\:translate-y-1\/12{
  --transform-translate-y     : 8.333333% !important;
}

.group:hover .group-hover\:translate-y-2\/12{
  --transform-translate-y     : 16.666667% !important;
}

.group:hover .group-hover\:translate-y-3\/12{
  --transform-translate-y     : 25% !important;
}

.group:hover .group-hover\:translate-y-4\/12{
  --transform-translate-y     : 33.333333% !important;
}

.group:hover .group-hover\:translate-y-5\/12{
  --transform-translate-y     : 41.666667% !important;
}

.group:hover .group-hover\:translate-y-6\/12{
  --transform-translate-y     : 50% !important;
}

.group:hover .group-hover\:translate-y-7\/12{
  --transform-translate-y     : 58.333333% !important;
}

.group:hover .group-hover\:translate-y-8\/12{
  --transform-translate-y     : 66.666667% !important;
}

.group:hover .group-hover\:translate-y-9\/12{
  --transform-translate-y     : 75% !important;
}

.group:hover .group-hover\:translate-y-10\/12{
  --transform-translate-y     : 83.333333% !important;
}

.group:hover .group-hover\:translate-y-11\/12{
  --transform-translate-y     : 91.666667% !important;
}

.group:hover .group-hover\:translate-y-full{
  --transform-translate-y     : 100% !important;
}

.group:hover .group-hover\:-translate-y-1{
  --transform-translate-y     : -0.25rem !important;
}

.group:hover .group-hover\:-translate-y-2{
  --transform-translate-y     : -0.5rem !important;
}

.group:hover .group-hover\:-translate-y-3{
  --transform-translate-y     : -0.75rem !important;
}

.group:hover .group-hover\:-translate-y-4{
  --transform-translate-y     : -1rem !important;
}

.group:hover .group-hover\:-translate-y-5{
  --transform-translate-y     : -1.25rem !important;
}

.group:hover .group-hover\:-translate-y-6{
  --transform-translate-y     : -1.5rem !important;
}

.group:hover .group-hover\:-translate-y-7{
  --transform-translate-y     : -1.75rem !important;
}

.group:hover .group-hover\:-translate-y-8{
  --transform-translate-y     : -2rem !important;
}

.group:hover .group-hover\:-translate-y-9{
  --transform-translate-y     : -2.25rem !important;
}

.group:hover .group-hover\:-translate-y-10{
  --transform-translate-y     : -2.5rem !important;
}

.group:hover .group-hover\:-translate-y-11{
  --transform-translate-y     : -2.75rem !important;
}

.group:hover .group-hover\:-translate-y-12{
  --transform-translate-y     : -3rem !important;
}

.group:hover .group-hover\:-translate-y-13{
  --transform-translate-y     : -3.25rem !important;
}

.group:hover .group-hover\:-translate-y-14{
  --transform-translate-y     : -3.5rem !important;
}

.group:hover .group-hover\:-translate-y-15{
  --transform-translate-y     : -3.75rem !important;
}

.group:hover .group-hover\:-translate-y-16{
  --transform-translate-y     : -4rem !important;
}

.group:hover .group-hover\:-translate-y-20{
  --transform-translate-y     : -5rem !important;
}

.group:hover .group-hover\:-translate-y-24{
  --transform-translate-y     : -6rem !important;
}

.group:hover .group-hover\:-translate-y-28{
  --transform-translate-y     : -7rem !important;
}

.group:hover .group-hover\:-translate-y-32{
  --transform-translate-y     : -8rem !important;
}

.group:hover .group-hover\:-translate-y-36{
  --transform-translate-y     : -9rem !important;
}

.group:hover .group-hover\:-translate-y-40{
  --transform-translate-y     : -10rem !important;
}

.group:hover .group-hover\:-translate-y-44{
  --transform-translate-y     : -11rem !important;
}

.group:hover .group-hover\:-translate-y-48{
  --transform-translate-y     : -12rem !important;
}

.group:hover .group-hover\:-translate-y-52{
  --transform-translate-y     : -13rem !important;
}

.group:hover .group-hover\:-translate-y-56{
  --transform-translate-y     : -14rem !important;
}

.group:hover .group-hover\:-translate-y-60{
  --transform-translate-y     : -15rem !important;
}

.group:hover .group-hover\:-translate-y-64{
  --transform-translate-y     : -16rem !important;
}

.group:hover .group-hover\:-translate-y-72{
  --transform-translate-y     : -18rem !important;
}

.group:hover .group-hover\:-translate-y-80{
  --transform-translate-y     : -20rem !important;
}

.group:hover .group-hover\:-translate-y-96{
  --transform-translate-y     : -24rem !important;
}

.group:hover .group-hover\:-translate-y-px{
  --transform-translate-y     : -1px !important;
}

.group:hover .group-hover\:-translate-y-0\.5{
  --transform-translate-y     : -0.125rem !important;
}

.group:hover .group-hover\:-translate-y-1\.5{
  --transform-translate-y     : -0.375rem !important;
}

.group:hover .group-hover\:-translate-y-2\.5{
  --transform-translate-y     : -0.625rem !important;
}

.group:hover .group-hover\:-translate-y-3\.5{
  --transform-translate-y     : -0.875rem !important;
}

.group:hover .group-hover\:-translate-y-1\/2{
  --transform-translate-y     : -50% !important;
}

.group:hover .group-hover\:-translate-y-1\/3{
  --transform-translate-y     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-y-2\/3{
  --transform-translate-y     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-y-1\/4{
  --transform-translate-y     : -25% !important;
}

.group:hover .group-hover\:-translate-y-2\/4{
  --transform-translate-y     : -50% !important;
}

.group:hover .group-hover\:-translate-y-3\/4{
  --transform-translate-y     : -75% !important;
}

.group:hover .group-hover\:-translate-y-1\/5{
  --transform-translate-y     : -20% !important;
}

.group:hover .group-hover\:-translate-y-2\/5{
  --transform-translate-y     : -40% !important;
}

.group:hover .group-hover\:-translate-y-3\/5{
  --transform-translate-y     : -60% !important;
}

.group:hover .group-hover\:-translate-y-4\/5{
  --transform-translate-y     : -80% !important;
}

.group:hover .group-hover\:-translate-y-1\/6{
  --transform-translate-y     : -16.66667% !important;
}

.group:hover .group-hover\:-translate-y-2\/6{
  --transform-translate-y     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-y-3\/6{
  --transform-translate-y     : -50% !important;
}

.group:hover .group-hover\:-translate-y-4\/6{
  --transform-translate-y     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-y-5\/6{
  --transform-translate-y     : -83.33333% !important;
}

.group:hover .group-hover\:-translate-y-1\/12{
  --transform-translate-y     : -8.33333% !important;
}

.group:hover .group-hover\:-translate-y-2\/12{
  --transform-translate-y     : -16.66667% !important;
}

.group:hover .group-hover\:-translate-y-3\/12{
  --transform-translate-y     : -25% !important;
}

.group:hover .group-hover\:-translate-y-4\/12{
  --transform-translate-y     : -33.33333% !important;
}

.group:hover .group-hover\:-translate-y-5\/12{
  --transform-translate-y     : -41.66667% !important;
}

.group:hover .group-hover\:-translate-y-6\/12{
  --transform-translate-y     : -50% !important;
}

.group:hover .group-hover\:-translate-y-7\/12{
  --transform-translate-y     : -58.33333% !important;
}

.group:hover .group-hover\:-translate-y-8\/12{
  --transform-translate-y     : -66.66667% !important;
}

.group:hover .group-hover\:-translate-y-9\/12{
  --transform-translate-y     : -75% !important;
}

.group:hover .group-hover\:-translate-y-10\/12{
  --transform-translate-y     : -83.33333% !important;
}

.group:hover .group-hover\:-translate-y-11\/12{
  --transform-translate-y     : -91.66667% !important;
}

.group:hover .group-hover\:-translate-y-full{
  --transform-translate-y     : -100% !important;
}

.hover\:translate-x-0:hover{
  --transform-translate-x     : 0 !important;
}

.hover\:translate-x-1:hover{
  --transform-translate-x     : 0.25rem !important;
}

.hover\:translate-x-2:hover{
  --transform-translate-x     : 0.5rem !important;
}

.hover\:translate-x-3:hover{
  --transform-translate-x     : 0.75rem !important;
}

.hover\:translate-x-4:hover{
  --transform-translate-x     : 1rem !important;
}

.hover\:translate-x-5:hover{
  --transform-translate-x     : 1.25rem !important;
}

.hover\:translate-x-6:hover{
  --transform-translate-x     : 1.5rem !important;
}

.hover\:translate-x-7:hover{
  --transform-translate-x     : 1.75rem !important;
}

.hover\:translate-x-8:hover{
  --transform-translate-x     : 2rem !important;
}

.hover\:translate-x-9:hover{
  --transform-translate-x     : 2.25rem !important;
}

.hover\:translate-x-10:hover{
  --transform-translate-x     : 2.5rem !important;
}

.hover\:translate-x-11:hover{
  --transform-translate-x     : 2.75rem !important;
}

.hover\:translate-x-12:hover{
  --transform-translate-x     : 3rem !important;
}

.hover\:translate-x-13:hover{
  --transform-translate-x     : 3.25rem !important;
}

.hover\:translate-x-14:hover{
  --transform-translate-x     : 3.5rem !important;
}

.hover\:translate-x-15:hover{
  --transform-translate-x     : 3.75rem !important;
}

.hover\:translate-x-16:hover{
  --transform-translate-x     : 4rem !important;
}

.hover\:translate-x-20:hover{
  --transform-translate-x     : 5rem !important;
}

.hover\:translate-x-24:hover{
  --transform-translate-x     : 6rem !important;
}

.hover\:translate-x-28:hover{
  --transform-translate-x     : 7rem !important;
}

.hover\:translate-x-32:hover{
  --transform-translate-x     : 8rem !important;
}

.hover\:translate-x-36:hover{
  --transform-translate-x     : 9rem !important;
}

.hover\:translate-x-40:hover{
  --transform-translate-x     : 10rem !important;
}

.hover\:translate-x-44:hover{
  --transform-translate-x     : 11rem !important;
}

.hover\:translate-x-48:hover{
  --transform-translate-x     : 12rem !important;
}

.hover\:translate-x-52:hover{
  --transform-translate-x     : 13rem !important;
}

.hover\:translate-x-56:hover{
  --transform-translate-x     : 14rem !important;
}

.hover\:translate-x-60:hover{
  --transform-translate-x     : 15rem !important;
}

.hover\:translate-x-64:hover{
  --transform-translate-x     : 16rem !important;
}

.hover\:translate-x-72:hover{
  --transform-translate-x     : 18rem !important;
}

.hover\:translate-x-80:hover{
  --transform-translate-x     : 20rem !important;
}

.hover\:translate-x-96:hover{
  --transform-translate-x     : 24rem !important;
}

.hover\:translate-x-px:hover{
  --transform-translate-x     : 1px !important;
}

.hover\:translate-x-0\.5:hover{
  --transform-translate-x     : 0.125rem !important;
}

.hover\:translate-x-1\.5:hover{
  --transform-translate-x     : 0.375rem !important;
}

.hover\:translate-x-2\.5:hover{
  --transform-translate-x     : 0.625rem !important;
}

.hover\:translate-x-3\.5:hover{
  --transform-translate-x     : 0.875rem !important;
}

.hover\:translate-x-1\/2:hover{
  --transform-translate-x     : 50% !important;
}

.hover\:translate-x-1\/3:hover{
  --transform-translate-x     : 33.333333% !important;
}

.hover\:translate-x-2\/3:hover{
  --transform-translate-x     : 66.666667% !important;
}

.hover\:translate-x-1\/4:hover{
  --transform-translate-x     : 25% !important;
}

.hover\:translate-x-2\/4:hover{
  --transform-translate-x     : 50% !important;
}

.hover\:translate-x-3\/4:hover{
  --transform-translate-x     : 75% !important;
}

.hover\:translate-x-1\/5:hover{
  --transform-translate-x     : 20% !important;
}

.hover\:translate-x-2\/5:hover{
  --transform-translate-x     : 40% !important;
}

.hover\:translate-x-3\/5:hover{
  --transform-translate-x     : 60% !important;
}

.hover\:translate-x-4\/5:hover{
  --transform-translate-x     : 80% !important;
}

.hover\:translate-x-1\/6:hover{
  --transform-translate-x     : 16.666667% !important;
}

.hover\:translate-x-2\/6:hover{
  --transform-translate-x     : 33.333333% !important;
}

.hover\:translate-x-3\/6:hover{
  --transform-translate-x     : 50% !important;
}

.hover\:translate-x-4\/6:hover{
  --transform-translate-x     : 66.666667% !important;
}

.hover\:translate-x-5\/6:hover{
  --transform-translate-x     : 83.333333% !important;
}

.hover\:translate-x-1\/12:hover{
  --transform-translate-x     : 8.333333% !important;
}

.hover\:translate-x-2\/12:hover{
  --transform-translate-x     : 16.666667% !important;
}

.hover\:translate-x-3\/12:hover{
  --transform-translate-x     : 25% !important;
}

.hover\:translate-x-4\/12:hover{
  --transform-translate-x     : 33.333333% !important;
}

.hover\:translate-x-5\/12:hover{
  --transform-translate-x     : 41.666667% !important;
}

.hover\:translate-x-6\/12:hover{
  --transform-translate-x     : 50% !important;
}

.hover\:translate-x-7\/12:hover{
  --transform-translate-x     : 58.333333% !important;
}

.hover\:translate-x-8\/12:hover{
  --transform-translate-x     : 66.666667% !important;
}

.hover\:translate-x-9\/12:hover{
  --transform-translate-x     : 75% !important;
}

.hover\:translate-x-10\/12:hover{
  --transform-translate-x     : 83.333333% !important;
}

.hover\:translate-x-11\/12:hover{
  --transform-translate-x     : 91.666667% !important;
}

.hover\:translate-x-full:hover{
  --transform-translate-x     : 100% !important;
}

.hover\:-translate-x-1:hover{
  --transform-translate-x     : -0.25rem !important;
}

.hover\:-translate-x-2:hover{
  --transform-translate-x     : -0.5rem !important;
}

.hover\:-translate-x-3:hover{
  --transform-translate-x     : -0.75rem !important;
}

.hover\:-translate-x-4:hover{
  --transform-translate-x     : -1rem !important;
}

.hover\:-translate-x-5:hover{
  --transform-translate-x     : -1.25rem !important;
}

.hover\:-translate-x-6:hover{
  --transform-translate-x     : -1.5rem !important;
}

.hover\:-translate-x-7:hover{
  --transform-translate-x     : -1.75rem !important;
}

.hover\:-translate-x-8:hover{
  --transform-translate-x     : -2rem !important;
}

.hover\:-translate-x-9:hover{
  --transform-translate-x     : -2.25rem !important;
}

.hover\:-translate-x-10:hover{
  --transform-translate-x     : -2.5rem !important;
}

.hover\:-translate-x-11:hover{
  --transform-translate-x     : -2.75rem !important;
}

.hover\:-translate-x-12:hover{
  --transform-translate-x     : -3rem !important;
}

.hover\:-translate-x-13:hover{
  --transform-translate-x     : -3.25rem !important;
}

.hover\:-translate-x-14:hover{
  --transform-translate-x     : -3.5rem !important;
}

.hover\:-translate-x-15:hover{
  --transform-translate-x     : -3.75rem !important;
}

.hover\:-translate-x-16:hover{
  --transform-translate-x     : -4rem !important;
}

.hover\:-translate-x-20:hover{
  --transform-translate-x     : -5rem !important;
}

.hover\:-translate-x-24:hover{
  --transform-translate-x     : -6rem !important;
}

.hover\:-translate-x-28:hover{
  --transform-translate-x     : -7rem !important;
}

.hover\:-translate-x-32:hover{
  --transform-translate-x     : -8rem !important;
}

.hover\:-translate-x-36:hover{
  --transform-translate-x     : -9rem !important;
}

.hover\:-translate-x-40:hover{
  --transform-translate-x     : -10rem !important;
}

.hover\:-translate-x-44:hover{
  --transform-translate-x     : -11rem !important;
}

.hover\:-translate-x-48:hover{
  --transform-translate-x     : -12rem !important;
}

.hover\:-translate-x-52:hover{
  --transform-translate-x     : -13rem !important;
}

.hover\:-translate-x-56:hover{
  --transform-translate-x     : -14rem !important;
}

.hover\:-translate-x-60:hover{
  --transform-translate-x     : -15rem !important;
}

.hover\:-translate-x-64:hover{
  --transform-translate-x     : -16rem !important;
}

.hover\:-translate-x-72:hover{
  --transform-translate-x     : -18rem !important;
}

.hover\:-translate-x-80:hover{
  --transform-translate-x     : -20rem !important;
}

.hover\:-translate-x-96:hover{
  --transform-translate-x     : -24rem !important;
}

.hover\:-translate-x-px:hover{
  --transform-translate-x     : -1px !important;
}

.hover\:-translate-x-0\.5:hover{
  --transform-translate-x     : -0.125rem !important;
}

.hover\:-translate-x-1\.5:hover{
  --transform-translate-x     : -0.375rem !important;
}

.hover\:-translate-x-2\.5:hover{
  --transform-translate-x     : -0.625rem !important;
}

.hover\:-translate-x-3\.5:hover{
  --transform-translate-x     : -0.875rem !important;
}

.hover\:-translate-x-1\/2:hover{
  --transform-translate-x     : -50% !important;
}

.hover\:-translate-x-1\/3:hover{
  --transform-translate-x     : -33.33333% !important;
}

.hover\:-translate-x-2\/3:hover{
  --transform-translate-x     : -66.66667% !important;
}

.hover\:-translate-x-1\/4:hover{
  --transform-translate-x     : -25% !important;
}

.hover\:-translate-x-2\/4:hover{
  --transform-translate-x     : -50% !important;
}

.hover\:-translate-x-3\/4:hover{
  --transform-translate-x     : -75% !important;
}

.hover\:-translate-x-1\/5:hover{
  --transform-translate-x     : -20% !important;
}

.hover\:-translate-x-2\/5:hover{
  --transform-translate-x     : -40% !important;
}

.hover\:-translate-x-3\/5:hover{
  --transform-translate-x     : -60% !important;
}

.hover\:-translate-x-4\/5:hover{
  --transform-translate-x     : -80% !important;
}

.hover\:-translate-x-1\/6:hover{
  --transform-translate-x     : -16.66667% !important;
}

.hover\:-translate-x-2\/6:hover{
  --transform-translate-x     : -33.33333% !important;
}

.hover\:-translate-x-3\/6:hover{
  --transform-translate-x     : -50% !important;
}

.hover\:-translate-x-4\/6:hover{
  --transform-translate-x     : -66.66667% !important;
}

.hover\:-translate-x-5\/6:hover{
  --transform-translate-x     : -83.33333% !important;
}

.hover\:-translate-x-1\/12:hover{
  --transform-translate-x     : -8.33333% !important;
}

.hover\:-translate-x-2\/12:hover{
  --transform-translate-x     : -16.66667% !important;
}

.hover\:-translate-x-3\/12:hover{
  --transform-translate-x     : -25% !important;
}

.hover\:-translate-x-4\/12:hover{
  --transform-translate-x     : -33.33333% !important;
}

.hover\:-translate-x-5\/12:hover{
  --transform-translate-x     : -41.66667% !important;
}

.hover\:-translate-x-6\/12:hover{
  --transform-translate-x     : -50% !important;
}

.hover\:-translate-x-7\/12:hover{
  --transform-translate-x     : -58.33333% !important;
}

.hover\:-translate-x-8\/12:hover{
  --transform-translate-x     : -66.66667% !important;
}

.hover\:-translate-x-9\/12:hover{
  --transform-translate-x     : -75% !important;
}

.hover\:-translate-x-10\/12:hover{
  --transform-translate-x     : -83.33333% !important;
}

.hover\:-translate-x-11\/12:hover{
  --transform-translate-x     : -91.66667% !important;
}

.hover\:-translate-x-full:hover{
  --transform-translate-x     : -100% !important;
}

.hover\:translate-y-0:hover{
  --transform-translate-y     : 0 !important;
}

.hover\:translate-y-1:hover{
  --transform-translate-y     : 0.25rem !important;
}

.hover\:translate-y-2:hover{
  --transform-translate-y     : 0.5rem !important;
}

.hover\:translate-y-3:hover{
  --transform-translate-y     : 0.75rem !important;
}

.hover\:translate-y-4:hover{
  --transform-translate-y     : 1rem !important;
}

.hover\:translate-y-5:hover{
  --transform-translate-y     : 1.25rem !important;
}

.hover\:translate-y-6:hover{
  --transform-translate-y     : 1.5rem !important;
}

.hover\:translate-y-7:hover{
  --transform-translate-y     : 1.75rem !important;
}

.hover\:translate-y-8:hover{
  --transform-translate-y     : 2rem !important;
}

.hover\:translate-y-9:hover{
  --transform-translate-y     : 2.25rem !important;
}

.hover\:translate-y-10:hover{
  --transform-translate-y     : 2.5rem !important;
}

.hover\:translate-y-11:hover{
  --transform-translate-y     : 2.75rem !important;
}

.hover\:translate-y-12:hover{
  --transform-translate-y     : 3rem !important;
}

.hover\:translate-y-13:hover{
  --transform-translate-y     : 3.25rem !important;
}

.hover\:translate-y-14:hover{
  --transform-translate-y     : 3.5rem !important;
}

.hover\:translate-y-15:hover{
  --transform-translate-y     : 3.75rem !important;
}

.hover\:translate-y-16:hover{
  --transform-translate-y     : 4rem !important;
}

.hover\:translate-y-20:hover{
  --transform-translate-y     : 5rem !important;
}

.hover\:translate-y-24:hover{
  --transform-translate-y     : 6rem !important;
}

.hover\:translate-y-28:hover{
  --transform-translate-y     : 7rem !important;
}

.hover\:translate-y-32:hover{
  --transform-translate-y     : 8rem !important;
}

.hover\:translate-y-36:hover{
  --transform-translate-y     : 9rem !important;
}

.hover\:translate-y-40:hover{
  --transform-translate-y     : 10rem !important;
}

.hover\:translate-y-44:hover{
  --transform-translate-y     : 11rem !important;
}

.hover\:translate-y-48:hover{
  --transform-translate-y     : 12rem !important;
}

.hover\:translate-y-52:hover{
  --transform-translate-y     : 13rem !important;
}

.hover\:translate-y-56:hover{
  --transform-translate-y     : 14rem !important;
}

.hover\:translate-y-60:hover{
  --transform-translate-y     : 15rem !important;
}

.hover\:translate-y-64:hover{
  --transform-translate-y     : 16rem !important;
}

.hover\:translate-y-72:hover{
  --transform-translate-y     : 18rem !important;
}

.hover\:translate-y-80:hover{
  --transform-translate-y     : 20rem !important;
}

.hover\:translate-y-96:hover{
  --transform-translate-y     : 24rem !important;
}

.hover\:translate-y-px:hover{
  --transform-translate-y     : 1px !important;
}

.hover\:translate-y-0\.5:hover{
  --transform-translate-y     : 0.125rem !important;
}

.hover\:translate-y-1\.5:hover{
  --transform-translate-y     : 0.375rem !important;
}

.hover\:translate-y-2\.5:hover{
  --transform-translate-y     : 0.625rem !important;
}

.hover\:translate-y-3\.5:hover{
  --transform-translate-y     : 0.875rem !important;
}

.hover\:translate-y-1\/2:hover{
  --transform-translate-y     : 50% !important;
}

.hover\:translate-y-1\/3:hover{
  --transform-translate-y     : 33.333333% !important;
}

.hover\:translate-y-2\/3:hover{
  --transform-translate-y     : 66.666667% !important;
}

.hover\:translate-y-1\/4:hover{
  --transform-translate-y     : 25% !important;
}

.hover\:translate-y-2\/4:hover{
  --transform-translate-y     : 50% !important;
}

.hover\:translate-y-3\/4:hover{
  --transform-translate-y     : 75% !important;
}

.hover\:translate-y-1\/5:hover{
  --transform-translate-y     : 20% !important;
}

.hover\:translate-y-2\/5:hover{
  --transform-translate-y     : 40% !important;
}

.hover\:translate-y-3\/5:hover{
  --transform-translate-y     : 60% !important;
}

.hover\:translate-y-4\/5:hover{
  --transform-translate-y     : 80% !important;
}

.hover\:translate-y-1\/6:hover{
  --transform-translate-y     : 16.666667% !important;
}

.hover\:translate-y-2\/6:hover{
  --transform-translate-y     : 33.333333% !important;
}

.hover\:translate-y-3\/6:hover{
  --transform-translate-y     : 50% !important;
}

.hover\:translate-y-4\/6:hover{
  --transform-translate-y     : 66.666667% !important;
}

.hover\:translate-y-5\/6:hover{
  --transform-translate-y     : 83.333333% !important;
}

.hover\:translate-y-1\/12:hover{
  --transform-translate-y     : 8.333333% !important;
}

.hover\:translate-y-2\/12:hover{
  --transform-translate-y     : 16.666667% !important;
}

.hover\:translate-y-3\/12:hover{
  --transform-translate-y     : 25% !important;
}

.hover\:translate-y-4\/12:hover{
  --transform-translate-y     : 33.333333% !important;
}

.hover\:translate-y-5\/12:hover{
  --transform-translate-y     : 41.666667% !important;
}

.hover\:translate-y-6\/12:hover{
  --transform-translate-y     : 50% !important;
}

.hover\:translate-y-7\/12:hover{
  --transform-translate-y     : 58.333333% !important;
}

.hover\:translate-y-8\/12:hover{
  --transform-translate-y     : 66.666667% !important;
}

.hover\:translate-y-9\/12:hover{
  --transform-translate-y     : 75% !important;
}

.hover\:translate-y-10\/12:hover{
  --transform-translate-y     : 83.333333% !important;
}

.hover\:translate-y-11\/12:hover{
  --transform-translate-y     : 91.666667% !important;
}

.hover\:translate-y-full:hover{
  --transform-translate-y     : 100% !important;
}

.hover\:-translate-y-1:hover{
  --transform-translate-y     : -0.25rem !important;
}

.hover\:-translate-y-2:hover{
  --transform-translate-y     : -0.5rem !important;
}

.hover\:-translate-y-3:hover{
  --transform-translate-y     : -0.75rem !important;
}

.hover\:-translate-y-4:hover{
  --transform-translate-y     : -1rem !important;
}

.hover\:-translate-y-5:hover{
  --transform-translate-y     : -1.25rem !important;
}

.hover\:-translate-y-6:hover{
  --transform-translate-y     : -1.5rem !important;
}

.hover\:-translate-y-7:hover{
  --transform-translate-y     : -1.75rem !important;
}

.hover\:-translate-y-8:hover{
  --transform-translate-y     : -2rem !important;
}

.hover\:-translate-y-9:hover{
  --transform-translate-y     : -2.25rem !important;
}

.hover\:-translate-y-10:hover{
  --transform-translate-y     : -2.5rem !important;
}

.hover\:-translate-y-11:hover{
  --transform-translate-y     : -2.75rem !important;
}

.hover\:-translate-y-12:hover{
  --transform-translate-y     : -3rem !important;
}

.hover\:-translate-y-13:hover{
  --transform-translate-y     : -3.25rem !important;
}

.hover\:-translate-y-14:hover{
  --transform-translate-y     : -3.5rem !important;
}

.hover\:-translate-y-15:hover{
  --transform-translate-y     : -3.75rem !important;
}

.hover\:-translate-y-16:hover{
  --transform-translate-y     : -4rem !important;
}

.hover\:-translate-y-20:hover{
  --transform-translate-y     : -5rem !important;
}

.hover\:-translate-y-24:hover{
  --transform-translate-y     : -6rem !important;
}

.hover\:-translate-y-28:hover{
  --transform-translate-y     : -7rem !important;
}

.hover\:-translate-y-32:hover{
  --transform-translate-y     : -8rem !important;
}

.hover\:-translate-y-36:hover{
  --transform-translate-y     : -9rem !important;
}

.hover\:-translate-y-40:hover{
  --transform-translate-y     : -10rem !important;
}

.hover\:-translate-y-44:hover{
  --transform-translate-y     : -11rem !important;
}

.hover\:-translate-y-48:hover{
  --transform-translate-y     : -12rem !important;
}

.hover\:-translate-y-52:hover{
  --transform-translate-y     : -13rem !important;
}

.hover\:-translate-y-56:hover{
  --transform-translate-y     : -14rem !important;
}

.hover\:-translate-y-60:hover{
  --transform-translate-y     : -15rem !important;
}

.hover\:-translate-y-64:hover{
  --transform-translate-y     : -16rem !important;
}

.hover\:-translate-y-72:hover{
  --transform-translate-y     : -18rem !important;
}

.hover\:-translate-y-80:hover{
  --transform-translate-y     : -20rem !important;
}

.hover\:-translate-y-96:hover{
  --transform-translate-y     : -24rem !important;
}

.hover\:-translate-y-px:hover{
  --transform-translate-y     : -1px !important;
}

.hover\:-translate-y-0\.5:hover{
  --transform-translate-y     : -0.125rem !important;
}

.hover\:-translate-y-1\.5:hover{
  --transform-translate-y     : -0.375rem !important;
}

.hover\:-translate-y-2\.5:hover{
  --transform-translate-y     : -0.625rem !important;
}

.hover\:-translate-y-3\.5:hover{
  --transform-translate-y     : -0.875rem !important;
}

.hover\:-translate-y-1\/2:hover{
  --transform-translate-y     : -50% !important;
}

.hover\:-translate-y-1\/3:hover{
  --transform-translate-y     : -33.33333% !important;
}

.hover\:-translate-y-2\/3:hover{
  --transform-translate-y     : -66.66667% !important;
}

.hover\:-translate-y-1\/4:hover{
  --transform-translate-y     : -25% !important;
}

.hover\:-translate-y-2\/4:hover{
  --transform-translate-y     : -50% !important;
}

.hover\:-translate-y-3\/4:hover{
  --transform-translate-y     : -75% !important;
}

.hover\:-translate-y-1\/5:hover{
  --transform-translate-y     : -20% !important;
}

.hover\:-translate-y-2\/5:hover{
  --transform-translate-y     : -40% !important;
}

.hover\:-translate-y-3\/5:hover{
  --transform-translate-y     : -60% !important;
}

.hover\:-translate-y-4\/5:hover{
  --transform-translate-y     : -80% !important;
}

.hover\:-translate-y-1\/6:hover{
  --transform-translate-y     : -16.66667% !important;
}

.hover\:-translate-y-2\/6:hover{
  --transform-translate-y     : -33.33333% !important;
}

.hover\:-translate-y-3\/6:hover{
  --transform-translate-y     : -50% !important;
}

.hover\:-translate-y-4\/6:hover{
  --transform-translate-y     : -66.66667% !important;
}

.hover\:-translate-y-5\/6:hover{
  --transform-translate-y     : -83.33333% !important;
}

.hover\:-translate-y-1\/12:hover{
  --transform-translate-y     : -8.33333% !important;
}

.hover\:-translate-y-2\/12:hover{
  --transform-translate-y     : -16.66667% !important;
}

.hover\:-translate-y-3\/12:hover{
  --transform-translate-y     : -25% !important;
}

.hover\:-translate-y-4\/12:hover{
  --transform-translate-y     : -33.33333% !important;
}

.hover\:-translate-y-5\/12:hover{
  --transform-translate-y     : -41.66667% !important;
}

.hover\:-translate-y-6\/12:hover{
  --transform-translate-y     : -50% !important;
}

.hover\:-translate-y-7\/12:hover{
  --transform-translate-y     : -58.33333% !important;
}

.hover\:-translate-y-8\/12:hover{
  --transform-translate-y     : -66.66667% !important;
}

.hover\:-translate-y-9\/12:hover{
  --transform-translate-y     : -75% !important;
}

.hover\:-translate-y-10\/12:hover{
  --transform-translate-y     : -83.33333% !important;
}

.hover\:-translate-y-11\/12:hover{
  --transform-translate-y     : -91.66667% !important;
}

.hover\:-translate-y-full:hover{
  --transform-translate-y     : -100% !important;
}

.focus\:translate-x-0:focus{
  --transform-translate-x     : 0 !important;
}

.focus\:translate-x-1:focus{
  --transform-translate-x     : 0.25rem !important;
}

.focus\:translate-x-2:focus{
  --transform-translate-x     : 0.5rem !important;
}

.focus\:translate-x-3:focus{
  --transform-translate-x     : 0.75rem !important;
}

.focus\:translate-x-4:focus{
  --transform-translate-x     : 1rem !important;
}

.focus\:translate-x-5:focus{
  --transform-translate-x     : 1.25rem !important;
}

.focus\:translate-x-6:focus{
  --transform-translate-x     : 1.5rem !important;
}

.focus\:translate-x-7:focus{
  --transform-translate-x     : 1.75rem !important;
}

.focus\:translate-x-8:focus{
  --transform-translate-x     : 2rem !important;
}

.focus\:translate-x-9:focus{
  --transform-translate-x     : 2.25rem !important;
}

.focus\:translate-x-10:focus{
  --transform-translate-x     : 2.5rem !important;
}

.focus\:translate-x-11:focus{
  --transform-translate-x     : 2.75rem !important;
}

.focus\:translate-x-12:focus{
  --transform-translate-x     : 3rem !important;
}

.focus\:translate-x-13:focus{
  --transform-translate-x     : 3.25rem !important;
}

.focus\:translate-x-14:focus{
  --transform-translate-x     : 3.5rem !important;
}

.focus\:translate-x-15:focus{
  --transform-translate-x     : 3.75rem !important;
}

.focus\:translate-x-16:focus{
  --transform-translate-x     : 4rem !important;
}

.focus\:translate-x-20:focus{
  --transform-translate-x     : 5rem !important;
}

.focus\:translate-x-24:focus{
  --transform-translate-x     : 6rem !important;
}

.focus\:translate-x-28:focus{
  --transform-translate-x     : 7rem !important;
}

.focus\:translate-x-32:focus{
  --transform-translate-x     : 8rem !important;
}

.focus\:translate-x-36:focus{
  --transform-translate-x     : 9rem !important;
}

.focus\:translate-x-40:focus{
  --transform-translate-x     : 10rem !important;
}

.focus\:translate-x-44:focus{
  --transform-translate-x     : 11rem !important;
}

.focus\:translate-x-48:focus{
  --transform-translate-x     : 12rem !important;
}

.focus\:translate-x-52:focus{
  --transform-translate-x     : 13rem !important;
}

.focus\:translate-x-56:focus{
  --transform-translate-x     : 14rem !important;
}

.focus\:translate-x-60:focus{
  --transform-translate-x     : 15rem !important;
}

.focus\:translate-x-64:focus{
  --transform-translate-x     : 16rem !important;
}

.focus\:translate-x-72:focus{
  --transform-translate-x     : 18rem !important;
}

.focus\:translate-x-80:focus{
  --transform-translate-x     : 20rem !important;
}

.focus\:translate-x-96:focus{
  --transform-translate-x     : 24rem !important;
}

.focus\:translate-x-px:focus{
  --transform-translate-x     : 1px !important;
}

.focus\:translate-x-0\.5:focus{
  --transform-translate-x     : 0.125rem !important;
}

.focus\:translate-x-1\.5:focus{
  --transform-translate-x     : 0.375rem !important;
}

.focus\:translate-x-2\.5:focus{
  --transform-translate-x     : 0.625rem !important;
}

.focus\:translate-x-3\.5:focus{
  --transform-translate-x     : 0.875rem !important;
}

.focus\:translate-x-1\/2:focus{
  --transform-translate-x     : 50% !important;
}

.focus\:translate-x-1\/3:focus{
  --transform-translate-x     : 33.333333% !important;
}

.focus\:translate-x-2\/3:focus{
  --transform-translate-x     : 66.666667% !important;
}

.focus\:translate-x-1\/4:focus{
  --transform-translate-x     : 25% !important;
}

.focus\:translate-x-2\/4:focus{
  --transform-translate-x     : 50% !important;
}

.focus\:translate-x-3\/4:focus{
  --transform-translate-x     : 75% !important;
}

.focus\:translate-x-1\/5:focus{
  --transform-translate-x     : 20% !important;
}

.focus\:translate-x-2\/5:focus{
  --transform-translate-x     : 40% !important;
}

.focus\:translate-x-3\/5:focus{
  --transform-translate-x     : 60% !important;
}

.focus\:translate-x-4\/5:focus{
  --transform-translate-x     : 80% !important;
}

.focus\:translate-x-1\/6:focus{
  --transform-translate-x     : 16.666667% !important;
}

.focus\:translate-x-2\/6:focus{
  --transform-translate-x     : 33.333333% !important;
}

.focus\:translate-x-3\/6:focus{
  --transform-translate-x     : 50% !important;
}

.focus\:translate-x-4\/6:focus{
  --transform-translate-x     : 66.666667% !important;
}

.focus\:translate-x-5\/6:focus{
  --transform-translate-x     : 83.333333% !important;
}

.focus\:translate-x-1\/12:focus{
  --transform-translate-x     : 8.333333% !important;
}

.focus\:translate-x-2\/12:focus{
  --transform-translate-x     : 16.666667% !important;
}

.focus\:translate-x-3\/12:focus{
  --transform-translate-x     : 25% !important;
}

.focus\:translate-x-4\/12:focus{
  --transform-translate-x     : 33.333333% !important;
}

.focus\:translate-x-5\/12:focus{
  --transform-translate-x     : 41.666667% !important;
}

.focus\:translate-x-6\/12:focus{
  --transform-translate-x     : 50% !important;
}

.focus\:translate-x-7\/12:focus{
  --transform-translate-x     : 58.333333% !important;
}

.focus\:translate-x-8\/12:focus{
  --transform-translate-x     : 66.666667% !important;
}

.focus\:translate-x-9\/12:focus{
  --transform-translate-x     : 75% !important;
}

.focus\:translate-x-10\/12:focus{
  --transform-translate-x     : 83.333333% !important;
}

.focus\:translate-x-11\/12:focus{
  --transform-translate-x     : 91.666667% !important;
}

.focus\:translate-x-full:focus{
  --transform-translate-x     : 100% !important;
}

.focus\:-translate-x-1:focus{
  --transform-translate-x     : -0.25rem !important;
}

.focus\:-translate-x-2:focus{
  --transform-translate-x     : -0.5rem !important;
}

.focus\:-translate-x-3:focus{
  --transform-translate-x     : -0.75rem !important;
}

.focus\:-translate-x-4:focus{
  --transform-translate-x     : -1rem !important;
}

.focus\:-translate-x-5:focus{
  --transform-translate-x     : -1.25rem !important;
}

.focus\:-translate-x-6:focus{
  --transform-translate-x     : -1.5rem !important;
}

.focus\:-translate-x-7:focus{
  --transform-translate-x     : -1.75rem !important;
}

.focus\:-translate-x-8:focus{
  --transform-translate-x     : -2rem !important;
}

.focus\:-translate-x-9:focus{
  --transform-translate-x     : -2.25rem !important;
}

.focus\:-translate-x-10:focus{
  --transform-translate-x     : -2.5rem !important;
}

.focus\:-translate-x-11:focus{
  --transform-translate-x     : -2.75rem !important;
}

.focus\:-translate-x-12:focus{
  --transform-translate-x     : -3rem !important;
}

.focus\:-translate-x-13:focus{
  --transform-translate-x     : -3.25rem !important;
}

.focus\:-translate-x-14:focus{
  --transform-translate-x     : -3.5rem !important;
}

.focus\:-translate-x-15:focus{
  --transform-translate-x     : -3.75rem !important;
}

.focus\:-translate-x-16:focus{
  --transform-translate-x     : -4rem !important;
}

.focus\:-translate-x-20:focus{
  --transform-translate-x     : -5rem !important;
}

.focus\:-translate-x-24:focus{
  --transform-translate-x     : -6rem !important;
}

.focus\:-translate-x-28:focus{
  --transform-translate-x     : -7rem !important;
}

.focus\:-translate-x-32:focus{
  --transform-translate-x     : -8rem !important;
}

.focus\:-translate-x-36:focus{
  --transform-translate-x     : -9rem !important;
}

.focus\:-translate-x-40:focus{
  --transform-translate-x     : -10rem !important;
}

.focus\:-translate-x-44:focus{
  --transform-translate-x     : -11rem !important;
}

.focus\:-translate-x-48:focus{
  --transform-translate-x     : -12rem !important;
}

.focus\:-translate-x-52:focus{
  --transform-translate-x     : -13rem !important;
}

.focus\:-translate-x-56:focus{
  --transform-translate-x     : -14rem !important;
}

.focus\:-translate-x-60:focus{
  --transform-translate-x     : -15rem !important;
}

.focus\:-translate-x-64:focus{
  --transform-translate-x     : -16rem !important;
}

.focus\:-translate-x-72:focus{
  --transform-translate-x     : -18rem !important;
}

.focus\:-translate-x-80:focus{
  --transform-translate-x     : -20rem !important;
}

.focus\:-translate-x-96:focus{
  --transform-translate-x     : -24rem !important;
}

.focus\:-translate-x-px:focus{
  --transform-translate-x     : -1px !important;
}

.focus\:-translate-x-0\.5:focus{
  --transform-translate-x     : -0.125rem !important;
}

.focus\:-translate-x-1\.5:focus{
  --transform-translate-x     : -0.375rem !important;
}

.focus\:-translate-x-2\.5:focus{
  --transform-translate-x     : -0.625rem !important;
}

.focus\:-translate-x-3\.5:focus{
  --transform-translate-x     : -0.875rem !important;
}

.focus\:-translate-x-1\/2:focus{
  --transform-translate-x     : -50% !important;
}

.focus\:-translate-x-1\/3:focus{
  --transform-translate-x     : -33.33333% !important;
}

.focus\:-translate-x-2\/3:focus{
  --transform-translate-x     : -66.66667% !important;
}

.focus\:-translate-x-1\/4:focus{
  --transform-translate-x     : -25% !important;
}

.focus\:-translate-x-2\/4:focus{
  --transform-translate-x     : -50% !important;
}

.focus\:-translate-x-3\/4:focus{
  --transform-translate-x     : -75% !important;
}

.focus\:-translate-x-1\/5:focus{
  --transform-translate-x     : -20% !important;
}

.focus\:-translate-x-2\/5:focus{
  --transform-translate-x     : -40% !important;
}

.focus\:-translate-x-3\/5:focus{
  --transform-translate-x     : -60% !important;
}

.focus\:-translate-x-4\/5:focus{
  --transform-translate-x     : -80% !important;
}

.focus\:-translate-x-1\/6:focus{
  --transform-translate-x     : -16.66667% !important;
}

.focus\:-translate-x-2\/6:focus{
  --transform-translate-x     : -33.33333% !important;
}

.focus\:-translate-x-3\/6:focus{
  --transform-translate-x     : -50% !important;
}

.focus\:-translate-x-4\/6:focus{
  --transform-translate-x     : -66.66667% !important;
}

.focus\:-translate-x-5\/6:focus{
  --transform-translate-x     : -83.33333% !important;
}

.focus\:-translate-x-1\/12:focus{
  --transform-translate-x     : -8.33333% !important;
}

.focus\:-translate-x-2\/12:focus{
  --transform-translate-x     : -16.66667% !important;
}

.focus\:-translate-x-3\/12:focus{
  --transform-translate-x     : -25% !important;
}

.focus\:-translate-x-4\/12:focus{
  --transform-translate-x     : -33.33333% !important;
}

.focus\:-translate-x-5\/12:focus{
  --transform-translate-x     : -41.66667% !important;
}

.focus\:-translate-x-6\/12:focus{
  --transform-translate-x     : -50% !important;
}

.focus\:-translate-x-7\/12:focus{
  --transform-translate-x     : -58.33333% !important;
}

.focus\:-translate-x-8\/12:focus{
  --transform-translate-x     : -66.66667% !important;
}

.focus\:-translate-x-9\/12:focus{
  --transform-translate-x     : -75% !important;
}

.focus\:-translate-x-10\/12:focus{
  --transform-translate-x     : -83.33333% !important;
}

.focus\:-translate-x-11\/12:focus{
  --transform-translate-x     : -91.66667% !important;
}

.focus\:-translate-x-full:focus{
  --transform-translate-x     : -100% !important;
}

.focus\:translate-y-0:focus{
  --transform-translate-y     : 0 !important;
}

.focus\:translate-y-1:focus{
  --transform-translate-y     : 0.25rem !important;
}

.focus\:translate-y-2:focus{
  --transform-translate-y     : 0.5rem !important;
}

.focus\:translate-y-3:focus{
  --transform-translate-y     : 0.75rem !important;
}

.focus\:translate-y-4:focus{
  --transform-translate-y     : 1rem !important;
}

.focus\:translate-y-5:focus{
  --transform-translate-y     : 1.25rem !important;
}

.focus\:translate-y-6:focus{
  --transform-translate-y     : 1.5rem !important;
}

.focus\:translate-y-7:focus{
  --transform-translate-y     : 1.75rem !important;
}

.focus\:translate-y-8:focus{
  --transform-translate-y     : 2rem !important;
}

.focus\:translate-y-9:focus{
  --transform-translate-y     : 2.25rem !important;
}

.focus\:translate-y-10:focus{
  --transform-translate-y     : 2.5rem !important;
}

.focus\:translate-y-11:focus{
  --transform-translate-y     : 2.75rem !important;
}

.focus\:translate-y-12:focus{
  --transform-translate-y     : 3rem !important;
}

.focus\:translate-y-13:focus{
  --transform-translate-y     : 3.25rem !important;
}

.focus\:translate-y-14:focus{
  --transform-translate-y     : 3.5rem !important;
}

.focus\:translate-y-15:focus{
  --transform-translate-y     : 3.75rem !important;
}

.focus\:translate-y-16:focus{
  --transform-translate-y     : 4rem !important;
}

.focus\:translate-y-20:focus{
  --transform-translate-y     : 5rem !important;
}

.focus\:translate-y-24:focus{
  --transform-translate-y     : 6rem !important;
}

.focus\:translate-y-28:focus{
  --transform-translate-y     : 7rem !important;
}

.focus\:translate-y-32:focus{
  --transform-translate-y     : 8rem !important;
}

.focus\:translate-y-36:focus{
  --transform-translate-y     : 9rem !important;
}

.focus\:translate-y-40:focus{
  --transform-translate-y     : 10rem !important;
}

.focus\:translate-y-44:focus{
  --transform-translate-y     : 11rem !important;
}

.focus\:translate-y-48:focus{
  --transform-translate-y     : 12rem !important;
}

.focus\:translate-y-52:focus{
  --transform-translate-y     : 13rem !important;
}

.focus\:translate-y-56:focus{
  --transform-translate-y     : 14rem !important;
}

.focus\:translate-y-60:focus{
  --transform-translate-y     : 15rem !important;
}

.focus\:translate-y-64:focus{
  --transform-translate-y     : 16rem !important;
}

.focus\:translate-y-72:focus{
  --transform-translate-y     : 18rem !important;
}

.focus\:translate-y-80:focus{
  --transform-translate-y     : 20rem !important;
}

.focus\:translate-y-96:focus{
  --transform-translate-y     : 24rem !important;
}

.focus\:translate-y-px:focus{
  --transform-translate-y     : 1px !important;
}

.focus\:translate-y-0\.5:focus{
  --transform-translate-y     : 0.125rem !important;
}

.focus\:translate-y-1\.5:focus{
  --transform-translate-y     : 0.375rem !important;
}

.focus\:translate-y-2\.5:focus{
  --transform-translate-y     : 0.625rem !important;
}

.focus\:translate-y-3\.5:focus{
  --transform-translate-y     : 0.875rem !important;
}

.focus\:translate-y-1\/2:focus{
  --transform-translate-y     : 50% !important;
}

.focus\:translate-y-1\/3:focus{
  --transform-translate-y     : 33.333333% !important;
}

.focus\:translate-y-2\/3:focus{
  --transform-translate-y     : 66.666667% !important;
}

.focus\:translate-y-1\/4:focus{
  --transform-translate-y     : 25% !important;
}

.focus\:translate-y-2\/4:focus{
  --transform-translate-y     : 50% !important;
}

.focus\:translate-y-3\/4:focus{
  --transform-translate-y     : 75% !important;
}

.focus\:translate-y-1\/5:focus{
  --transform-translate-y     : 20% !important;
}

.focus\:translate-y-2\/5:focus{
  --transform-translate-y     : 40% !important;
}

.focus\:translate-y-3\/5:focus{
  --transform-translate-y     : 60% !important;
}

.focus\:translate-y-4\/5:focus{
  --transform-translate-y     : 80% !important;
}

.focus\:translate-y-1\/6:focus{
  --transform-translate-y     : 16.666667% !important;
}

.focus\:translate-y-2\/6:focus{
  --transform-translate-y     : 33.333333% !important;
}

.focus\:translate-y-3\/6:focus{
  --transform-translate-y     : 50% !important;
}

.focus\:translate-y-4\/6:focus{
  --transform-translate-y     : 66.666667% !important;
}

.focus\:translate-y-5\/6:focus{
  --transform-translate-y     : 83.333333% !important;
}

.focus\:translate-y-1\/12:focus{
  --transform-translate-y     : 8.333333% !important;
}

.focus\:translate-y-2\/12:focus{
  --transform-translate-y     : 16.666667% !important;
}

.focus\:translate-y-3\/12:focus{
  --transform-translate-y     : 25% !important;
}

.focus\:translate-y-4\/12:focus{
  --transform-translate-y     : 33.333333% !important;
}

.focus\:translate-y-5\/12:focus{
  --transform-translate-y     : 41.666667% !important;
}

.focus\:translate-y-6\/12:focus{
  --transform-translate-y     : 50% !important;
}

.focus\:translate-y-7\/12:focus{
  --transform-translate-y     : 58.333333% !important;
}

.focus\:translate-y-8\/12:focus{
  --transform-translate-y     : 66.666667% !important;
}

.focus\:translate-y-9\/12:focus{
  --transform-translate-y     : 75% !important;
}

.focus\:translate-y-10\/12:focus{
  --transform-translate-y     : 83.333333% !important;
}

.focus\:translate-y-11\/12:focus{
  --transform-translate-y     : 91.666667% !important;
}

.focus\:translate-y-full:focus{
  --transform-translate-y     : 100% !important;
}

.focus\:-translate-y-1:focus{
  --transform-translate-y     : -0.25rem !important;
}

.focus\:-translate-y-2:focus{
  --transform-translate-y     : -0.5rem !important;
}

.focus\:-translate-y-3:focus{
  --transform-translate-y     : -0.75rem !important;
}

.focus\:-translate-y-4:focus{
  --transform-translate-y     : -1rem !important;
}

.focus\:-translate-y-5:focus{
  --transform-translate-y     : -1.25rem !important;
}

.focus\:-translate-y-6:focus{
  --transform-translate-y     : -1.5rem !important;
}

.focus\:-translate-y-7:focus{
  --transform-translate-y     : -1.75rem !important;
}

.focus\:-translate-y-8:focus{
  --transform-translate-y     : -2rem !important;
}

.focus\:-translate-y-9:focus{
  --transform-translate-y     : -2.25rem !important;
}

.focus\:-translate-y-10:focus{
  --transform-translate-y     : -2.5rem !important;
}

.focus\:-translate-y-11:focus{
  --transform-translate-y     : -2.75rem !important;
}

.focus\:-translate-y-12:focus{
  --transform-translate-y     : -3rem !important;
}

.focus\:-translate-y-13:focus{
  --transform-translate-y     : -3.25rem !important;
}

.focus\:-translate-y-14:focus{
  --transform-translate-y     : -3.5rem !important;
}

.focus\:-translate-y-15:focus{
  --transform-translate-y     : -3.75rem !important;
}

.focus\:-translate-y-16:focus{
  --transform-translate-y     : -4rem !important;
}

.focus\:-translate-y-20:focus{
  --transform-translate-y     : -5rem !important;
}

.focus\:-translate-y-24:focus{
  --transform-translate-y     : -6rem !important;
}

.focus\:-translate-y-28:focus{
  --transform-translate-y     : -7rem !important;
}

.focus\:-translate-y-32:focus{
  --transform-translate-y     : -8rem !important;
}

.focus\:-translate-y-36:focus{
  --transform-translate-y     : -9rem !important;
}

.focus\:-translate-y-40:focus{
  --transform-translate-y     : -10rem !important;
}

.focus\:-translate-y-44:focus{
  --transform-translate-y     : -11rem !important;
}

.focus\:-translate-y-48:focus{
  --transform-translate-y     : -12rem !important;
}

.focus\:-translate-y-52:focus{
  --transform-translate-y     : -13rem !important;
}

.focus\:-translate-y-56:focus{
  --transform-translate-y     : -14rem !important;
}

.focus\:-translate-y-60:focus{
  --transform-translate-y     : -15rem !important;
}

.focus\:-translate-y-64:focus{
  --transform-translate-y     : -16rem !important;
}

.focus\:-translate-y-72:focus{
  --transform-translate-y     : -18rem !important;
}

.focus\:-translate-y-80:focus{
  --transform-translate-y     : -20rem !important;
}

.focus\:-translate-y-96:focus{
  --transform-translate-y     : -24rem !important;
}

.focus\:-translate-y-px:focus{
  --transform-translate-y     : -1px !important;
}

.focus\:-translate-y-0\.5:focus{
  --transform-translate-y     : -0.125rem !important;
}

.focus\:-translate-y-1\.5:focus{
  --transform-translate-y     : -0.375rem !important;
}

.focus\:-translate-y-2\.5:focus{
  --transform-translate-y     : -0.625rem !important;
}

.focus\:-translate-y-3\.5:focus{
  --transform-translate-y     : -0.875rem !important;
}

.focus\:-translate-y-1\/2:focus{
  --transform-translate-y     : -50% !important;
}

.focus\:-translate-y-1\/3:focus{
  --transform-translate-y     : -33.33333% !important;
}

.focus\:-translate-y-2\/3:focus{
  --transform-translate-y     : -66.66667% !important;
}

.focus\:-translate-y-1\/4:focus{
  --transform-translate-y     : -25% !important;
}

.focus\:-translate-y-2\/4:focus{
  --transform-translate-y     : -50% !important;
}

.focus\:-translate-y-3\/4:focus{
  --transform-translate-y     : -75% !important;
}

.focus\:-translate-y-1\/5:focus{
  --transform-translate-y     : -20% !important;
}

.focus\:-translate-y-2\/5:focus{
  --transform-translate-y     : -40% !important;
}

.focus\:-translate-y-3\/5:focus{
  --transform-translate-y     : -60% !important;
}

.focus\:-translate-y-4\/5:focus{
  --transform-translate-y     : -80% !important;
}

.focus\:-translate-y-1\/6:focus{
  --transform-translate-y     : -16.66667% !important;
}

.focus\:-translate-y-2\/6:focus{
  --transform-translate-y     : -33.33333% !important;
}

.focus\:-translate-y-3\/6:focus{
  --transform-translate-y     : -50% !important;
}

.focus\:-translate-y-4\/6:focus{
  --transform-translate-y     : -66.66667% !important;
}

.focus\:-translate-y-5\/6:focus{
  --transform-translate-y     : -83.33333% !important;
}

.focus\:-translate-y-1\/12:focus{
  --transform-translate-y     : -8.33333% !important;
}

.focus\:-translate-y-2\/12:focus{
  --transform-translate-y     : -16.66667% !important;
}

.focus\:-translate-y-3\/12:focus{
  --transform-translate-y     : -25% !important;
}

.focus\:-translate-y-4\/12:focus{
  --transform-translate-y     : -33.33333% !important;
}

.focus\:-translate-y-5\/12:focus{
  --transform-translate-y     : -41.66667% !important;
}

.focus\:-translate-y-6\/12:focus{
  --transform-translate-y     : -50% !important;
}

.focus\:-translate-y-7\/12:focus{
  --transform-translate-y     : -58.33333% !important;
}

.focus\:-translate-y-8\/12:focus{
  --transform-translate-y     : -66.66667% !important;
}

.focus\:-translate-y-9\/12:focus{
  --transform-translate-y     : -75% !important;
}

.focus\:-translate-y-10\/12:focus{
  --transform-translate-y     : -83.33333% !important;
}

.focus\:-translate-y-11\/12:focus{
  --transform-translate-y     : -91.66667% !important;
}

.focus\:-translate-y-full:focus{
  --transform-translate-y     : -100% !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;
}

.group:hover .group-hover\:skew-x-0{
  --transform-skew-x     : 0 !important;
}

.group:hover .group-hover\:skew-x-3{
  --transform-skew-x     : 3deg !important;
}

.group:hover .group-hover\:skew-x-6{
  --transform-skew-x     : 6deg !important;
}

.group:hover .group-hover\:skew-x-12{
  --transform-skew-x     : 12deg !important;
}

.group:hover .group-hover\:-skew-x-12{
  --transform-skew-x     : -12deg !important;
}

.group:hover .group-hover\:-skew-x-6{
  --transform-skew-x     : -6deg !important;
}

.group:hover .group-hover\:-skew-x-3{
  --transform-skew-x     : -3deg !important;
}

.group:hover .group-hover\:skew-y-0{
  --transform-skew-y     : 0 !important;
}

.group:hover .group-hover\:skew-y-3{
  --transform-skew-y     : 3deg !important;
}

.group:hover .group-hover\:skew-y-6{
  --transform-skew-y     : 6deg !important;
}

.group:hover .group-hover\:skew-y-12{
  --transform-skew-y     : 12deg !important;
}

.group:hover .group-hover\:-skew-y-12{
  --transform-skew-y     : -12deg !important;
}

.group:hover .group-hover\:-skew-y-6{
  --transform-skew-y     : -6deg !important;
}

.group:hover .group-hover\:-skew-y-3{
  --transform-skew-y     : -3deg !important;
}

.hover\:skew-x-0:hover{
  --transform-skew-x     : 0 !important;
}

.hover\:skew-x-3:hover{
  --transform-skew-x     : 3deg !important;
}

.hover\:skew-x-6:hover{
  --transform-skew-x     : 6deg !important;
}

.hover\:skew-x-12:hover{
  --transform-skew-x     : 12deg !important;
}

.hover\:-skew-x-12:hover{
  --transform-skew-x     : -12deg !important;
}

.hover\:-skew-x-6:hover{
  --transform-skew-x     : -6deg !important;
}

.hover\:-skew-x-3:hover{
  --transform-skew-x     : -3deg !important;
}

.hover\:skew-y-0:hover{
  --transform-skew-y     : 0 !important;
}

.hover\:skew-y-3:hover{
  --transform-skew-y     : 3deg !important;
}

.hover\:skew-y-6:hover{
  --transform-skew-y     : 6deg !important;
}

.hover\:skew-y-12:hover{
  --transform-skew-y     : 12deg !important;
}

.hover\:-skew-y-12:hover{
  --transform-skew-y     : -12deg !important;
}

.hover\:-skew-y-6:hover{
  --transform-skew-y     : -6deg !important;
}

.hover\:-skew-y-3:hover{
  --transform-skew-y     : -3deg !important;
}

.focus\:skew-x-0:focus{
  --transform-skew-x     : 0 !important;
}

.focus\:skew-x-3:focus{
  --transform-skew-x     : 3deg !important;
}

.focus\:skew-x-6:focus{
  --transform-skew-x     : 6deg !important;
}

.focus\:skew-x-12:focus{
  --transform-skew-x     : 12deg !important;
}

.focus\:-skew-x-12:focus{
  --transform-skew-x     : -12deg !important;
}

.focus\:-skew-x-6:focus{
  --transform-skew-x     : -6deg !important;
}

.focus\:-skew-x-3:focus{
  --transform-skew-x     : -3deg !important;
}

.focus\:skew-y-0:focus{
  --transform-skew-y     : 0 !important;
}

.focus\:skew-y-3:focus{
  --transform-skew-y     : 3deg !important;
}

.focus\:skew-y-6:focus{
  --transform-skew-y     : 6deg !important;
}

.focus\:skew-y-12:focus{
  --transform-skew-y     : 12deg !important;
}

.focus\:-skew-y-12:focus{
  --transform-skew-y     : -12deg !important;
}

.focus\:-skew-y-6:focus{
  --transform-skew-y     : -6deg !important;
}

.focus\:-skew-y-3:focus{
  --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;
}

.group:hover .group-hover\:transition-none{
  transition-property     : none !important;
}

.group:hover .group-hover\:transition-all{
  transition-property     : all !important;
}

.group:hover .group-hover\:transition{
  transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
}

.group:hover .group-hover\:transition-colors{
  transition-property     : background-color, border-color, color, fill, stroke !important;
}

.group:hover .group-hover\:transition-opacity{
  transition-property     : opacity !important;
}

.group:hover .group-hover\:transition-shadow{
  transition-property     : box-shadow !important;
}

.group:hover .group-hover\:transition-transform{
  transition-property     : transform !important;
}

.hover\:transition-none:hover{
  transition-property     : none !important;
}

.hover\:transition-all:hover{
  transition-property     : all !important;
}

.hover\:transition:hover{
  transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
}

.hover\:transition-colors:hover{
  transition-property     : background-color, border-color, color, fill, stroke !important;
}

.hover\:transition-opacity:hover{
  transition-property     : opacity !important;
}

.hover\:transition-shadow:hover{
  transition-property     : box-shadow !important;
}

.hover\:transition-transform:hover{
  transition-property     : transform !important;
}

.focus\:transition-none:focus{
  transition-property     : none !important;
}

.focus\:transition-all:focus{
  transition-property     : all !important;
}

.focus\:transition:focus{
  transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
}

.focus\:transition-colors:focus{
  transition-property     : background-color, border-color, color, fill, stroke !important;
}

.focus\:transition-opacity:focus{
  transition-property     : opacity !important;
}

.focus\:transition-shadow:focus{
  transition-property     : box-shadow !important;
}

.focus\:transition-transform:focus{
  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;
}

.group:hover .group-hover\:ease-linear{
  transition-timing-function     : linear !important;
}

.group:hover .group-hover\:ease-in{
  transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
}

.group:hover .group-hover\:ease-out{
  transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
}

.group:hover .group-hover\:ease-in-out{
  transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hover\:ease-linear:hover{
  transition-timing-function     : linear !important;
}

.hover\:ease-in:hover{
  transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
}

.hover\:ease-out:hover{
  transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
}

.hover\:ease-in-out:hover{
  transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.focus\:ease-linear:focus{
  transition-timing-function     : linear !important;
}

.focus\:ease-in:focus{
  transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
}

.focus\:ease-out:focus{
  transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
}

.focus\:ease-in-out:focus{
  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;
}

.group:hover .group-hover\:duration-75{
  transition-duration     : 75ms !important;
}

.group:hover .group-hover\:duration-100{
  transition-duration     : 100ms !important;
}

.group:hover .group-hover\:duration-150{
  transition-duration     : 150ms !important;
}

.group:hover .group-hover\:duration-200{
  transition-duration     : 200ms !important;
}

.group:hover .group-hover\:duration-300{
  transition-duration     : 300ms !important;
}

.group:hover .group-hover\:duration-500{
  transition-duration     : 500ms !important;
}

.group:hover .group-hover\:duration-700{
  transition-duration     : 700ms !important;
}

.group:hover .group-hover\:duration-1000{
  transition-duration     : 1000ms !important;
}

.hover\:duration-75:hover{
  transition-duration     : 75ms !important;
}

.hover\:duration-100:hover{
  transition-duration     : 100ms !important;
}

.hover\:duration-150:hover{
  transition-duration     : 150ms !important;
}

.hover\:duration-200:hover{
  transition-duration     : 200ms !important;
}

.hover\:duration-300:hover{
  transition-duration     : 300ms !important;
}

.hover\:duration-500:hover{
  transition-duration     : 500ms !important;
}

.hover\:duration-700:hover{
  transition-duration     : 700ms !important;
}

.hover\:duration-1000:hover{
  transition-duration     : 1000ms !important;
}

.focus\:duration-75:focus{
  transition-duration     : 75ms !important;
}

.focus\:duration-100:focus{
  transition-duration     : 100ms !important;
}

.focus\:duration-150:focus{
  transition-duration     : 150ms !important;
}

.focus\:duration-200:focus{
  transition-duration     : 200ms !important;
}

.focus\:duration-300:focus{
  transition-duration     : 300ms !important;
}

.focus\:duration-500:focus{
  transition-duration     : 500ms !important;
}

.focus\:duration-700:focus{
  transition-duration     : 700ms !important;
}

.focus\:duration-1000:focus{
  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;
}

.group:hover .group-hover\:delay-75{
  transition-delay     : 75ms !important;
}

.group:hover .group-hover\:delay-100{
  transition-delay     : 100ms !important;
}

.group:hover .group-hover\:delay-150{
  transition-delay     : 150ms !important;
}

.group:hover .group-hover\:delay-200{
  transition-delay     : 200ms !important;
}

.group:hover .group-hover\:delay-300{
  transition-delay     : 300ms !important;
}

.group:hover .group-hover\:delay-500{
  transition-delay     : 500ms !important;
}

.group:hover .group-hover\:delay-700{
  transition-delay     : 700ms !important;
}

.group:hover .group-hover\:delay-1000{
  transition-delay     : 1000ms !important;
}

.hover\:delay-75:hover{
  transition-delay     : 75ms !important;
}

.hover\:delay-100:hover{
  transition-delay     : 100ms !important;
}

.hover\:delay-150:hover{
  transition-delay     : 150ms !important;
}

.hover\:delay-200:hover{
  transition-delay     : 200ms !important;
}

.hover\:delay-300:hover{
  transition-delay     : 300ms !important;
}

.hover\:delay-500:hover{
  transition-delay     : 500ms !important;
}

.hover\:delay-700:hover{
  transition-delay     : 700ms !important;
}

.hover\:delay-1000:hover{
  transition-delay     : 1000ms !important;
}

.focus\:delay-75:focus{
  transition-delay     : 75ms !important;
}

.focus\:delay-100:focus{
  transition-delay     : 100ms !important;
}

.focus\:delay-150:focus{
  transition-delay     : 150ms !important;
}

.focus\:delay-200:focus{
  transition-delay     : 200ms !important;
}

.focus\:delay-300:focus{
  transition-delay     : 300ms !important;
}

.focus\:delay-500:focus{
  transition-delay     : 500ms !important;
}

.focus\:delay-700:focus{
  transition-delay     : 700ms !important;
}

.focus\:delay-1000:focus{
  transition-delay     : 1000ms !important;
}

@-webkit-keyframes spin{
  from{
    transform     : rotate(0deg);
  }

  to{
    transform     : rotate(360deg);
  }
}

@keyframes spin{
  from{
    transform     : rotate(0deg);
  }

  to{
    transform     : rotate(360deg);
  }
}

@-webkit-keyframes ping{
  0%{
    transform     : scale(1);
    opacity     : 1;
  }

  75%, 100%{
    transform     : scale(2);
    opacity     : 0;
  }
}

@keyframes ping{
  0%{
    transform     : scale(1);
    opacity     : 1;
  }

  75%, 100%{
    transform     : scale(2);
    opacity     : 0;
  }
}

@-webkit-keyframes pulse{
  0%, 100%{
    opacity     : 1;
  }

  50%{
    opacity     : .5;
  }
}

@keyframes pulse{
  0%, 100%{
    opacity     : 1;
  }

  50%{
    opacity     : .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     : translateY(0);
    -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     : translateY(0);
    -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;
}

.group:hover .group-hover\:animate-none{
  -webkit-animation     : none !important;
          animation     : none !important;
}

.group:hover .group-hover\:animate-spin{
  -webkit-animation     : spin 1s linear infinite !important;
          animation     : spin 1s linear infinite !important;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\: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;
}

.group:hover .group-hover\:animate-bounce{
  -webkit-animation     : bounce 1s infinite !important;
          animation     : bounce 1s infinite !important;
}

.hover\:animate-none:hover{
  -webkit-animation     : none !important;
          animation     : none !important;
}

.hover\:animate-spin:hover{
  -webkit-animation     : spin 1s linear infinite !important;
          animation     : spin 1s linear infinite !important;
}

.hover\:animate-ping:hover{
  -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;
}

.hover\:animate-pulse:hover{
  -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;
}

.hover\:animate-bounce:hover{
  -webkit-animation     : bounce 1s infinite !important;
          animation     : bounce 1s infinite !important;
}

.focus\:animate-none:focus{
  -webkit-animation     : none !important;
          animation     : none !important;
}

.focus\:animate-spin:focus{
  -webkit-animation     : spin 1s linear infinite !important;
          animation     : spin 1s linear infinite !important;
}

.focus\:animate-ping:focus{
  -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;
}

.focus\:animate-pulse:focus{
  -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;
}

.focus\:animate-bounce:focus{
  -webkit-animation     : bounce 1s infinite !important;
          animation     : bounce 1s infinite !important;
}

.parent-grid-overflow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20rem);
}

.parent-grid-overflow-row {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: calc(20rem);
}

.parent-grid-overflow-col-hidden {
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20rem);
}

.min-entry-height {
  min-height: 6rem;
}

.filter-blur {
  -webkit-filter: blur(3px);
          filter: blur(3px)
}

@media (min-width: 640px){
  .sm\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .sm\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .sm\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .sm\:container{
      max-width     : 1280px;
    }
  }

  .group:hover .sm\:group-hover\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .sm\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .sm\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .sm\:container{
      max-width     : 1280px;
    }
  }

  .sm\:hover\:container:hover{
    width     : 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .sm\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .sm\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .sm\:container{
      max-width     : 1280px;
    }
  }

  .sm\:focus\:container:focus{
    width     : 100%;
  }

  @media (min-width: 640px){
    .sm\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .sm\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .sm\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .sm\:container{
      max-width     : 1280px;
    }
  }

  .sm\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .sm\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .sm\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .sm\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .sm\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .sm\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .sm\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .sm\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .sm\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .sm\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .sm\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .sm\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .sm\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .sm\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .sm\:prose code::before{
    content     : "`";
  }

  .sm\:prose code::after{
    content     : "`";
  }

  .sm\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .sm\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .sm\:prose pre code::before{
    content     : "";
  }

  .sm\:prose pre code::after{
    content     : "";
  }

  .sm\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .sm\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .sm\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .sm\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .sm\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .sm\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:prose h2 code{
    font-size     : 0.875em;
  }

  .sm\:prose h3 code{
    font-size     : 0.9em;
  }

  .sm\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:prose ol > li:before{
    left     : 0;
  }

  .sm\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:prose ul ul, .sm\:prose ul ol, .sm\:prose ol ul, .sm\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:prose hr + *{
    margin-top     : 0;
  }

  .sm\:prose h2 + *{
    margin-top     : 0;
  }

  .sm\:prose h3 + *{
    margin-top     : 0;
  }

  .sm\:prose h4 + *{
    margin-top     : 0;
  }

  .sm\:prose thead th:first-child{
    padding-left     : 0;
  }

  .sm\:prose thead th:last-child{
    padding-right     : 0;
  }

  .sm\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:prose > :first-child{
    margin-top     : 0;
  }

  .sm\:prose > :last-child{
    margin-bottom     : 0;
  }

  .sm\:prose h1, .sm\:prose h2, .sm\:prose h3, .sm\:prose h4{
    color     : #161e2e;
  }

  .sm\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .sm\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .sm\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .sm\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .sm\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .sm\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .sm\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .sm\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .sm\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .sm\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .sm\:prose-sm ol > li:before{
    left     : 0;
  }

  .sm\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .sm\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .sm\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:prose-sm ul ul, .sm\:prose-sm ul ol, .sm\:prose-sm ol ul, .sm\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .sm\:prose-sm hr + *{
    margin-top     : 0;
  }

  .sm\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .sm\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .sm\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .sm\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .sm\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .sm\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .sm\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .sm\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .sm\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .sm\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .sm\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .sm\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .sm\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .sm\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .sm\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .sm\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .sm\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .sm\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .sm\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:prose-lg ol > li:before{
    left     : 0;
  }

  .sm\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .sm\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-lg ul ul, .sm\:prose-lg ul ol, .sm\:prose-lg ol ul, .sm\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .sm\:prose-lg hr + *{
    margin-top     : 0;
  }

  .sm\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .sm\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .sm\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .sm\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .sm\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .sm\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .sm\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .sm\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .sm\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .sm\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .sm\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .sm\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .sm\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .sm\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .sm\:prose-xl code{
    font-size     : 0.9em;
  }

  .sm\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .sm\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .sm\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .sm\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .sm\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .sm\:prose-xl ol > li:before{
    left     : 0;
  }

  .sm\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .sm\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .sm\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:prose-xl ul ul, .sm\:prose-xl ul ol, .sm\:prose-xl ol ul, .sm\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .sm\:prose-xl hr + *{
    margin-top     : 0;
  }

  .sm\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .sm\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .sm\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .sm\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .sm\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .sm\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .sm\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .sm\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .sm\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .sm\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .sm\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .sm\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .sm\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .sm\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .sm\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .sm\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .sm\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .sm\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .sm\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:prose-2xl ol > li:before{
    left     : 0;
  }

  .sm\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .sm\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .sm\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:prose-2xl ul ul, .sm\:prose-2xl ul ol, .sm\:prose-2xl ol ul, .sm\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .sm\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .sm\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .sm\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .sm\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .sm\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .sm\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .sm\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .sm\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .group:hover .sm\:group-hover\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .group:hover .sm\:group-hover\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .group:hover .sm\:group-hover\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .group:hover .sm\:group-hover\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .group:hover .sm\:group-hover\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .group:hover .sm\:group-hover\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .group:hover .sm\:group-hover\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .sm\:group-hover\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .group:hover .sm\:group-hover\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .group:hover .sm\:group-hover\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .group:hover .sm\:group-hover\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .sm\:group-hover\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .group:hover .sm\:group-hover\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .sm\:group-hover\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .group:hover .sm\:group-hover\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .group:hover .sm\:group-hover\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .group:hover .sm\:group-hover\:prose code::before{
    content     : "`";
  }

  .group:hover .sm\:group-hover\:prose code::after{
    content     : "`";
  }

  .group:hover .sm\:group-hover\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .group:hover .sm\:group-hover\:prose pre code::before{
    content     : "";
  }

  .group:hover .sm\:group-hover\:prose pre code::after{
    content     : "";
  }

  .group:hover .sm\:group-hover\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .group:hover .sm\:group-hover\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .group:hover .sm\:group-hover\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .sm\:group-hover\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .group:hover .sm\:group-hover\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .group:hover .sm\:group-hover\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .sm\:group-hover\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .group:hover .sm\:group-hover\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose h2 code{
    font-size     : 0.875em;
  }

  .group:hover .sm\:group-hover\:prose h3 code{
    font-size     : 0.9em;
  }

  .group:hover .sm\:group-hover\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .sm\:group-hover\:prose ol > li:before{
    left     : 0;
  }

  .group:hover .sm\:group-hover\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .sm\:group-hover\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .sm\:group-hover\:prose ul ul, .group:hover .sm\:group-hover\:prose ul ol, .group:hover .sm\:group-hover\:prose ol ul, .group:hover .sm\:group-hover\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .sm\:group-hover\:prose hr + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose h2 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose h3 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose h4 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose > :first-child{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose h1, .group:hover .sm\:group-hover\:prose h2, .group:hover .sm\:group-hover\:prose h3, .group:hover .sm\:group-hover\:prose h4{
    color     : #161e2e;
  }

  .group:hover .sm\:group-hover\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .group:hover .sm\:group-hover\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .group:hover .sm\:group-hover\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .group:hover .sm\:group-hover\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .group:hover .sm\:group-hover\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .sm\:group-hover\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .group:hover .sm\:group-hover\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .sm\:group-hover\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .sm\:group-hover\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .sm\:group-hover\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .group:hover .sm\:group-hover\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .group:hover .sm\:group-hover\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .group:hover .sm\:group-hover\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .sm\:group-hover\:prose-sm ol > li:before{
    left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .sm\:group-hover\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .group:hover .sm\:group-hover\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .sm\:group-hover\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .sm\:group-hover\:prose-sm ul ul, .group:hover .sm\:group-hover\:prose-sm ul ol, .group:hover .sm\:group-hover\:prose-sm ol ul, .group:hover .sm\:group-hover\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .sm\:group-hover\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .group:hover .sm\:group-hover\:prose-sm hr + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .group:hover .sm\:group-hover\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .group:hover .sm\:group-hover\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .group:hover .sm\:group-hover\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .group:hover .sm\:group-hover\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .group:hover .sm\:group-hover\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .sm\:group-hover\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .sm\:group-hover\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .sm\:group-hover\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .sm\:group-hover\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .sm\:group-hover\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .group:hover .sm\:group-hover\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .group:hover .sm\:group-hover\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .group:hover .sm\:group-hover\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-lg ol > li:before{
    left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .group:hover .sm\:group-hover\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-lg ul ul, .group:hover .sm\:group-hover\:prose-lg ul ol, .group:hover .sm\:group-hover\:prose-lg ol ul, .group:hover .sm\:group-hover\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .group:hover .sm\:group-hover\:prose-lg hr + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .group:hover .sm\:group-hover\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .sm\:group-hover\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .sm\:group-hover\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .group:hover .sm\:group-hover\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .group:hover .sm\:group-hover\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .group:hover .sm\:group-hover\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .sm\:group-hover\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .group:hover .sm\:group-hover\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .sm\:group-hover\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-xl code{
    font-size     : 0.9em;
  }

  .group:hover .sm\:group-hover\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .group:hover .sm\:group-hover\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .group:hover .sm\:group-hover\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .group:hover .sm\:group-hover\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .group:hover .sm\:group-hover\:prose-xl ol > li:before{
    left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .group:hover .sm\:group-hover\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .group:hover .sm\:group-hover\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .sm\:group-hover\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .sm\:group-hover\:prose-xl ul ul, .group:hover .sm\:group-hover\:prose-xl ul ol, .group:hover .sm\:group-hover\:prose-xl ol ul, .group:hover .sm\:group-hover\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .sm\:group-hover\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .group:hover .sm\:group-hover\:prose-xl hr + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .group:hover .sm\:group-hover\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .group:hover .sm\:group-hover\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .group:hover .sm\:group-hover\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .group:hover .sm\:group-hover\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .group:hover .sm\:group-hover\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .group:hover .sm\:group-hover\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .group:hover .sm\:group-hover\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .sm\:group-hover\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .sm\:group-hover\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .group:hover .sm\:group-hover\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .group:hover .sm\:group-hover\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .sm\:group-hover\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ol > li:before{
    left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .group:hover .sm\:group-hover\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .sm\:group-hover\:prose-2xl ul ul, .group:hover .sm\:group-hover\:prose-2xl ul ol, .group:hover .sm\:group-hover\:prose-2xl ol ul, .group:hover .sm\:group-hover\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .sm\:group-hover\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .sm\:group-hover\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .group:hover .sm\:group-hover\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .sm\:group-hover\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .sm\:group-hover\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .sm\:group-hover\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .sm\:hover\:prose:hover{
    color     : #374151;
    max-width     : 65ch;
  }

  .sm\:hover\:prose:hover [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose:hover a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .sm\:hover\:prose:hover strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .sm\:hover\:prose:hover ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:hover\:prose:hover ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .sm\:hover\:prose:hover ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .sm\:hover\:prose:hover ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .sm\:hover\:prose:hover ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .sm\:hover\:prose:hover hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:hover\:prose:hover blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .sm\:hover\:prose:hover blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .sm\:hover\:prose:hover blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .sm\:hover\:prose:hover h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:hover\:prose:hover h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .sm\:hover\:prose:hover h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:hover\:prose:hover h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .sm\:hover\:prose:hover figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .sm\:hover\:prose:hover code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .sm\:hover\:prose:hover code::before{
    content     : "`";
  }

  .sm\:hover\:prose:hover code::after{
    content     : "`";
  }

  .sm\:hover\:prose:hover pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .sm\:hover\:prose:hover pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .sm\:hover\:prose:hover pre code::before{
    content     : "";
  }

  .sm\:hover\:prose:hover pre code::after{
    content     : "";
  }

  .sm\:hover\:prose:hover table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .sm\:hover\:prose:hover thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .sm\:hover\:prose:hover thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:hover\:prose:hover tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .sm\:hover\:prose:hover tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .sm\:hover\:prose:hover tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:hover\:prose:hover{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .sm\:hover\:prose:hover p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:hover\:prose:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:hover\:prose:hover h2 code{
    font-size     : 0.875em;
  }

  .sm\:hover\:prose:hover h3 code{
    font-size     : 0.9em;
  }

  .sm\:hover\:prose:hover ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:hover\:prose:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:hover\:prose:hover ol > li:before{
    left     : 0;
  }

  .sm\:hover\:prose:hover > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:hover\:prose:hover > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:hover\:prose:hover > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:hover\:prose:hover > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:hover\:prose:hover > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:hover\:prose:hover ul ul, .sm\:hover\:prose:hover ul ol, .sm\:hover\:prose:hover ol ul, .sm\:hover\:prose:hover ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:hover\:prose:hover hr + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose:hover h2 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose:hover h3 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose:hover h4 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose:hover thead th:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose:hover thead th:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose:hover tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose:hover tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose:hover > :first-child{
    margin-top     : 0;
  }

  .sm\:hover\:prose:hover > :last-child{
    margin-bottom     : 0;
  }

  .sm\:hover\:prose:hover h1, .sm\:hover\:prose:hover h2, .sm\:hover\:prose:hover h3, .sm\:hover\:prose:hover h4{
    color     : #161e2e;
  }

  .sm\:hover\:prose-sm:hover{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .sm\:hover\:prose-sm:hover p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:hover\:prose-sm:hover blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .sm\:hover\:prose-sm:hover h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .sm\:hover\:prose-sm:hover h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .sm\:hover\:prose-sm:hover h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:hover\:prose-sm:hover h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .sm\:hover\:prose-sm:hover img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:hover\:prose-sm:hover video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:hover\:prose-sm:hover figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:hover\:prose-sm:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-sm:hover figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .sm\:hover\:prose-sm:hover code{
    font-size     : 0.8571429em;
  }

  .sm\:hover\:prose-sm:hover h2 code{
    font-size     : 0.9em;
  }

  .sm\:hover\:prose-sm:hover h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:hover\:prose-sm:hover pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:hover\:prose-sm:hover ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .sm\:hover\:prose-sm:hover ol > li{
    padding-left     : 1.5714286em;
  }

  .sm\:hover\:prose-sm:hover ol > li:before{
    left     : 0;
  }

  .sm\:hover\:prose-sm:hover ul > li{
    padding-left     : 1.5714286em;
  }

  .sm\:hover\:prose-sm:hover ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .sm\:hover\:prose-sm:hover > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:hover\:prose-sm:hover > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:hover\:prose-sm:hover ul ul, .sm\:hover\:prose-sm:hover ul ol, .sm\:hover\:prose-sm:hover ol ul, .sm\:hover\:prose-sm:hover ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:hover\:prose-sm:hover hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .sm\:hover\:prose-sm:hover hr + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-sm:hover h2 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-sm:hover h3 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-sm:hover h4 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-sm:hover table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .sm\:hover\:prose-sm:hover thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:hover\:prose-sm:hover thead th:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-sm:hover thead th:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-sm:hover tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:hover\:prose-sm:hover tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-sm:hover tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-sm:hover > :first-child{
    margin-top     : 0;
  }

  .sm\:hover\:prose-sm:hover > :last-child{
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-lg:hover{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .sm\:hover\:prose-lg:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .sm\:hover\:prose-lg:hover blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .sm\:hover\:prose-lg:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .sm\:hover\:prose-lg:hover h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .sm\:hover\:prose-lg:hover h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:hover\:prose-lg:hover h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:hover\:prose-lg:hover img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:hover\:prose-lg:hover video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:hover\:prose-lg:hover figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:hover\:prose-lg:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-lg:hover figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .sm\:hover\:prose-lg:hover code{
    font-size     : 0.8888889em;
  }

  .sm\:hover\:prose-lg:hover h2 code{
    font-size     : 0.8666667em;
  }

  .sm\:hover\:prose-lg:hover h3 code{
    font-size     : 0.875em;
  }

  .sm\:hover\:prose-lg:hover pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .sm\:hover\:prose-lg:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:hover\:prose-lg:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:hover\:prose-lg:hover ol > li:before{
    left     : 0;
  }

  .sm\:hover\:prose-lg:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:hover\:prose-lg:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .sm\:hover\:prose-lg:hover > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:hover\:prose-lg:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-lg:hover ul ul, .sm\:hover\:prose-lg:hover ul ol, .sm\:hover\:prose-lg:hover ol ul, .sm\:hover\:prose-lg:hover ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:hover\:prose-lg:hover hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .sm\:hover\:prose-lg:hover hr + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-lg:hover h2 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-lg:hover h3 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-lg:hover h4 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-lg:hover table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .sm\:hover\:prose-lg:hover thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:hover\:prose-lg:hover thead th:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-lg:hover thead th:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-lg:hover tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:hover\:prose-lg:hover tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-lg:hover tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-lg:hover > :first-child{
    margin-top     : 0;
  }

  .sm\:hover\:prose-lg:hover > :last-child{
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-xl:hover{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .sm\:hover\:prose-xl:hover p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .sm\:hover\:prose-xl:hover blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .sm\:hover\:prose-xl:hover h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .sm\:hover\:prose-xl:hover h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:hover\:prose-xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .sm\:hover\:prose-xl:hover h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:hover\:prose-xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-xl:hover figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .sm\:hover\:prose-xl:hover code{
    font-size     : 0.9em;
  }

  .sm\:hover\:prose-xl:hover h2 code{
    font-size     : 0.8611111em;
  }

  .sm\:hover\:prose-xl:hover h3 code{
    font-size     : 0.9em;
  }

  .sm\:hover\:prose-xl:hover pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .sm\:hover\:prose-xl:hover ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .sm\:hover\:prose-xl:hover ol > li{
    padding-left     : 1.8em;
  }

  .sm\:hover\:prose-xl:hover ol > li:before{
    left     : 0;
  }

  .sm\:hover\:prose-xl:hover ul > li{
    padding-left     : 1.8em;
  }

  .sm\:hover\:prose-xl:hover ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .sm\:hover\:prose-xl:hover > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:hover\:prose-xl:hover > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:hover\:prose-xl:hover ul ul, .sm\:hover\:prose-xl:hover ul ol, .sm\:hover\:prose-xl:hover ol ul, .sm\:hover\:prose-xl:hover ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:hover\:prose-xl:hover hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .sm\:hover\:prose-xl:hover hr + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-xl:hover h2 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-xl:hover h3 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-xl:hover h4 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-xl:hover table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .sm\:hover\:prose-xl:hover thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:hover\:prose-xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-xl:hover tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:hover\:prose-xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-xl:hover > :first-child{
    margin-top     : 0;
  }

  .sm\:hover\:prose-xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-2xl:hover{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .sm\:hover\:prose-2xl:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .sm\:hover\:prose-2xl:hover blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .sm\:hover\:prose-2xl:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .sm\:hover\:prose-2xl:hover h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .sm\:hover\:prose-2xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .sm\:hover\:prose-2xl:hover h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:hover\:prose-2xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-2xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-2xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:hover\:prose-2xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:hover\:prose-2xl:hover figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .sm\:hover\:prose-2xl:hover code{
    font-size     : 0.8333333em;
  }

  .sm\:hover\:prose-2xl:hover h2 code{
    font-size     : 0.875em;
  }

  .sm\:hover\:prose-2xl:hover h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:hover\:prose-2xl:hover pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .sm\:hover\:prose-2xl:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:hover\:prose-2xl:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:hover\:prose-2xl:hover ol > li:before{
    left     : 0;
  }

  .sm\:hover\:prose-2xl:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:hover\:prose-2xl:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .sm\:hover\:prose-2xl:hover > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .sm\:hover\:prose-2xl:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:hover\:prose-2xl:hover ul ul, .sm\:hover\:prose-2xl:hover ul ol, .sm\:hover\:prose-2xl:hover ol ul, .sm\:hover\:prose-2xl:hover ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:hover\:prose-2xl:hover hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:hover\:prose-2xl:hover hr + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-2xl:hover h2 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-2xl:hover h3 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-2xl:hover h4 + *{
    margin-top     : 0;
  }

  .sm\:hover\:prose-2xl:hover table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .sm\:hover\:prose-2xl:hover thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:hover\:prose-2xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-2xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-2xl:hover tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:hover\:prose-2xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:hover\:prose-2xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:hover\:prose-2xl:hover > :first-child{
    margin-top     : 0;
  }

  .sm\:hover\:prose-2xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .sm\:focus\:prose:focus{
    color     : #374151;
    max-width     : 65ch;
  }

  .sm\:focus\:prose:focus [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose:focus a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .sm\:focus\:prose:focus strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .sm\:focus\:prose:focus ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:focus\:prose:focus ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .sm\:focus\:prose:focus ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .sm\:focus\:prose:focus ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .sm\:focus\:prose:focus ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .sm\:focus\:prose:focus hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:focus\:prose:focus blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .sm\:focus\:prose:focus blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .sm\:focus\:prose:focus blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .sm\:focus\:prose:focus h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:focus\:prose:focus h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .sm\:focus\:prose:focus h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:focus\:prose:focus h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .sm\:focus\:prose:focus figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .sm\:focus\:prose:focus code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .sm\:focus\:prose:focus code::before{
    content     : "`";
  }

  .sm\:focus\:prose:focus code::after{
    content     : "`";
  }

  .sm\:focus\:prose:focus pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .sm\:focus\:prose:focus pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .sm\:focus\:prose:focus pre code::before{
    content     : "";
  }

  .sm\:focus\:prose:focus pre code::after{
    content     : "";
  }

  .sm\:focus\:prose:focus table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .sm\:focus\:prose:focus thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .sm\:focus\:prose:focus thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:focus\:prose:focus tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .sm\:focus\:prose:focus tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .sm\:focus\:prose:focus tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .sm\:focus\:prose:focus{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .sm\:focus\:prose:focus p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:focus\:prose:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:focus\:prose:focus h2 code{
    font-size     : 0.875em;
  }

  .sm\:focus\:prose:focus h3 code{
    font-size     : 0.9em;
  }

  .sm\:focus\:prose:focus ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .sm\:focus\:prose:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:focus\:prose:focus ol > li:before{
    left     : 0;
  }

  .sm\:focus\:prose:focus > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:focus\:prose:focus > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:focus\:prose:focus > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:focus\:prose:focus > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .sm\:focus\:prose:focus > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .sm\:focus\:prose:focus ul ul, .sm\:focus\:prose:focus ul ol, .sm\:focus\:prose:focus ol ul, .sm\:focus\:prose:focus ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .sm\:focus\:prose:focus hr + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose:focus h2 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose:focus h3 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose:focus h4 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose:focus thead th:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose:focus thead th:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose:focus tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose:focus tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose:focus > :first-child{
    margin-top     : 0;
  }

  .sm\:focus\:prose:focus > :last-child{
    margin-bottom     : 0;
  }

  .sm\:focus\:prose:focus h1, .sm\:focus\:prose:focus h2, .sm\:focus\:prose:focus h3, .sm\:focus\:prose:focus h4{
    color     : #161e2e;
  }

  .sm\:focus\:prose-sm:focus{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .sm\:focus\:prose-sm:focus p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:focus\:prose-sm:focus blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .sm\:focus\:prose-sm:focus h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .sm\:focus\:prose-sm:focus h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .sm\:focus\:prose-sm:focus h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:focus\:prose-sm:focus h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .sm\:focus\:prose-sm:focus img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:focus\:prose-sm:focus video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:focus\:prose-sm:focus figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .sm\:focus\:prose-sm:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-sm:focus figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .sm\:focus\:prose-sm:focus code{
    font-size     : 0.8571429em;
  }

  .sm\:focus\:prose-sm:focus h2 code{
    font-size     : 0.9em;
  }

  .sm\:focus\:prose-sm:focus h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:focus\:prose-sm:focus pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:focus\:prose-sm:focus ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .sm\:focus\:prose-sm:focus ol > li{
    padding-left     : 1.5714286em;
  }

  .sm\:focus\:prose-sm:focus ol > li:before{
    left     : 0;
  }

  .sm\:focus\:prose-sm:focus ul > li{
    padding-left     : 1.5714286em;
  }

  .sm\:focus\:prose-sm:focus ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .sm\:focus\:prose-sm:focus > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:focus\:prose-sm:focus > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .sm\:focus\:prose-sm:focus ul ul, .sm\:focus\:prose-sm:focus ul ol, .sm\:focus\:prose-sm:focus ol ul, .sm\:focus\:prose-sm:focus ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .sm\:focus\:prose-sm:focus hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .sm\:focus\:prose-sm:focus hr + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-sm:focus h2 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-sm:focus h3 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-sm:focus h4 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-sm:focus table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .sm\:focus\:prose-sm:focus thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:focus\:prose-sm:focus thead th:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-sm:focus thead th:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-sm:focus tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .sm\:focus\:prose-sm:focus tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-sm:focus tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-sm:focus > :first-child{
    margin-top     : 0;
  }

  .sm\:focus\:prose-sm:focus > :last-child{
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-lg:focus{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .sm\:focus\:prose-lg:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .sm\:focus\:prose-lg:focus blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .sm\:focus\:prose-lg:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .sm\:focus\:prose-lg:focus h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .sm\:focus\:prose-lg:focus h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:focus\:prose-lg:focus h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .sm\:focus\:prose-lg:focus img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:focus\:prose-lg:focus video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:focus\:prose-lg:focus figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .sm\:focus\:prose-lg:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-lg:focus figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .sm\:focus\:prose-lg:focus code{
    font-size     : 0.8888889em;
  }

  .sm\:focus\:prose-lg:focus h2 code{
    font-size     : 0.8666667em;
  }

  .sm\:focus\:prose-lg:focus h3 code{
    font-size     : 0.875em;
  }

  .sm\:focus\:prose-lg:focus pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .sm\:focus\:prose-lg:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:focus\:prose-lg:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:focus\:prose-lg:focus ol > li:before{
    left     : 0;
  }

  .sm\:focus\:prose-lg:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:focus\:prose-lg:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .sm\:focus\:prose-lg:focus > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:focus\:prose-lg:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-lg:focus ul ul, .sm\:focus\:prose-lg:focus ul ol, .sm\:focus\:prose-lg:focus ol ul, .sm\:focus\:prose-lg:focus ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .sm\:focus\:prose-lg:focus hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .sm\:focus\:prose-lg:focus hr + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-lg:focus h2 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-lg:focus h3 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-lg:focus h4 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-lg:focus table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .sm\:focus\:prose-lg:focus thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:focus\:prose-lg:focus thead th:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-lg:focus thead th:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-lg:focus tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .sm\:focus\:prose-lg:focus tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-lg:focus tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-lg:focus > :first-child{
    margin-top     : 0;
  }

  .sm\:focus\:prose-lg:focus > :last-child{
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-xl:focus{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .sm\:focus\:prose-xl:focus p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .sm\:focus\:prose-xl:focus blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .sm\:focus\:prose-xl:focus h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .sm\:focus\:prose-xl:focus h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .sm\:focus\:prose-xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .sm\:focus\:prose-xl:focus h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .sm\:focus\:prose-xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-xl:focus figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .sm\:focus\:prose-xl:focus code{
    font-size     : 0.9em;
  }

  .sm\:focus\:prose-xl:focus h2 code{
    font-size     : 0.8611111em;
  }

  .sm\:focus\:prose-xl:focus h3 code{
    font-size     : 0.9em;
  }

  .sm\:focus\:prose-xl:focus pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .sm\:focus\:prose-xl:focus ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .sm\:focus\:prose-xl:focus ol > li{
    padding-left     : 1.8em;
  }

  .sm\:focus\:prose-xl:focus ol > li:before{
    left     : 0;
  }

  .sm\:focus\:prose-xl:focus ul > li{
    padding-left     : 1.8em;
  }

  .sm\:focus\:prose-xl:focus ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .sm\:focus\:prose-xl:focus > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:focus\:prose-xl:focus > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .sm\:focus\:prose-xl:focus ul ul, .sm\:focus\:prose-xl:focus ul ol, .sm\:focus\:prose-xl:focus ol ul, .sm\:focus\:prose-xl:focus ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .sm\:focus\:prose-xl:focus hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .sm\:focus\:prose-xl:focus hr + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-xl:focus h2 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-xl:focus h3 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-xl:focus h4 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-xl:focus table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .sm\:focus\:prose-xl:focus thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:focus\:prose-xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-xl:focus tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .sm\:focus\:prose-xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-xl:focus > :first-child{
    margin-top     : 0;
  }

  .sm\:focus\:prose-xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-2xl:focus{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .sm\:focus\:prose-2xl:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .sm\:focus\:prose-2xl:focus blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .sm\:focus\:prose-2xl:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .sm\:focus\:prose-2xl:focus h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .sm\:focus\:prose-2xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .sm\:focus\:prose-2xl:focus h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .sm\:focus\:prose-2xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-2xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-2xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .sm\:focus\:prose-2xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .sm\:focus\:prose-2xl:focus figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .sm\:focus\:prose-2xl:focus code{
    font-size     : 0.8333333em;
  }

  .sm\:focus\:prose-2xl:focus h2 code{
    font-size     : 0.875em;
  }

  .sm\:focus\:prose-2xl:focus h3 code{
    font-size     : 0.8888889em;
  }

  .sm\:focus\:prose-2xl:focus pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .sm\:focus\:prose-2xl:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .sm\:focus\:prose-2xl:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .sm\:focus\:prose-2xl:focus ol > li:before{
    left     : 0;
  }

  .sm\:focus\:prose-2xl:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .sm\:focus\:prose-2xl:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .sm\:focus\:prose-2xl:focus > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .sm\:focus\:prose-2xl:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .sm\:focus\:prose-2xl:focus ul ul, .sm\:focus\:prose-2xl:focus ul ol, .sm\:focus\:prose-2xl:focus ol ul, .sm\:focus\:prose-2xl:focus ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .sm\:focus\:prose-2xl:focus hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .sm\:focus\:prose-2xl:focus hr + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-2xl:focus h2 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-2xl:focus h3 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-2xl:focus h4 + *{
    margin-top     : 0;
  }

  .sm\:focus\:prose-2xl:focus table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .sm\:focus\:prose-2xl:focus thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:focus\:prose-2xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-2xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-2xl:focus tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .sm\:focus\:prose-2xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .sm\:focus\:prose-2xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .sm\:focus\:prose-2xl:focus > :first-child{
    margin-top     : 0;
  }

  .sm\:focus\:prose-2xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .sm\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:-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;
  }

  .group:hover .sm\:group-hover\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .group:hover .sm\:group-hover\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .sm\:hover\:space-y-0:hover > :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\:hover\:space-x-0:hover > :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\:hover\:space-y-1:hover > :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\:hover\:space-x-1:hover > :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\:hover\:space-y-2:hover > :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\:hover\:space-x-2:hover > :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\:hover\:space-y-3:hover > :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\:hover\:space-x-3:hover > :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\:hover\:space-y-4:hover > :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\:hover\:space-x-4:hover > :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\:hover\:space-y-5:hover > :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\:hover\:space-x-5:hover > :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\:hover\:space-y-6:hover > :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\:hover\:space-x-6:hover > :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\:hover\:space-y-7:hover > :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\:hover\:space-x-7:hover > :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\:hover\:space-y-8:hover > :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\:hover\:space-x-8:hover > :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\:hover\:space-y-9:hover > :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\:hover\:space-x-9:hover > :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\:hover\:space-y-10:hover > :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\:hover\:space-x-10:hover > :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\:hover\:space-y-11:hover > :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\:hover\:space-x-11:hover > :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\:hover\:space-y-12:hover > :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\:hover\:space-x-12:hover > :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\:hover\:space-y-13:hover > :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\:hover\:space-x-13:hover > :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\:hover\:space-y-14:hover > :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\:hover\:space-x-14:hover > :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\:hover\:space-y-15:hover > :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\:hover\:space-x-15:hover > :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\:hover\:space-y-16:hover > :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\:hover\:space-x-16:hover > :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\:hover\:space-y-20:hover > :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\:hover\:space-x-20:hover > :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\:hover\:space-y-24:hover > :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\:hover\:space-x-24:hover > :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\:hover\:space-y-28:hover > :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\:hover\:space-x-28:hover > :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\:hover\:space-y-32:hover > :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\:hover\:space-x-32:hover > :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\:hover\:space-y-36:hover > :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\:hover\:space-x-36:hover > :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\:hover\:space-y-40:hover > :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\:hover\:space-x-40:hover > :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\:hover\:space-y-44:hover > :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\:hover\:space-x-44:hover > :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\:hover\:space-y-48:hover > :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\:hover\:space-x-48:hover > :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\:hover\:space-y-52:hover > :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\:hover\:space-x-52:hover > :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\:hover\:space-y-56:hover > :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\:hover\:space-x-56:hover > :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\:hover\:space-y-60:hover > :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\:hover\:space-x-60:hover > :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\:hover\:space-y-64:hover > :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\:hover\:space-x-64:hover > :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\:hover\:space-y-72:hover > :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\:hover\:space-x-72:hover > :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\:hover\:space-y-80:hover > :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\:hover\:space-x-80:hover > :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\:hover\:space-y-96:hover > :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\:hover\:space-x-96:hover > :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\:hover\:space-y-px:hover > :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\:hover\:space-x-px:hover > :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\:hover\:space-y-0\.5:hover > :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\:hover\:space-x-0\.5:hover > :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\:hover\:space-y-1\.5:hover > :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\:hover\:space-x-1\.5:hover > :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\:hover\:space-y-2\.5:hover > :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\:hover\:space-x-2\.5:hover > :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\:hover\:space-y-3\.5:hover > :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\:hover\:space-x-3\.5:hover > :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\:hover\:space-y-1\/2:hover > :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\:hover\:space-x-1\/2:hover > :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\:hover\:space-y-1\/3:hover > :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\:hover\:space-x-1\/3:hover > :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\:hover\:space-y-2\/3:hover > :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\:hover\:space-x-2\/3:hover > :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\:hover\:space-y-1\/4:hover > :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\:hover\:space-x-1\/4:hover > :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\:hover\:space-y-2\/4:hover > :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\:hover\:space-x-2\/4:hover > :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\:hover\:space-y-3\/4:hover > :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\:hover\:space-x-3\/4:hover > :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\:hover\:space-y-1\/5:hover > :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\:hover\:space-x-1\/5:hover > :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\:hover\:space-y-2\/5:hover > :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\:hover\:space-x-2\/5:hover > :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\:hover\:space-y-3\/5:hover > :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\:hover\:space-x-3\/5:hover > :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\:hover\:space-y-4\/5:hover > :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\:hover\:space-x-4\/5:hover > :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\:hover\:space-y-1\/6:hover > :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\:hover\:space-x-1\/6:hover > :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\:hover\:space-y-2\/6:hover > :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\:hover\:space-x-2\/6:hover > :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\:hover\:space-y-3\/6:hover > :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\:hover\:space-x-3\/6:hover > :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\:hover\:space-y-4\/6:hover > :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\:hover\:space-x-4\/6:hover > :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\:hover\:space-y-5\/6:hover > :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\:hover\:space-x-5\/6:hover > :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\:hover\:space-y-1\/12:hover > :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\:hover\:space-x-1\/12:hover > :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\:hover\:space-y-2\/12:hover > :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\:hover\:space-x-2\/12:hover > :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\:hover\:space-y-3\/12:hover > :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\:hover\:space-x-3\/12:hover > :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\:hover\:space-y-4\/12:hover > :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\:hover\:space-x-4\/12:hover > :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\:hover\:space-y-5\/12:hover > :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\:hover\:space-x-5\/12:hover > :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\:hover\:space-y-6\/12:hover > :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\:hover\:space-x-6\/12:hover > :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\:hover\:space-y-7\/12:hover > :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\:hover\:space-x-7\/12:hover > :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\:hover\:space-y-8\/12:hover > :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\:hover\:space-x-8\/12:hover > :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\:hover\:space-y-9\/12:hover > :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\:hover\:space-x-9\/12:hover > :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\:hover\:space-y-10\/12:hover > :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\:hover\:space-x-10\/12:hover > :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\:hover\:space-y-11\/12:hover > :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\:hover\:space-x-11\/12:hover > :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\:hover\:space-y-full:hover > :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\:hover\:space-x-full:hover > :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\:hover\:-space-y-1:hover > :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\:hover\:-space-x-1:hover > :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\:hover\:-space-y-2:hover > :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\:hover\:-space-x-2:hover > :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\:hover\:-space-y-3:hover > :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\:hover\:-space-x-3:hover > :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\:hover\:-space-y-4:hover > :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\:hover\:-space-x-4:hover > :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\:hover\:-space-y-5:hover > :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\:hover\:-space-x-5:hover > :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\:hover\:-space-y-6:hover > :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\:hover\:-space-x-6:hover > :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\:hover\:-space-y-7:hover > :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\:hover\:-space-x-7:hover > :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\:hover\:-space-y-8:hover > :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\:hover\:-space-x-8:hover > :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\:hover\:-space-y-9:hover > :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\:hover\:-space-x-9:hover > :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\:hover\:-space-y-10:hover > :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\:hover\:-space-x-10:hover > :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\:hover\:-space-y-11:hover > :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\:hover\:-space-x-11:hover > :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\:hover\:-space-y-12:hover > :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\:hover\:-space-x-12:hover > :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\:hover\:-space-y-13:hover > :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\:hover\:-space-x-13:hover > :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\:hover\:-space-y-14:hover > :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\:hover\:-space-x-14:hover > :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\:hover\:-space-y-15:hover > :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\:hover\:-space-x-15:hover > :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\:hover\:-space-y-16:hover > :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\:hover\:-space-x-16:hover > :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\:hover\:-space-y-20:hover > :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\:hover\:-space-x-20:hover > :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\:hover\:-space-y-24:hover > :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\:hover\:-space-x-24:hover > :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\:hover\:-space-y-28:hover > :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\:hover\:-space-x-28:hover > :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\:hover\:-space-y-32:hover > :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\:hover\:-space-x-32:hover > :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\:hover\:-space-y-36:hover > :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\:hover\:-space-x-36:hover > :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\:hover\:-space-y-40:hover > :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\:hover\:-space-x-40:hover > :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\:hover\:-space-y-44:hover > :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\:hover\:-space-x-44:hover > :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\:hover\:-space-y-48:hover > :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\:hover\:-space-x-48:hover > :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\:hover\:-space-y-52:hover > :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\:hover\:-space-x-52:hover > :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\:hover\:-space-y-56:hover > :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\:hover\:-space-x-56:hover > :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\:hover\:-space-y-60:hover > :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\:hover\:-space-x-60:hover > :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\:hover\:-space-y-64:hover > :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\:hover\:-space-x-64:hover > :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\:hover\:-space-y-72:hover > :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\:hover\:-space-x-72:hover > :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\:hover\:-space-y-80:hover > :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\:hover\:-space-x-80:hover > :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\:hover\:-space-y-96:hover > :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\:hover\:-space-x-96:hover > :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\:hover\:-space-y-px:hover > :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\:hover\:-space-x-px:hover > :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\:hover\:-space-y-0\.5:hover > :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\:hover\:-space-x-0\.5:hover > :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\:hover\:-space-y-1\.5:hover > :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\:hover\:-space-x-1\.5:hover > :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\:hover\:-space-y-2\.5:hover > :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\:hover\:-space-x-2\.5:hover > :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\:hover\:-space-y-3\.5:hover > :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\:hover\:-space-x-3\.5:hover > :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\:hover\:-space-y-1\/2:hover > :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\:hover\:-space-x-1\/2:hover > :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\:hover\:-space-y-1\/3:hover > :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\:hover\:-space-x-1\/3:hover > :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\:hover\:-space-y-2\/3:hover > :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\:hover\:-space-x-2\/3:hover > :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\:hover\:-space-y-1\/4:hover > :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\:hover\:-space-x-1\/4:hover > :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\:hover\:-space-y-2\/4:hover > :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\:hover\:-space-x-2\/4:hover > :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\:hover\:-space-y-3\/4:hover > :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\:hover\:-space-x-3\/4:hover > :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\:hover\:-space-y-1\/5:hover > :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\:hover\:-space-x-1\/5:hover > :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\:hover\:-space-y-2\/5:hover > :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\:hover\:-space-x-2\/5:hover > :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\:hover\:-space-y-3\/5:hover > :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\:hover\:-space-x-3\/5:hover > :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\:hover\:-space-y-4\/5:hover > :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\:hover\:-space-x-4\/5:hover > :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\:hover\:-space-y-1\/6:hover > :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\:hover\:-space-x-1\/6:hover > :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\:hover\:-space-y-2\/6:hover > :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\:hover\:-space-x-2\/6:hover > :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\:hover\:-space-y-3\/6:hover > :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\:hover\:-space-x-3\/6:hover > :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\:hover\:-space-y-4\/6:hover > :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\:hover\:-space-x-4\/6:hover > :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\:hover\:-space-y-5\/6:hover > :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\:hover\:-space-x-5\/6:hover > :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\:hover\:-space-y-1\/12:hover > :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\:hover\:-space-x-1\/12:hover > :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\:hover\:-space-y-2\/12:hover > :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\:hover\:-space-x-2\/12:hover > :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\:hover\:-space-y-3\/12:hover > :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\:hover\:-space-x-3\/12:hover > :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\:hover\:-space-y-4\/12:hover > :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\:hover\:-space-x-4\/12:hover > :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\:hover\:-space-y-5\/12:hover > :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\:hover\:-space-x-5\/12:hover > :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\:hover\:-space-y-6\/12:hover > :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\:hover\:-space-x-6\/12:hover > :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\:hover\:-space-y-7\/12:hover > :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\:hover\:-space-x-7\/12:hover > :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\:hover\:-space-y-8\/12:hover > :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\:hover\:-space-x-8\/12:hover > :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\:hover\:-space-y-9\/12:hover > :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\:hover\:-space-x-9\/12:hover > :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\:hover\:-space-y-10\/12:hover > :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\:hover\:-space-x-10\/12:hover > :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\:hover\:-space-y-11\/12:hover > :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\:hover\:-space-x-11\/12:hover > :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\:hover\:-space-y-full:hover > :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\:hover\:-space-x-full:hover > :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\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .sm\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .sm\:focus\:space-y-0:focus > :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\:focus\:space-x-0:focus > :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\:focus\:space-y-1:focus > :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\:focus\:space-x-1:focus > :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\:focus\:space-y-2:focus > :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\:focus\:space-x-2:focus > :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\:focus\:space-y-3:focus > :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\:focus\:space-x-3:focus > :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\:focus\:space-y-4:focus > :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\:focus\:space-x-4:focus > :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\:focus\:space-y-5:focus > :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\:focus\:space-x-5:focus > :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\:focus\:space-y-6:focus > :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\:focus\:space-x-6:focus > :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\:focus\:space-y-7:focus > :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\:focus\:space-x-7:focus > :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\:focus\:space-y-8:focus > :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\:focus\:space-x-8:focus > :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\:focus\:space-y-9:focus > :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\:focus\:space-x-9:focus > :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\:focus\:space-y-10:focus > :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\:focus\:space-x-10:focus > :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\:focus\:space-y-11:focus > :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\:focus\:space-x-11:focus > :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\:focus\:space-y-12:focus > :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\:focus\:space-x-12:focus > :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\:focus\:space-y-13:focus > :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\:focus\:space-x-13:focus > :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\:focus\:space-y-14:focus > :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\:focus\:space-x-14:focus > :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\:focus\:space-y-15:focus > :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\:focus\:space-x-15:focus > :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\:focus\:space-y-16:focus > :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\:focus\:space-x-16:focus > :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\:focus\:space-y-20:focus > :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\:focus\:space-x-20:focus > :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\:focus\:space-y-24:focus > :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\:focus\:space-x-24:focus > :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\:focus\:space-y-28:focus > :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\:focus\:space-x-28:focus > :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\:focus\:space-y-32:focus > :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\:focus\:space-x-32:focus > :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\:focus\:space-y-36:focus > :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\:focus\:space-x-36:focus > :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\:focus\:space-y-40:focus > :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\:focus\:space-x-40:focus > :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\:focus\:space-y-44:focus > :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\:focus\:space-x-44:focus > :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\:focus\:space-y-48:focus > :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\:focus\:space-x-48:focus > :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\:focus\:space-y-52:focus > :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\:focus\:space-x-52:focus > :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\:focus\:space-y-56:focus > :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\:focus\:space-x-56:focus > :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\:focus\:space-y-60:focus > :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\:focus\:space-x-60:focus > :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\:focus\:space-y-64:focus > :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\:focus\:space-x-64:focus > :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\:focus\:space-y-72:focus > :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\:focus\:space-x-72:focus > :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\:focus\:space-y-80:focus > :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\:focus\:space-x-80:focus > :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\:focus\:space-y-96:focus > :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\:focus\:space-x-96:focus > :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\:focus\:space-y-px:focus > :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\:focus\:space-x-px:focus > :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\:focus\:space-y-0\.5:focus > :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\:focus\:space-x-0\.5:focus > :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\:focus\:space-y-1\.5:focus > :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\:focus\:space-x-1\.5:focus > :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\:focus\:space-y-2\.5:focus > :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\:focus\:space-x-2\.5:focus > :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\:focus\:space-y-3\.5:focus > :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\:focus\:space-x-3\.5:focus > :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\:focus\:space-y-1\/2:focus > :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\:focus\:space-x-1\/2:focus > :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\:focus\:space-y-1\/3:focus > :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\:focus\:space-x-1\/3:focus > :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\:focus\:space-y-2\/3:focus > :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\:focus\:space-x-2\/3:focus > :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\:focus\:space-y-1\/4:focus > :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\:focus\:space-x-1\/4:focus > :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\:focus\:space-y-2\/4:focus > :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\:focus\:space-x-2\/4:focus > :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\:focus\:space-y-3\/4:focus > :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\:focus\:space-x-3\/4:focus > :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\:focus\:space-y-1\/5:focus > :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\:focus\:space-x-1\/5:focus > :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\:focus\:space-y-2\/5:focus > :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\:focus\:space-x-2\/5:focus > :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\:focus\:space-y-3\/5:focus > :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\:focus\:space-x-3\/5:focus > :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\:focus\:space-y-4\/5:focus > :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\:focus\:space-x-4\/5:focus > :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\:focus\:space-y-1\/6:focus > :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\:focus\:space-x-1\/6:focus > :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\:focus\:space-y-2\/6:focus > :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\:focus\:space-x-2\/6:focus > :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\:focus\:space-y-3\/6:focus > :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\:focus\:space-x-3\/6:focus > :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\:focus\:space-y-4\/6:focus > :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\:focus\:space-x-4\/6:focus > :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\:focus\:space-y-5\/6:focus > :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\:focus\:space-x-5\/6:focus > :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\:focus\:space-y-1\/12:focus > :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\:focus\:space-x-1\/12:focus > :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\:focus\:space-y-2\/12:focus > :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\:focus\:space-x-2\/12:focus > :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\:focus\:space-y-3\/12:focus > :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\:focus\:space-x-3\/12:focus > :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\:focus\:space-y-4\/12:focus > :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\:focus\:space-x-4\/12:focus > :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\:focus\:space-y-5\/12:focus > :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\:focus\:space-x-5\/12:focus > :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\:focus\:space-y-6\/12:focus > :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\:focus\:space-x-6\/12:focus > :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\:focus\:space-y-7\/12:focus > :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\:focus\:space-x-7\/12:focus > :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\:focus\:space-y-8\/12:focus > :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\:focus\:space-x-8\/12:focus > :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\:focus\:space-y-9\/12:focus > :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\:focus\:space-x-9\/12:focus > :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\:focus\:space-y-10\/12:focus > :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\:focus\:space-x-10\/12:focus > :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\:focus\:space-y-11\/12:focus > :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\:focus\:space-x-11\/12:focus > :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\:focus\:space-y-full:focus > :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\:focus\:space-x-full:focus > :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\:focus\:-space-y-1:focus > :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\:focus\:-space-x-1:focus > :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\:focus\:-space-y-2:focus > :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\:focus\:-space-x-2:focus > :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\:focus\:-space-y-3:focus > :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\:focus\:-space-x-3:focus > :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\:focus\:-space-y-4:focus > :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\:focus\:-space-x-4:focus > :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\:focus\:-space-y-5:focus > :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\:focus\:-space-x-5:focus > :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\:focus\:-space-y-6:focus > :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\:focus\:-space-x-6:focus > :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\:focus\:-space-y-7:focus > :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\:focus\:-space-x-7:focus > :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\:focus\:-space-y-8:focus > :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\:focus\:-space-x-8:focus > :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\:focus\:-space-y-9:focus > :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\:focus\:-space-x-9:focus > :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\:focus\:-space-y-10:focus > :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\:focus\:-space-x-10:focus > :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\:focus\:-space-y-11:focus > :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\:focus\:-space-x-11:focus > :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\:focus\:-space-y-12:focus > :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\:focus\:-space-x-12:focus > :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\:focus\:-space-y-13:focus > :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\:focus\:-space-x-13:focus > :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\:focus\:-space-y-14:focus > :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\:focus\:-space-x-14:focus > :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\:focus\:-space-y-15:focus > :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\:focus\:-space-x-15:focus > :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\:focus\:-space-y-16:focus > :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\:focus\:-space-x-16:focus > :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\:focus\:-space-y-20:focus > :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\:focus\:-space-x-20:focus > :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\:focus\:-space-y-24:focus > :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\:focus\:-space-x-24:focus > :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\:focus\:-space-y-28:focus > :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\:focus\:-space-x-28:focus > :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\:focus\:-space-y-32:focus > :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\:focus\:-space-x-32:focus > :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\:focus\:-space-y-36:focus > :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\:focus\:-space-x-36:focus > :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\:focus\:-space-y-40:focus > :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\:focus\:-space-x-40:focus > :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\:focus\:-space-y-44:focus > :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\:focus\:-space-x-44:focus > :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\:focus\:-space-y-48:focus > :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\:focus\:-space-x-48:focus > :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\:focus\:-space-y-52:focus > :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\:focus\:-space-x-52:focus > :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\:focus\:-space-y-56:focus > :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\:focus\:-space-x-56:focus > :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\:focus\:-space-y-60:focus > :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\:focus\:-space-x-60:focus > :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\:focus\:-space-y-64:focus > :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\:focus\:-space-x-64:focus > :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\:focus\:-space-y-72:focus > :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\:focus\:-space-x-72:focus > :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\:focus\:-space-y-80:focus > :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\:focus\:-space-x-80:focus > :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\:focus\:-space-y-96:focus > :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\:focus\:-space-x-96:focus > :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\:focus\:-space-y-px:focus > :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\:focus\:-space-x-px:focus > :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\:focus\:-space-y-0\.5:focus > :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\:focus\:-space-x-0\.5:focus > :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\:focus\:-space-y-1\.5:focus > :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\:focus\:-space-x-1\.5:focus > :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\:focus\:-space-y-2\.5:focus > :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\:focus\:-space-x-2\.5:focus > :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\:focus\:-space-y-3\.5:focus > :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\:focus\:-space-x-3\.5:focus > :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\:focus\:-space-y-1\/2:focus > :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\:focus\:-space-x-1\/2:focus > :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\:focus\:-space-y-1\/3:focus > :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\:focus\:-space-x-1\/3:focus > :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\:focus\:-space-y-2\/3:focus > :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\:focus\:-space-x-2\/3:focus > :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\:focus\:-space-y-1\/4:focus > :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\:focus\:-space-x-1\/4:focus > :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\:focus\:-space-y-2\/4:focus > :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\:focus\:-space-x-2\/4:focus > :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\:focus\:-space-y-3\/4:focus > :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\:focus\:-space-x-3\/4:focus > :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\:focus\:-space-y-1\/5:focus > :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\:focus\:-space-x-1\/5:focus > :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\:focus\:-space-y-2\/5:focus > :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\:focus\:-space-x-2\/5:focus > :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\:focus\:-space-y-3\/5:focus > :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\:focus\:-space-x-3\/5:focus > :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\:focus\:-space-y-4\/5:focus > :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\:focus\:-space-x-4\/5:focus > :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\:focus\:-space-y-1\/6:focus > :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\:focus\:-space-x-1\/6:focus > :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\:focus\:-space-y-2\/6:focus > :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\:focus\:-space-x-2\/6:focus > :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\:focus\:-space-y-3\/6:focus > :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\:focus\:-space-x-3\/6:focus > :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\:focus\:-space-y-4\/6:focus > :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\:focus\:-space-x-4\/6:focus > :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\:focus\:-space-y-5\/6:focus > :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\:focus\:-space-x-5\/6:focus > :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\:focus\:-space-y-1\/12:focus > :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\:focus\:-space-x-1\/12:focus > :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\:focus\:-space-y-2\/12:focus > :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\:focus\:-space-x-2\/12:focus > :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\:focus\:-space-y-3\/12:focus > :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\:focus\:-space-x-3\/12:focus > :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\:focus\:-space-y-4\/12:focus > :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\:focus\:-space-x-4\/12:focus > :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\:focus\:-space-y-5\/12:focus > :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\:focus\:-space-x-5\/12:focus > :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\:focus\:-space-y-6\/12:focus > :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\:focus\:-space-x-6\/12:focus > :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\:focus\:-space-y-7\/12:focus > :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\:focus\:-space-x-7\/12:focus > :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\:focus\:-space-y-8\/12:focus > :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\:focus\:-space-x-8\/12:focus > :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\:focus\:-space-y-9\/12:focus > :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\:focus\:-space-x-9\/12:focus > :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\:focus\:-space-y-10\/12:focus > :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\:focus\:-space-x-10\/12:focus > :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\:focus\:-space-y-11\/12:focus > :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\:focus\:-space-x-11\/12:focus > :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\:focus\:-space-y-full:focus > :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\:focus\:-space-x-full:focus > :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\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .sm\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .sm\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .group:hover .sm\:group-hover\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .sm\:hover\:divide-y-0:hover > :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;
  }

  .sm\:hover\:divide-x-0:hover > :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;
  }

  .sm\:hover\:divide-y-2:hover > :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;
  }

  .sm\:hover\:divide-x-2:hover > :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;
  }

  .sm\:hover\:divide-y-4:hover > :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;
  }

  .sm\:hover\:divide-x-4:hover > :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;
  }

  .sm\:hover\:divide-y-8:hover > :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;
  }

  .sm\:hover\:divide-x-8:hover > :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;
  }

  .sm\:hover\:divide-y:hover > :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;
  }

  .sm\:hover\:divide-x:hover > :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;
  }

  .sm\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .sm\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .sm\:focus\:divide-y-0:focus > :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;
  }

  .sm\:focus\:divide-x-0:focus > :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;
  }

  .sm\:focus\:divide-y-2:focus > :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;
  }

  .sm\:focus\:divide-x-2:focus > :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;
  }

  .sm\:focus\:divide-y-4:focus > :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;
  }

  .sm\:focus\:divide-x-4:focus > :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;
  }

  .sm\:focus\:divide-y-8:focus > :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;
  }

  .sm\:focus\:divide-x-8:focus > :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;
  }

  .sm\:focus\:divide-y:focus > :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;
  }

  .sm\:focus\:divide-x:focus > :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;
  }

  .sm\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .sm\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .sm\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .sm\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .sm\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .sm\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-cool-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-red-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-orange-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-yellow-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-green-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-teal-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-indigo-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-purple-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-pink-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .sm\:hover\:divide-blue-brand:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .sm\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-cool-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-red-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-orange-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-yellow-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-green-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-teal-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-indigo-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-purple-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-pink-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .sm\:focus\:divide-blue-brand:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .sm\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .sm\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .sm\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .sm\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .sm\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .sm\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .sm\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .sm\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .sm\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .sm\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .sm\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .sm\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .sm\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .sm\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .sm\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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\:hover\:sr-only:hover{
    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\:hover\:not-sr-only:hover{
    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\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .group:hover .sm\:group-hover\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .sm\:hover\:appearance-none:hover{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .sm\:focus\:appearance-none:focus{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .sm\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .sm\:bg-local{
    background-attachment     : local !important;
  }

  .sm\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .group:hover .sm\:group-hover\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .group:hover .sm\:group-hover\:bg-local{
    background-attachment     : local !important;
  }

  .group:hover .sm\:group-hover\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .sm\:hover\:bg-fixed:hover{
    background-attachment     : fixed !important;
  }

  .sm\:hover\:bg-local:hover{
    background-attachment     : local !important;
  }

  .sm\:hover\:bg-scroll:hover{
    background-attachment     : scroll !important;
  }

  .sm\:focus\:bg-fixed:focus{
    background-attachment     : fixed !important;
  }

  .sm\:focus\:bg-local:focus{
    background-attachment     : local !important;
  }

  .sm\:focus\:bg-scroll:focus{
    background-attachment     : scroll !important;
  }

  .sm\:bg-transparent{
    background-color     : transparent !important;
  }

  .sm\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .sm\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .sm\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .sm\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .sm\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .sm\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .sm\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .sm\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .sm\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .sm\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .sm\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .sm\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-transparent{
    background-color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-transparent:hover{
    background-color     : transparent !important;
  }

  .sm\:hover\:bg-white:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-black:hover{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-cool-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-red-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-orange-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-yellow-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-green-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-teal-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-indigo-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-purple-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-pink-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .sm\:hover\:bg-blue-brand:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-transparent:focus{
    background-color     : transparent !important;
  }

  .sm\:focus\:bg-white:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-black:focus{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-cool-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-red-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-orange-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-yellow-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-green-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-teal-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-indigo-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-purple-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-pink-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .sm\:focus\:bg-blue-brand:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .sm\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .sm\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .sm\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .sm\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .sm\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .sm\:hover\:bg-opacity-0:hover{
    --bg-opacity     : 0 !important;
  }

  .sm\:hover\:bg-opacity-25:hover{
    --bg-opacity     : 0.25 !important;
  }

  .sm\:hover\:bg-opacity-50:hover{
    --bg-opacity     : 0.5 !important;
  }

  .sm\:hover\:bg-opacity-75:hover{
    --bg-opacity     : 0.75 !important;
  }

  .sm\:hover\:bg-opacity-100:hover{
    --bg-opacity     : 1 !important;
  }

  .sm\:focus\:bg-opacity-0:focus{
    --bg-opacity     : 0 !important;
  }

  .sm\:focus\:bg-opacity-25:focus{
    --bg-opacity     : 0.25 !important;
  }

  .sm\:focus\:bg-opacity-50:focus{
    --bg-opacity     : 0.5 !important;
  }

  .sm\:focus\:bg-opacity-75:focus{
    --bg-opacity     : 0.75 !important;
  }

  .sm\:focus\:bg-opacity-100:focus{
    --bg-opacity     : 1 !important;
  }

  .sm\:bg-bottom{
    background-position     : bottom !important;
  }

  .sm\:bg-center{
    background-position     : center !important;
  }

  .sm\:bg-left{
    background-position     : left !important;
  }

  .sm\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .sm\:bg-left-top{
    background-position     : left top !important;
  }

  .sm\:bg-right{
    background-position     : right !important;
  }

  .sm\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .sm\:bg-right-top{
    background-position     : right top !important;
  }

  .sm\:bg-top{
    background-position     : top !important;
  }

  .group:hover .sm\:group-hover\:bg-bottom{
    background-position     : bottom !important;
  }

  .group:hover .sm\:group-hover\:bg-center{
    background-position     : center !important;
  }

  .group:hover .sm\:group-hover\:bg-left{
    background-position     : left !important;
  }

  .group:hover .sm\:group-hover\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .group:hover .sm\:group-hover\:bg-left-top{
    background-position     : left top !important;
  }

  .group:hover .sm\:group-hover\:bg-right{
    background-position     : right !important;
  }

  .group:hover .sm\:group-hover\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .group:hover .sm\:group-hover\:bg-right-top{
    background-position     : right top !important;
  }

  .group:hover .sm\:group-hover\:bg-top{
    background-position     : top !important;
  }

  .sm\:hover\:bg-bottom:hover{
    background-position     : bottom !important;
  }

  .sm\:hover\:bg-center:hover{
    background-position     : center !important;
  }

  .sm\:hover\:bg-left:hover{
    background-position     : left !important;
  }

  .sm\:hover\:bg-left-bottom:hover{
    background-position     : left bottom !important;
  }

  .sm\:hover\:bg-left-top:hover{
    background-position     : left top !important;
  }

  .sm\:hover\:bg-right:hover{
    background-position     : right !important;
  }

  .sm\:hover\:bg-right-bottom:hover{
    background-position     : right bottom !important;
  }

  .sm\:hover\:bg-right-top:hover{
    background-position     : right top !important;
  }

  .sm\:hover\:bg-top:hover{
    background-position     : top !important;
  }

  .sm\:focus\:bg-bottom:focus{
    background-position     : bottom !important;
  }

  .sm\:focus\:bg-center:focus{
    background-position     : center !important;
  }

  .sm\:focus\:bg-left:focus{
    background-position     : left !important;
  }

  .sm\:focus\:bg-left-bottom:focus{
    background-position     : left bottom !important;
  }

  .sm\:focus\:bg-left-top:focus{
    background-position     : left top !important;
  }

  .sm\:focus\:bg-right:focus{
    background-position     : right !important;
  }

  .sm\:focus\:bg-right-bottom:focus{
    background-position     : right bottom !important;
  }

  .sm\:focus\:bg-right-top:focus{
    background-position     : right top !important;
  }

  .sm\:focus\:bg-top:focus{
    background-position     : top !important;
  }

  .sm\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .sm\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .sm\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .sm\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .sm\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .sm\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .group:hover .sm\:group-hover\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .group:hover .sm\:group-hover\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .group:hover .sm\:group-hover\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .group:hover .sm\:group-hover\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .group:hover .sm\:group-hover\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .group:hover .sm\:group-hover\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .sm\:hover\:bg-repeat:hover{
    background-repeat     : repeat !important;
  }

  .sm\:hover\:bg-no-repeat:hover{
    background-repeat     : no-repeat !important;
  }

  .sm\:hover\:bg-repeat-x:hover{
    background-repeat     : repeat-x !important;
  }

  .sm\:hover\:bg-repeat-y:hover{
    background-repeat     : repeat-y !important;
  }

  .sm\:hover\:bg-repeat-round:hover{
    background-repeat     : round !important;
  }

  .sm\:hover\:bg-repeat-space:hover{
    background-repeat     : space !important;
  }

  .sm\:focus\:bg-repeat:focus{
    background-repeat     : repeat !important;
  }

  .sm\:focus\:bg-no-repeat:focus{
    background-repeat     : no-repeat !important;
  }

  .sm\:focus\:bg-repeat-x:focus{
    background-repeat     : repeat-x !important;
  }

  .sm\:focus\:bg-repeat-y:focus{
    background-repeat     : repeat-y !important;
  }

  .sm\:focus\:bg-repeat-round:focus{
    background-repeat     : round !important;
  }

  .sm\:focus\:bg-repeat-space:focus{
    background-repeat     : space !important;
  }

  .sm\:bg-auto{
    background-size     : auto !important;
  }

  .sm\:bg-cover{
    background-size     : cover !important;
  }

  .sm\:bg-contain{
    background-size     : contain !important;
  }

  .group:hover .sm\:group-hover\:bg-auto{
    background-size     : auto !important;
  }

  .group:hover .sm\:group-hover\:bg-cover{
    background-size     : cover !important;
  }

  .group:hover .sm\:group-hover\:bg-contain{
    background-size     : contain !important;
  }

  .sm\:hover\:bg-auto:hover{
    background-size     : auto !important;
  }

  .sm\:hover\:bg-cover:hover{
    background-size     : cover !important;
  }

  .sm\:hover\:bg-contain:hover{
    background-size     : contain !important;
  }

  .sm\:focus\:bg-auto:focus{
    background-size     : auto !important;
  }

  .sm\:focus\:bg-cover:focus{
    background-size     : cover !important;
  }

  .sm\:focus\:bg-contain:focus{
    background-size     : contain !important;
  }

  .sm\:border-collapse{
    border-collapse     : collapse !important;
  }

  .sm\:border-separate{
    border-collapse     : separate !important;
  }

  .group:hover .sm\:group-hover\:border-collapse{
    border-collapse     : collapse !important;
  }

  .group:hover .sm\:group-hover\:border-separate{
    border-collapse     : separate !important;
  }

  .sm\:hover\:border-collapse:hover{
    border-collapse     : collapse !important;
  }

  .sm\:hover\:border-separate:hover{
    border-collapse     : separate !important;
  }

  .sm\:focus\:border-collapse:focus{
    border-collapse     : collapse !important;
  }

  .sm\:focus\:border-separate:focus{
    border-collapse     : separate !important;
  }

  .sm\:border-transparent{
    border-color     : transparent !important;
  }

  .sm\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .sm\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .sm\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .sm\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .sm\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .sm\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .sm\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .sm\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .sm\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .sm\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .sm\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .sm\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .sm\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .sm\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .sm\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .sm\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .sm\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .sm\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .sm\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .sm\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .sm\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .sm\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .sm\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .sm\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .sm\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .sm\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .sm\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .sm\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .sm\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .sm\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .sm\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .sm\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .sm\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .sm\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .sm\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .sm\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .sm\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .sm\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .sm\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .sm\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .sm\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .sm\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .sm\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .sm\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .sm\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .sm\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .sm\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .sm\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .sm\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .sm\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .sm\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .sm\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .sm\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .sm\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .sm\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .sm\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .sm\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .sm\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .sm\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .sm\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .sm\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .sm\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .sm\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .sm\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .sm\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .sm\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .sm\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .sm\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .sm\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .sm\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .sm\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .sm\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .sm\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .sm\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .sm\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .sm\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .sm\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .sm\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .sm\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .sm\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-transparent{
    border-color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-transparent:hover{
    border-color     : transparent !important;
  }

  .sm\:hover\:border-white:hover{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-black:hover{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-cool-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-red-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-orange-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-yellow-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-green-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-teal-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-indigo-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-purple-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-pink-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .sm\:hover\:border-blue-brand:hover{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-transparent:focus{
    border-color     : transparent !important;
  }

  .sm\:focus\:border-white:focus{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-black:focus{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-cool-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-red-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-orange-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-yellow-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-green-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-teal-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-indigo-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-purple-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-pink-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .sm\:focus\:border-blue-brand:focus{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .sm\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .sm\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .sm\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .sm\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .sm\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .sm\:hover\:border-opacity-0:hover{
    --border-opacity     : 0 !important;
  }

  .sm\:hover\:border-opacity-25:hover{
    --border-opacity     : 0.25 !important;
  }

  .sm\:hover\:border-opacity-50:hover{
    --border-opacity     : 0.5 !important;
  }

  .sm\:hover\:border-opacity-75:hover{
    --border-opacity     : 0.75 !important;
  }

  .sm\:hover\:border-opacity-100:hover{
    --border-opacity     : 1 !important;
  }

  .sm\:focus\:border-opacity-0:focus{
    --border-opacity     : 0 !important;
  }

  .sm\:focus\:border-opacity-25:focus{
    --border-opacity     : 0.25 !important;
  }

  .sm\:focus\:border-opacity-50:focus{
    --border-opacity     : 0.5 !important;
  }

  .sm\:focus\:border-opacity-75:focus{
    --border-opacity     : 0.75 !important;
  }

  .sm\:focus\:border-opacity-100:focus{
    --border-opacity     : 1 !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;
  }

  .group:hover .sm\:group-hover\:rounded-none{
    border-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-sm{
    border-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded{
    border-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-md{
    border-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-lg{
    border-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-full{
    border-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-t-none{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-r-none{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-b-none{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-l-none{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-t-sm{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-r-sm{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-b-sm{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-l-sm{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-t{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-r{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-b{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-l{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-t-md{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-r-md{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-b-md{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-l-md{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-t-lg{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-r-lg{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-b-lg{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-l-lg{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-t-full{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-r-full{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-b-full{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-l-full{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl-none{
    border-top-left-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr-none{
    border-top-right-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-br-none{
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl-none{
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl-sm{
    border-top-left-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr-sm{
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-br-sm{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl-sm{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl{
    border-top-left-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr{
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-br{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl-md{
    border-top-left-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr-md{
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-br-md{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl-md{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl-lg{
    border-top-left-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr-lg{
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-br-lg{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl-lg{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:rounded-tl-full{
    border-top-left-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-tr-full{
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-br-full{
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .sm\:group-hover\:rounded-bl-full{
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-none:hover{
    border-radius     : 0 !important;
  }

  .sm\:hover\:rounded-sm:hover{
    border-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded:hover{
    border-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-md:hover{
    border-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-lg:hover{
    border-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-full:hover{
    border-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-t-none:hover{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .sm\:hover\:rounded-r-none:hover{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .sm\:hover\:rounded-b-none:hover{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:hover\:rounded-l-none:hover{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:hover\:rounded-t-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-r-sm:hover{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-l-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-t:hover{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-r:hover{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-b:hover{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-l:hover{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-t-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-r-md:hover{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-b-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-l-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-t-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-r-lg:hover{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-l-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-t-full:hover{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-r-full:hover{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-b-full:hover{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-l-full:hover{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-tl-none:hover{
    border-top-left-radius     : 0 !important;
  }

  .sm\:hover\:rounded-tr-none:hover{
    border-top-right-radius     : 0 !important;
  }

  .sm\:hover\:rounded-br-none:hover{
    border-bottom-right-radius     : 0 !important;
  }

  .sm\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:hover\:rounded-tl-sm:hover{
    border-top-left-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-tr-sm:hover{
    border-top-right-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:hover\:rounded-tl:hover{
    border-top-left-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-tr:hover{
    border-top-right-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-br:hover{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-bl:hover{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:hover\:rounded-tl-md:hover{
    border-top-left-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-tr-md:hover{
    border-top-right-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-br-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:hover\:rounded-tl-lg:hover{
    border-top-left-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-tr-lg:hover{
    border-top-right-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:hover\:rounded-tl-full:hover{
    border-top-left-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-tr-full:hover{
    border-top-right-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-br-full:hover{
    border-bottom-right-radius     : 9999px !important;
  }

  .sm\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-none:focus{
    border-radius     : 0 !important;
  }

  .sm\:focus\:rounded-sm:focus{
    border-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded:focus{
    border-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-md:focus{
    border-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-lg:focus{
    border-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-full:focus{
    border-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-t-none:focus{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .sm\:focus\:rounded-r-none:focus{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .sm\:focus\:rounded-b-none:focus{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:focus\:rounded-l-none:focus{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:focus\:rounded-t-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-r-sm:focus{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-l-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-t:focus{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-r:focus{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-b:focus{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-l:focus{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-t-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-r-md:focus{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-b-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-l-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-t-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-r-lg:focus{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-l-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-t-full:focus{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-r-full:focus{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-b-full:focus{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-l-full:focus{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-tl-none:focus{
    border-top-left-radius     : 0 !important;
  }

  .sm\:focus\:rounded-tr-none:focus{
    border-top-right-radius     : 0 !important;
  }

  .sm\:focus\:rounded-br-none:focus{
    border-bottom-right-radius     : 0 !important;
  }

  .sm\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius     : 0 !important;
  }

  .sm\:focus\:rounded-tl-sm:focus{
    border-top-left-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-tr-sm:focus{
    border-top-right-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .sm\:focus\:rounded-tl:focus{
    border-top-left-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-tr:focus{
    border-top-right-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-br:focus{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-bl:focus{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .sm\:focus\:rounded-tl-md:focus{
    border-top-left-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-tr-md:focus{
    border-top-right-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-br-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .sm\:focus\:rounded-tl-lg:focus{
    border-top-left-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-tr-lg:focus{
    border-top-right-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .sm\:focus\:rounded-tl-full:focus{
    border-top-left-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-tr-full:focus{
    border-top-right-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-br-full:focus{
    border-bottom-right-radius     : 9999px !important;
  }

  .sm\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius     : 9999px !important;
  }

  .sm\:border-solid{
    border-style     : solid !important;
  }

  .sm\:border-dashed{
    border-style     : dashed !important;
  }

  .sm\:border-dotted{
    border-style     : dotted !important;
  }

  .sm\:border-double{
    border-style     : double !important;
  }

  .sm\:border-none{
    border-style     : none !important;
  }

  .group:hover .sm\:group-hover\:border-solid{
    border-style     : solid !important;
  }

  .group:hover .sm\:group-hover\:border-dashed{
    border-style     : dashed !important;
  }

  .group:hover .sm\:group-hover\:border-dotted{
    border-style     : dotted !important;
  }

  .group:hover .sm\:group-hover\:border-double{
    border-style     : double !important;
  }

  .group:hover .sm\:group-hover\:border-none{
    border-style     : none !important;
  }

  .sm\:hover\:border-solid:hover{
    border-style     : solid !important;
  }

  .sm\:hover\:border-dashed:hover{
    border-style     : dashed !important;
  }

  .sm\:hover\:border-dotted:hover{
    border-style     : dotted !important;
  }

  .sm\:hover\:border-double:hover{
    border-style     : double !important;
  }

  .sm\:hover\:border-none:hover{
    border-style     : none !important;
  }

  .sm\:focus\:border-solid:focus{
    border-style     : solid !important;
  }

  .sm\:focus\:border-dashed:focus{
    border-style     : dashed !important;
  }

  .sm\:focus\:border-dotted:focus{
    border-style     : dotted !important;
  }

  .sm\:focus\:border-double:focus{
    border-style     : double !important;
  }

  .sm\:focus\:border-none:focus{
    border-style     : none !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;
  }

  .group:hover .sm\:group-hover\:border-0{
    border-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-2{
    border-width     : 2px !important;
  }

  .group:hover .sm\:group-hover\:border-4{
    border-width     : 4px !important;
  }

  .group:hover .sm\:group-hover\:border-8{
    border-width     : 8px !important;
  }

  .group:hover .sm\:group-hover\:border{
    border-width     : 1px !important;
  }

  .group:hover .sm\:group-hover\:border-t-0{
    border-top-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-r-0{
    border-right-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-b-0{
    border-bottom-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-l-0{
    border-left-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:border-t-2{
    border-top-width     : 2px !important;
  }

  .group:hover .sm\:group-hover\:border-r-2{
    border-right-width     : 2px !important;
  }

  .group:hover .sm\:group-hover\:border-b-2{
    border-bottom-width     : 2px !important;
  }

  .group:hover .sm\:group-hover\:border-l-2{
    border-left-width     : 2px !important;
  }

  .group:hover .sm\:group-hover\:border-t-4{
    border-top-width     : 4px !important;
  }

  .group:hover .sm\:group-hover\:border-r-4{
    border-right-width     : 4px !important;
  }

  .group:hover .sm\:group-hover\:border-b-4{
    border-bottom-width     : 4px !important;
  }

  .group:hover .sm\:group-hover\:border-l-4{
    border-left-width     : 4px !important;
  }

  .group:hover .sm\:group-hover\:border-t-8{
    border-top-width     : 8px !important;
  }

  .group:hover .sm\:group-hover\:border-r-8{
    border-right-width     : 8px !important;
  }

  .group:hover .sm\:group-hover\:border-b-8{
    border-bottom-width     : 8px !important;
  }

  .group:hover .sm\:group-hover\:border-l-8{
    border-left-width     : 8px !important;
  }

  .group:hover .sm\:group-hover\:border-t{
    border-top-width     : 1px !important;
  }

  .group:hover .sm\:group-hover\:border-r{
    border-right-width     : 1px !important;
  }

  .group:hover .sm\:group-hover\:border-b{
    border-bottom-width     : 1px !important;
  }

  .group:hover .sm\:group-hover\:border-l{
    border-left-width     : 1px !important;
  }

  .sm\:hover\:border-0:hover{
    border-width     : 0 !important;
  }

  .sm\:hover\:border-2:hover{
    border-width     : 2px !important;
  }

  .sm\:hover\:border-4:hover{
    border-width     : 4px !important;
  }

  .sm\:hover\:border-8:hover{
    border-width     : 8px !important;
  }

  .sm\:hover\:border:hover{
    border-width     : 1px !important;
  }

  .sm\:hover\:border-t-0:hover{
    border-top-width     : 0 !important;
  }

  .sm\:hover\:border-r-0:hover{
    border-right-width     : 0 !important;
  }

  .sm\:hover\:border-b-0:hover{
    border-bottom-width     : 0 !important;
  }

  .sm\:hover\:border-l-0:hover{
    border-left-width     : 0 !important;
  }

  .sm\:hover\:border-t-2:hover{
    border-top-width     : 2px !important;
  }

  .sm\:hover\:border-r-2:hover{
    border-right-width     : 2px !important;
  }

  .sm\:hover\:border-b-2:hover{
    border-bottom-width     : 2px !important;
  }

  .sm\:hover\:border-l-2:hover{
    border-left-width     : 2px !important;
  }

  .sm\:hover\:border-t-4:hover{
    border-top-width     : 4px !important;
  }

  .sm\:hover\:border-r-4:hover{
    border-right-width     : 4px !important;
  }

  .sm\:hover\:border-b-4:hover{
    border-bottom-width     : 4px !important;
  }

  .sm\:hover\:border-l-4:hover{
    border-left-width     : 4px !important;
  }

  .sm\:hover\:border-t-8:hover{
    border-top-width     : 8px !important;
  }

  .sm\:hover\:border-r-8:hover{
    border-right-width     : 8px !important;
  }

  .sm\:hover\:border-b-8:hover{
    border-bottom-width     : 8px !important;
  }

  .sm\:hover\:border-l-8:hover{
    border-left-width     : 8px !important;
  }

  .sm\:hover\:border-t:hover{
    border-top-width     : 1px !important;
  }

  .sm\:hover\:border-r:hover{
    border-right-width     : 1px !important;
  }

  .sm\:hover\:border-b:hover{
    border-bottom-width     : 1px !important;
  }

  .sm\:hover\:border-l:hover{
    border-left-width     : 1px !important;
  }

  .sm\:focus\:border-0:focus{
    border-width     : 0 !important;
  }

  .sm\:focus\:border-2:focus{
    border-width     : 2px !important;
  }

  .sm\:focus\:border-4:focus{
    border-width     : 4px !important;
  }

  .sm\:focus\:border-8:focus{
    border-width     : 8px !important;
  }

  .sm\:focus\:border:focus{
    border-width     : 1px !important;
  }

  .sm\:focus\:border-t-0:focus{
    border-top-width     : 0 !important;
  }

  .sm\:focus\:border-r-0:focus{
    border-right-width     : 0 !important;
  }

  .sm\:focus\:border-b-0:focus{
    border-bottom-width     : 0 !important;
  }

  .sm\:focus\:border-l-0:focus{
    border-left-width     : 0 !important;
  }

  .sm\:focus\:border-t-2:focus{
    border-top-width     : 2px !important;
  }

  .sm\:focus\:border-r-2:focus{
    border-right-width     : 2px !important;
  }

  .sm\:focus\:border-b-2:focus{
    border-bottom-width     : 2px !important;
  }

  .sm\:focus\:border-l-2:focus{
    border-left-width     : 2px !important;
  }

  .sm\:focus\:border-t-4:focus{
    border-top-width     : 4px !important;
  }

  .sm\:focus\:border-r-4:focus{
    border-right-width     : 4px !important;
  }

  .sm\:focus\:border-b-4:focus{
    border-bottom-width     : 4px !important;
  }

  .sm\:focus\:border-l-4:focus{
    border-left-width     : 4px !important;
  }

  .sm\:focus\:border-t-8:focus{
    border-top-width     : 8px !important;
  }

  .sm\:focus\:border-r-8:focus{
    border-right-width     : 8px !important;
  }

  .sm\:focus\:border-b-8:focus{
    border-bottom-width     : 8px !important;
  }

  .sm\:focus\:border-l-8:focus{
    border-left-width     : 8px !important;
  }

  .sm\:focus\:border-t:focus{
    border-top-width     : 1px !important;
  }

  .sm\:focus\:border-r:focus{
    border-right-width     : 1px !important;
  }

  .sm\:focus\:border-b:focus{
    border-bottom-width     : 1px !important;
  }

  .sm\:focus\:border-l:focus{
    border-left-width     : 1px !important;
  }

  .sm\:box-border{
    box-sizing     : border-box !important;
  }

  .sm\:box-content{
    box-sizing     : content-box !important;
  }

  .group:hover .sm\:group-hover\:box-border{
    box-sizing     : border-box !important;
  }

  .group:hover .sm\:group-hover\:box-content{
    box-sizing     : content-box !important;
  }

  .sm\:hover\:box-border:hover{
    box-sizing     : border-box !important;
  }

  .sm\:hover\:box-content:hover{
    box-sizing     : content-box !important;
  }

  .sm\:focus\:box-border:focus{
    box-sizing     : border-box !important;
  }

  .sm\:focus\:box-content:focus{
    box-sizing     : content-box !important;
  }

  .sm\:cursor-auto{
    cursor     : auto !important;
  }

  .sm\:cursor-default{
    cursor     : default !important;
  }

  .sm\:cursor-pointer{
    cursor     : pointer !important;
  }

  .sm\:cursor-wait{
    cursor     : wait !important;
  }

  .sm\:cursor-text{
    cursor     : text !important;
  }

  .sm\:cursor-move{
    cursor     : move !important;
  }

  .sm\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .group:hover .sm\:group-hover\:cursor-auto{
    cursor     : auto !important;
  }

  .group:hover .sm\:group-hover\:cursor-default{
    cursor     : default !important;
  }

  .group:hover .sm\:group-hover\:cursor-pointer{
    cursor     : pointer !important;
  }

  .group:hover .sm\:group-hover\:cursor-wait{
    cursor     : wait !important;
  }

  .group:hover .sm\:group-hover\:cursor-text{
    cursor     : text !important;
  }

  .group:hover .sm\:group-hover\:cursor-move{
    cursor     : move !important;
  }

  .group:hover .sm\:group-hover\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .sm\:hover\:cursor-auto:hover{
    cursor     : auto !important;
  }

  .sm\:hover\:cursor-default:hover{
    cursor     : default !important;
  }

  .sm\:hover\:cursor-pointer:hover{
    cursor     : pointer !important;
  }

  .sm\:hover\:cursor-wait:hover{
    cursor     : wait !important;
  }

  .sm\:hover\:cursor-text:hover{
    cursor     : text !important;
  }

  .sm\:hover\:cursor-move:hover{
    cursor     : move !important;
  }

  .sm\:hover\:cursor-not-allowed:hover{
    cursor     : not-allowed !important;
  }

  .sm\:focus\:cursor-auto:focus{
    cursor     : auto !important;
  }

  .sm\:focus\:cursor-default:focus{
    cursor     : default !important;
  }

  .sm\:focus\:cursor-pointer:focus{
    cursor     : pointer !important;
  }

  .sm\:focus\:cursor-wait:focus{
    cursor     : wait !important;
  }

  .sm\:focus\:cursor-text:focus{
    cursor     : text !important;
  }

  .sm\:focus\:cursor-move:focus{
    cursor     : move !important;
  }

  .sm\:focus\:cursor-not-allowed:focus{
    cursor     : not-allowed !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\:hidden{
    display     : none !important;
  }

  .group:hover .sm\:group-hover\:block{
    display     : block !important;
  }

  .group:hover .sm\:group-hover\:inline-block{
    display     : inline-block !important;
  }

  .group:hover .sm\:group-hover\:inline{
    display     : inline !important;
  }

  .group:hover .sm\:group-hover\:flex{
    display     : flex !important;
  }

  .group:hover .sm\:group-hover\:inline-flex{
    display     : inline-flex !important;
  }

  .group:hover .sm\:group-hover\:table{
    display     : table !important;
  }

  .group:hover .sm\:group-hover\:table-caption{
    display     : table-caption !important;
  }

  .group:hover .sm\:group-hover\:table-cell{
    display     : table-cell !important;
  }

  .group:hover .sm\:group-hover\:table-column{
    display     : table-column !important;
  }

  .group:hover .sm\:group-hover\:table-column-group{
    display     : table-column-group !important;
  }

  .group:hover .sm\:group-hover\:table-footer-group{
    display     : table-footer-group !important;
  }

  .group:hover .sm\:group-hover\:table-header-group{
    display     : table-header-group !important;
  }

  .group:hover .sm\:group-hover\:table-row-group{
    display     : table-row-group !important;
  }

  .group:hover .sm\:group-hover\:table-row{
    display     : table-row !important;
  }

  .group:hover .sm\:group-hover\:flow-root{
    display     : flow-root !important;
  }

  .group:hover .sm\:group-hover\:grid{
    display     : grid !important;
  }

  .group:hover .sm\:group-hover\:inline-grid{
    display     : inline-grid !important;
  }

  .group:hover .sm\:group-hover\:hidden{
    display     : none !important;
  }

  .sm\:hover\:block:hover{
    display     : block !important;
  }

  .sm\:hover\:inline-block:hover{
    display     : inline-block !important;
  }

  .sm\:hover\:inline:hover{
    display     : inline !important;
  }

  .sm\:hover\:flex:hover{
    display     : flex !important;
  }

  .sm\:hover\:inline-flex:hover{
    display     : inline-flex !important;
  }

  .sm\:hover\:table:hover{
    display     : table !important;
  }

  .sm\:hover\:table-caption:hover{
    display     : table-caption !important;
  }

  .sm\:hover\:table-cell:hover{
    display     : table-cell !important;
  }

  .sm\:hover\:table-column:hover{
    display     : table-column !important;
  }

  .sm\:hover\:table-column-group:hover{
    display     : table-column-group !important;
  }

  .sm\:hover\:table-footer-group:hover{
    display     : table-footer-group !important;
  }

  .sm\:hover\:table-header-group:hover{
    display     : table-header-group !important;
  }

  .sm\:hover\:table-row-group:hover{
    display     : table-row-group !important;
  }

  .sm\:hover\:table-row:hover{
    display     : table-row !important;
  }

  .sm\:hover\:flow-root:hover{
    display     : flow-root !important;
  }

  .sm\:hover\:grid:hover{
    display     : grid !important;
  }

  .sm\:hover\:inline-grid:hover{
    display     : inline-grid !important;
  }

  .sm\:hover\:hidden:hover{
    display     : none !important;
  }

  .sm\:focus\:block:focus{
    display     : block !important;
  }

  .sm\:focus\:inline-block:focus{
    display     : inline-block !important;
  }

  .sm\:focus\:inline:focus{
    display     : inline !important;
  }

  .sm\:focus\:flex:focus{
    display     : flex !important;
  }

  .sm\:focus\:inline-flex:focus{
    display     : inline-flex !important;
  }

  .sm\:focus\:table:focus{
    display     : table !important;
  }

  .sm\:focus\:table-caption:focus{
    display     : table-caption !important;
  }

  .sm\:focus\:table-cell:focus{
    display     : table-cell !important;
  }

  .sm\:focus\:table-column:focus{
    display     : table-column !important;
  }

  .sm\:focus\:table-column-group:focus{
    display     : table-column-group !important;
  }

  .sm\:focus\:table-footer-group:focus{
    display     : table-footer-group !important;
  }

  .sm\:focus\:table-header-group:focus{
    display     : table-header-group !important;
  }

  .sm\:focus\:table-row-group:focus{
    display     : table-row-group !important;
  }

  .sm\:focus\:table-row:focus{
    display     : table-row !important;
  }

  .sm\:focus\:flow-root:focus{
    display     : flow-root !important;
  }

  .sm\:focus\:grid:focus{
    display     : grid !important;
  }

  .sm\:focus\:inline-grid:focus{
    display     : inline-grid !important;
  }

  .sm\:focus\:hidden:focus{
    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;
  }

  .group:hover .sm\:group-hover\:flex-row{
    flex-direction     : row !important;
  }

  .group:hover .sm\:group-hover\:flex-row-reverse{
    flex-direction     : row-reverse !important;
  }

  .group:hover .sm\:group-hover\:flex-col{
    flex-direction     : column !important;
  }

  .group:hover .sm\:group-hover\:flex-col-reverse{
    flex-direction     : column-reverse !important;
  }

  .sm\:hover\:flex-row:hover{
    flex-direction     : row !important;
  }

  .sm\:hover\:flex-row-reverse:hover{
    flex-direction     : row-reverse !important;
  }

  .sm\:hover\:flex-col:hover{
    flex-direction     : column !important;
  }

  .sm\:hover\:flex-col-reverse:hover{
    flex-direction     : column-reverse !important;
  }

  .sm\:focus\:flex-row:focus{
    flex-direction     : row !important;
  }

  .sm\:focus\:flex-row-reverse:focus{
    flex-direction     : row-reverse !important;
  }

  .sm\:focus\:flex-col:focus{
    flex-direction     : column !important;
  }

  .sm\:focus\:flex-col-reverse:focus{
    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;
  }

  .group:hover .sm\:group-hover\:flex-wrap{
    flex-wrap     : wrap !important;
  }

  .group:hover .sm\:group-hover\:flex-wrap-reverse{
    flex-wrap     : wrap-reverse !important;
  }

  .group:hover .sm\:group-hover\:flex-no-wrap{
    flex-wrap     : nowrap !important;
  }

  .sm\:hover\:flex-wrap:hover{
    flex-wrap     : wrap !important;
  }

  .sm\:hover\:flex-wrap-reverse:hover{
    flex-wrap     : wrap-reverse !important;
  }

  .sm\:hover\:flex-no-wrap:hover{
    flex-wrap     : nowrap !important;
  }

  .sm\:focus\:flex-wrap:focus{
    flex-wrap     : wrap !important;
  }

  .sm\:focus\:flex-wrap-reverse:focus{
    flex-wrap     : wrap-reverse !important;
  }

  .sm\:focus\:flex-no-wrap:focus{
    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;
  }

  .group:hover .sm\:group-hover\:items-start{
    align-items     : flex-start !important;
  }

  .group:hover .sm\:group-hover\:items-end{
    align-items     : flex-end !important;
  }

  .group:hover .sm\:group-hover\:items-center{
    align-items     : center !important;
  }

  .group:hover .sm\:group-hover\:items-baseline{
    align-items     : baseline !important;
  }

  .group:hover .sm\:group-hover\:items-stretch{
    align-items     : stretch !important;
  }

  .sm\:hover\:items-start:hover{
    align-items     : flex-start !important;
  }

  .sm\:hover\:items-end:hover{
    align-items     : flex-end !important;
  }

  .sm\:hover\:items-center:hover{
    align-items     : center !important;
  }

  .sm\:hover\:items-baseline:hover{
    align-items     : baseline !important;
  }

  .sm\:hover\:items-stretch:hover{
    align-items     : stretch !important;
  }

  .sm\:focus\:items-start:focus{
    align-items     : flex-start !important;
  }

  .sm\:focus\:items-end:focus{
    align-items     : flex-end !important;
  }

  .sm\:focus\:items-center:focus{
    align-items     : center !important;
  }

  .sm\:focus\:items-baseline:focus{
    align-items     : baseline !important;
  }

  .sm\:focus\:items-stretch:focus{
    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;
  }

  .group:hover .sm\:group-hover\:self-auto{
    align-self     : auto !important;
  }

  .group:hover .sm\:group-hover\:self-start{
    align-self     : flex-start !important;
  }

  .group:hover .sm\:group-hover\:self-end{
    align-self     : flex-end !important;
  }

  .group:hover .sm\:group-hover\:self-center{
    align-self     : center !important;
  }

  .group:hover .sm\:group-hover\:self-stretch{
    align-self     : stretch !important;
  }

  .sm\:hover\:self-auto:hover{
    align-self     : auto !important;
  }

  .sm\:hover\:self-start:hover{
    align-self     : flex-start !important;
  }

  .sm\:hover\:self-end:hover{
    align-self     : flex-end !important;
  }

  .sm\:hover\:self-center:hover{
    align-self     : center !important;
  }

  .sm\:hover\:self-stretch:hover{
    align-self     : stretch !important;
  }

  .sm\:focus\:self-auto:focus{
    align-self     : auto !important;
  }

  .sm\:focus\:self-start:focus{
    align-self     : flex-start !important;
  }

  .sm\:focus\:self-end:focus{
    align-self     : flex-end !important;
  }

  .sm\:focus\:self-center:focus{
    align-self     : center !important;
  }

  .sm\:focus\:self-stretch:focus{
    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;
  }

  .group:hover .sm\:group-hover\:justify-start{
    justify-content     : flex-start !important;
  }

  .group:hover .sm\:group-hover\:justify-end{
    justify-content     : flex-end !important;
  }

  .group:hover .sm\:group-hover\:justify-center{
    justify-content     : center !important;
  }

  .group:hover .sm\:group-hover\:justify-between{
    justify-content     : space-between !important;
  }

  .group:hover .sm\:group-hover\:justify-around{
    justify-content     : space-around !important;
  }

  .group:hover .sm\:group-hover\:justify-evenly{
    justify-content     : space-evenly !important;
  }

  .sm\:hover\:justify-start:hover{
    justify-content     : flex-start !important;
  }

  .sm\:hover\:justify-end:hover{
    justify-content     : flex-end !important;
  }

  .sm\:hover\:justify-center:hover{
    justify-content     : center !important;
  }

  .sm\:hover\:justify-between:hover{
    justify-content     : space-between !important;
  }

  .sm\:hover\:justify-around:hover{
    justify-content     : space-around !important;
  }

  .sm\:hover\:justify-evenly:hover{
    justify-content     : space-evenly !important;
  }

  .sm\:focus\:justify-start:focus{
    justify-content     : flex-start !important;
  }

  .sm\:focus\:justify-end:focus{
    justify-content     : flex-end !important;
  }

  .sm\:focus\:justify-center:focus{
    justify-content     : center !important;
  }

  .sm\:focus\:justify-between:focus{
    justify-content     : space-between !important;
  }

  .sm\:focus\:justify-around:focus{
    justify-content     : space-around !important;
  }

  .sm\:focus\:justify-evenly:focus{
    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;
  }

  .group:hover .sm\:group-hover\:content-center{
    align-content     : center !important;
  }

  .group:hover .sm\:group-hover\:content-start{
    align-content     : flex-start !important;
  }

  .group:hover .sm\:group-hover\:content-end{
    align-content     : flex-end !important;
  }

  .group:hover .sm\:group-hover\:content-between{
    align-content     : space-between !important;
  }

  .group:hover .sm\:group-hover\:content-around{
    align-content     : space-around !important;
  }

  .sm\:hover\:content-center:hover{
    align-content     : center !important;
  }

  .sm\:hover\:content-start:hover{
    align-content     : flex-start !important;
  }

  .sm\:hover\:content-end:hover{
    align-content     : flex-end !important;
  }

  .sm\:hover\:content-between:hover{
    align-content     : space-between !important;
  }

  .sm\:hover\:content-around:hover{
    align-content     : space-around !important;
  }

  .sm\:focus\:content-center:focus{
    align-content     : center !important;
  }

  .sm\:focus\:content-start:focus{
    align-content     : flex-start !important;
  }

  .sm\:focus\:content-end:focus{
    align-content     : flex-end !important;
  }

  .sm\:focus\:content-between:focus{
    align-content     : space-between !important;
  }

  .sm\:focus\:content-around:focus{
    align-content     : space-around !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;
  }

  .group:hover .sm\:group-hover\:flex-1{
    flex     : 1 1 0% !important;
  }

  .group:hover .sm\:group-hover\:flex-auto{
    flex     : 1 1 auto !important;
  }

  .group:hover .sm\:group-hover\:flex-initial{
    flex     : 0 1 auto !important;
  }

  .group:hover .sm\:group-hover\:flex-none{
    flex     : none !important;
  }

  .sm\:hover\:flex-1:hover{
    flex     : 1 1 0% !important;
  }

  .sm\:hover\:flex-auto:hover{
    flex     : 1 1 auto !important;
  }

  .sm\:hover\:flex-initial:hover{
    flex     : 0 1 auto !important;
  }

  .sm\:hover\:flex-none:hover{
    flex     : none !important;
  }

  .sm\:focus\:flex-1:focus{
    flex     : 1 1 0% !important;
  }

  .sm\:focus\:flex-auto:focus{
    flex     : 1 1 auto !important;
  }

  .sm\:focus\:flex-initial:focus{
    flex     : 0 1 auto !important;
  }

  .sm\:focus\:flex-none:focus{
    flex     : none !important;
  }

  .sm\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .sm\:flex-grow{
    flex-grow     : 1 !important;
  }

  .group:hover .sm\:group-hover\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .group:hover .sm\:group-hover\:flex-grow{
    flex-grow     : 1 !important;
  }

  .sm\:hover\:flex-grow-0:hover{
    flex-grow     : 0 !important;
  }

  .sm\:hover\:flex-grow:hover{
    flex-grow     : 1 !important;
  }

  .sm\:focus\:flex-grow-0:focus{
    flex-grow     : 0 !important;
  }

  .sm\:focus\:flex-grow:focus{
    flex-grow     : 1 !important;
  }

  .sm\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .sm\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .group:hover .sm\:group-hover\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .group:hover .sm\:group-hover\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .sm\:hover\:flex-shrink-0:hover{
    flex-shrink     : 0 !important;
  }

  .sm\:hover\:flex-shrink:hover{
    flex-shrink     : 1 !important;
  }

  .sm\:focus\:flex-shrink-0:focus{
    flex-shrink     : 0 !important;
  }

  .sm\:focus\:flex-shrink:focus{
    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;
  }

  .group:hover .sm\:group-hover\:order-1{
    order     : 1 !important;
  }

  .group:hover .sm\:group-hover\:order-2{
    order     : 2 !important;
  }

  .group:hover .sm\:group-hover\:order-3{
    order     : 3 !important;
  }

  .group:hover .sm\:group-hover\:order-4{
    order     : 4 !important;
  }

  .group:hover .sm\:group-hover\:order-5{
    order     : 5 !important;
  }

  .group:hover .sm\:group-hover\:order-6{
    order     : 6 !important;
  }

  .group:hover .sm\:group-hover\:order-7{
    order     : 7 !important;
  }

  .group:hover .sm\:group-hover\:order-8{
    order     : 8 !important;
  }

  .group:hover .sm\:group-hover\:order-9{
    order     : 9 !important;
  }

  .group:hover .sm\:group-hover\:order-10{
    order     : 10 !important;
  }

  .group:hover .sm\:group-hover\:order-11{
    order     : 11 !important;
  }

  .group:hover .sm\:group-hover\:order-12{
    order     : 12 !important;
  }

  .group:hover .sm\:group-hover\:order-first{
    order     : -9999 !important;
  }

  .group:hover .sm\:group-hover\:order-last{
    order     : 9999 !important;
  }

  .group:hover .sm\:group-hover\:order-none{
    order     : 0 !important;
  }

  .sm\:hover\:order-1:hover{
    order     : 1 !important;
  }

  .sm\:hover\:order-2:hover{
    order     : 2 !important;
  }

  .sm\:hover\:order-3:hover{
    order     : 3 !important;
  }

  .sm\:hover\:order-4:hover{
    order     : 4 !important;
  }

  .sm\:hover\:order-5:hover{
    order     : 5 !important;
  }

  .sm\:hover\:order-6:hover{
    order     : 6 !important;
  }

  .sm\:hover\:order-7:hover{
    order     : 7 !important;
  }

  .sm\:hover\:order-8:hover{
    order     : 8 !important;
  }

  .sm\:hover\:order-9:hover{
    order     : 9 !important;
  }

  .sm\:hover\:order-10:hover{
    order     : 10 !important;
  }

  .sm\:hover\:order-11:hover{
    order     : 11 !important;
  }

  .sm\:hover\:order-12:hover{
    order     : 12 !important;
  }

  .sm\:hover\:order-first:hover{
    order     : -9999 !important;
  }

  .sm\:hover\:order-last:hover{
    order     : 9999 !important;
  }

  .sm\:hover\:order-none:hover{
    order     : 0 !important;
  }

  .sm\:focus\:order-1:focus{
    order     : 1 !important;
  }

  .sm\:focus\:order-2:focus{
    order     : 2 !important;
  }

  .sm\:focus\:order-3:focus{
    order     : 3 !important;
  }

  .sm\:focus\:order-4:focus{
    order     : 4 !important;
  }

  .sm\:focus\:order-5:focus{
    order     : 5 !important;
  }

  .sm\:focus\:order-6:focus{
    order     : 6 !important;
  }

  .sm\:focus\:order-7:focus{
    order     : 7 !important;
  }

  .sm\:focus\:order-8:focus{
    order     : 8 !important;
  }

  .sm\:focus\:order-9:focus{
    order     : 9 !important;
  }

  .sm\:focus\:order-10:focus{
    order     : 10 !important;
  }

  .sm\:focus\:order-11:focus{
    order     : 11 !important;
  }

  .sm\:focus\:order-12:focus{
    order     : 12 !important;
  }

  .sm\:focus\:order-first:focus{
    order     : -9999 !important;
  }

  .sm\:focus\:order-last:focus{
    order     : 9999 !important;
  }

  .sm\:focus\:order-none:focus{
    order     : 0 !important;
  }

  .sm\:float-right{
    float     : right !important;
  }

  .sm\:float-left{
    float     : left !important;
  }

  .sm\:float-none{
    float     : none !important;
  }

  .sm\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .group:hover .sm\:group-hover\:float-right{
    float     : right !important;
  }

  .group:hover .sm\:group-hover\:float-left{
    float     : left !important;
  }

  .group:hover .sm\:group-hover\:float-none{
    float     : none !important;
  }

  .group:hover .sm\:group-hover\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .sm\:hover\:float-right:hover{
    float     : right !important;
  }

  .sm\:hover\:float-left:hover{
    float     : left !important;
  }

  .sm\:hover\:float-none:hover{
    float     : none !important;
  }

  .sm\:hover\:clearfix:hover:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .sm\:focus\:float-right:focus{
    float     : right !important;
  }

  .sm\:focus\:float-left:focus{
    float     : left !important;
  }

  .sm\:focus\:float-none:focus{
    float     : none !important;
  }

  .sm\:focus\:clearfix:focus:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .sm\:clear-left{
    clear     : left !important;
  }

  .sm\:clear-right{
    clear     : right !important;
  }

  .sm\:clear-both{
    clear     : both !important;
  }

  .sm\:clear-none{
    clear     : none !important;
  }

  .group:hover .sm\:group-hover\:clear-left{
    clear     : left !important;
  }

  .group:hover .sm\:group-hover\:clear-right{
    clear     : right !important;
  }

  .group:hover .sm\:group-hover\:clear-both{
    clear     : both !important;
  }

  .group:hover .sm\:group-hover\:clear-none{
    clear     : none !important;
  }

  .sm\:hover\:clear-left:hover{
    clear     : left !important;
  }

  .sm\:hover\:clear-right:hover{
    clear     : right !important;
  }

  .sm\:hover\:clear-both:hover{
    clear     : both !important;
  }

  .sm\:hover\:clear-none:hover{
    clear     : none !important;
  }

  .sm\:focus\:clear-left:focus{
    clear     : left !important;
  }

  .sm\:focus\:clear-right:focus{
    clear     : right !important;
  }

  .sm\:focus\:clear-both:focus{
    clear     : both !important;
  }

  .sm\:focus\:clear-none:focus{
    clear     : none !important;
  }

  .sm\:font-sans{
    font-family     : 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;
  }

  .sm\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .sm\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .group:hover .sm\:group-hover\:font-sans{
    font-family     : 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;
  }

  .group:hover .sm\:group-hover\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .group:hover .sm\:group-hover\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .sm\:hover\:font-sans:hover{
    font-family     : 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;
  }

  .sm\:hover\:font-serif:hover{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .sm\:hover\:font-mono:hover{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .sm\:focus\:font-sans:focus{
    font-family     : 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;
  }

  .sm\:focus\:font-serif:focus{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .sm\:focus\:font-mono:focus{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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;
  }

  .group:hover .sm\:group-hover\:font-hairline{
    font-weight     : 100 !important;
  }

  .group:hover .sm\:group-hover\:font-thin{
    font-weight     : 200 !important;
  }

  .group:hover .sm\:group-hover\:font-light{
    font-weight     : 300 !important;
  }

  .group:hover .sm\:group-hover\:font-normal{
    font-weight     : 400 !important;
  }

  .group:hover .sm\:group-hover\:font-medium{
    font-weight     : 500 !important;
  }

  .group:hover .sm\:group-hover\:font-semibold{
    font-weight     : 600 !important;
  }

  .group:hover .sm\:group-hover\:font-bold{
    font-weight     : 700 !important;
  }

  .group:hover .sm\:group-hover\:font-extrabold{
    font-weight     : 800 !important;
  }

  .group:hover .sm\:group-hover\:font-black{
    font-weight     : 900 !important;
  }

  .sm\:hover\:font-hairline:hover{
    font-weight     : 100 !important;
  }

  .sm\:hover\:font-thin:hover{
    font-weight     : 200 !important;
  }

  .sm\:hover\:font-light:hover{
    font-weight     : 300 !important;
  }

  .sm\:hover\:font-normal:hover{
    font-weight     : 400 !important;
  }

  .sm\:hover\:font-medium:hover{
    font-weight     : 500 !important;
  }

  .sm\:hover\:font-semibold:hover{
    font-weight     : 600 !important;
  }

  .sm\:hover\:font-bold:hover{
    font-weight     : 700 !important;
  }

  .sm\:hover\:font-extrabold:hover{
    font-weight     : 800 !important;
  }

  .sm\:hover\:font-black:hover{
    font-weight     : 900 !important;
  }

  .sm\:focus\:font-hairline:focus{
    font-weight     : 100 !important;
  }

  .sm\:focus\:font-thin:focus{
    font-weight     : 200 !important;
  }

  .sm\:focus\:font-light:focus{
    font-weight     : 300 !important;
  }

  .sm\:focus\:font-normal:focus{
    font-weight     : 400 !important;
  }

  .sm\:focus\:font-medium:focus{
    font-weight     : 500 !important;
  }

  .sm\:focus\:font-semibold:focus{
    font-weight     : 600 !important;
  }

  .sm\:focus\:font-bold:focus{
    font-weight     : 700 !important;
  }

  .sm\:focus\:font-extrabold:focus{
    font-weight     : 800 !important;
  }

  .sm\:focus\:font-black:focus{
    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-20{
    height     : 5rem !important;
  }

  .sm\:h-24{
    height     : 6rem !important;
  }

  .sm\:h-28{
    height     : 7rem !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-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-96{
    height     : 24rem !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-screen{
    height     : 100vh !important;
  }

  .group:hover .sm\:group-hover\:h-0{
    height     : 0 !important;
  }

  .group:hover .sm\:group-hover\:h-1{
    height     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:h-2{
    height     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:h-3{
    height     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:h-4{
    height     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:h-5{
    height     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:h-6{
    height     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:h-7{
    height     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:h-8{
    height     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:h-9{
    height     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:h-10{
    height     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:h-11{
    height     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:h-12{
    height     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:h-13{
    height     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:h-14{
    height     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:h-15{
    height     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:h-16{
    height     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:h-20{
    height     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:h-24{
    height     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:h-28{
    height     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:h-32{
    height     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:h-36{
    height     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:h-40{
    height     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:h-44{
    height     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:h-48{
    height     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:h-52{
    height     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:h-56{
    height     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:h-60{
    height     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:h-64{
    height     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:h-72{
    height     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:h-80{
    height     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:h-96{
    height     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:h-auto{
    height     : auto !important;
  }

  .group:hover .sm\:group-hover\:h-px{
    height     : 1px !important;
  }

  .group:hover .sm\:group-hover\:h-0\.5{
    height     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:h-1\.5{
    height     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:h-2\.5{
    height     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:h-3\.5{
    height     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:h-1\/2{
    height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:h-1\/3{
    height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-2\/3{
    height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-1\/4{
    height     : 25% !important;
  }

  .group:hover .sm\:group-hover\:h-2\/4{
    height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:h-3\/4{
    height     : 75% !important;
  }

  .group:hover .sm\:group-hover\:h-1\/5{
    height     : 20% !important;
  }

  .group:hover .sm\:group-hover\:h-2\/5{
    height     : 40% !important;
  }

  .group:hover .sm\:group-hover\:h-3\/5{
    height     : 60% !important;
  }

  .group:hover .sm\:group-hover\:h-4\/5{
    height     : 80% !important;
  }

  .group:hover .sm\:group-hover\:h-1\/6{
    height     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-2\/6{
    height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-3\/6{
    height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:h-4\/6{
    height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-5\/6{
    height     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-1\/12{
    height     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-2\/12{
    height     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-3\/12{
    height     : 25% !important;
  }

  .group:hover .sm\:group-hover\:h-4\/12{
    height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-5\/12{
    height     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-6\/12{
    height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:h-7\/12{
    height     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-8\/12{
    height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-9\/12{
    height     : 75% !important;
  }

  .group:hover .sm\:group-hover\:h-10\/12{
    height     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:h-11\/12{
    height     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:h-full{
    height     : 100% !important;
  }

  .group:hover .sm\:group-hover\:h-screen{
    height     : 100vh !important;
  }

  .sm\:hover\:h-0:hover{
    height     : 0 !important;
  }

  .sm\:hover\:h-1:hover{
    height     : 0.25rem !important;
  }

  .sm\:hover\:h-2:hover{
    height     : 0.5rem !important;
  }

  .sm\:hover\:h-3:hover{
    height     : 0.75rem !important;
  }

  .sm\:hover\:h-4:hover{
    height     : 1rem !important;
  }

  .sm\:hover\:h-5:hover{
    height     : 1.25rem !important;
  }

  .sm\:hover\:h-6:hover{
    height     : 1.5rem !important;
  }

  .sm\:hover\:h-7:hover{
    height     : 1.75rem !important;
  }

  .sm\:hover\:h-8:hover{
    height     : 2rem !important;
  }

  .sm\:hover\:h-9:hover{
    height     : 2.25rem !important;
  }

  .sm\:hover\:h-10:hover{
    height     : 2.5rem !important;
  }

  .sm\:hover\:h-11:hover{
    height     : 2.75rem !important;
  }

  .sm\:hover\:h-12:hover{
    height     : 3rem !important;
  }

  .sm\:hover\:h-13:hover{
    height     : 3.25rem !important;
  }

  .sm\:hover\:h-14:hover{
    height     : 3.5rem !important;
  }

  .sm\:hover\:h-15:hover{
    height     : 3.75rem !important;
  }

  .sm\:hover\:h-16:hover{
    height     : 4rem !important;
  }

  .sm\:hover\:h-20:hover{
    height     : 5rem !important;
  }

  .sm\:hover\:h-24:hover{
    height     : 6rem !important;
  }

  .sm\:hover\:h-28:hover{
    height     : 7rem !important;
  }

  .sm\:hover\:h-32:hover{
    height     : 8rem !important;
  }

  .sm\:hover\:h-36:hover{
    height     : 9rem !important;
  }

  .sm\:hover\:h-40:hover{
    height     : 10rem !important;
  }

  .sm\:hover\:h-44:hover{
    height     : 11rem !important;
  }

  .sm\:hover\:h-48:hover{
    height     : 12rem !important;
  }

  .sm\:hover\:h-52:hover{
    height     : 13rem !important;
  }

  .sm\:hover\:h-56:hover{
    height     : 14rem !important;
  }

  .sm\:hover\:h-60:hover{
    height     : 15rem !important;
  }

  .sm\:hover\:h-64:hover{
    height     : 16rem !important;
  }

  .sm\:hover\:h-72:hover{
    height     : 18rem !important;
  }

  .sm\:hover\:h-80:hover{
    height     : 20rem !important;
  }

  .sm\:hover\:h-96:hover{
    height     : 24rem !important;
  }

  .sm\:hover\:h-auto:hover{
    height     : auto !important;
  }

  .sm\:hover\:h-px:hover{
    height     : 1px !important;
  }

  .sm\:hover\:h-0\.5:hover{
    height     : 0.125rem !important;
  }

  .sm\:hover\:h-1\.5:hover{
    height     : 0.375rem !important;
  }

  .sm\:hover\:h-2\.5:hover{
    height     : 0.625rem !important;
  }

  .sm\:hover\:h-3\.5:hover{
    height     : 0.875rem !important;
  }

  .sm\:hover\:h-1\/2:hover{
    height     : 50% !important;
  }

  .sm\:hover\:h-1\/3:hover{
    height     : 33.333333% !important;
  }

  .sm\:hover\:h-2\/3:hover{
    height     : 66.666667% !important;
  }

  .sm\:hover\:h-1\/4:hover{
    height     : 25% !important;
  }

  .sm\:hover\:h-2\/4:hover{
    height     : 50% !important;
  }

  .sm\:hover\:h-3\/4:hover{
    height     : 75% !important;
  }

  .sm\:hover\:h-1\/5:hover{
    height     : 20% !important;
  }

  .sm\:hover\:h-2\/5:hover{
    height     : 40% !important;
  }

  .sm\:hover\:h-3\/5:hover{
    height     : 60% !important;
  }

  .sm\:hover\:h-4\/5:hover{
    height     : 80% !important;
  }

  .sm\:hover\:h-1\/6:hover{
    height     : 16.666667% !important;
  }

  .sm\:hover\:h-2\/6:hover{
    height     : 33.333333% !important;
  }

  .sm\:hover\:h-3\/6:hover{
    height     : 50% !important;
  }

  .sm\:hover\:h-4\/6:hover{
    height     : 66.666667% !important;
  }

  .sm\:hover\:h-5\/6:hover{
    height     : 83.333333% !important;
  }

  .sm\:hover\:h-1\/12:hover{
    height     : 8.333333% !important;
  }

  .sm\:hover\:h-2\/12:hover{
    height     : 16.666667% !important;
  }

  .sm\:hover\:h-3\/12:hover{
    height     : 25% !important;
  }

  .sm\:hover\:h-4\/12:hover{
    height     : 33.333333% !important;
  }

  .sm\:hover\:h-5\/12:hover{
    height     : 41.666667% !important;
  }

  .sm\:hover\:h-6\/12:hover{
    height     : 50% !important;
  }

  .sm\:hover\:h-7\/12:hover{
    height     : 58.333333% !important;
  }

  .sm\:hover\:h-8\/12:hover{
    height     : 66.666667% !important;
  }

  .sm\:hover\:h-9\/12:hover{
    height     : 75% !important;
  }

  .sm\:hover\:h-10\/12:hover{
    height     : 83.333333% !important;
  }

  .sm\:hover\:h-11\/12:hover{
    height     : 91.666667% !important;
  }

  .sm\:hover\:h-full:hover{
    height     : 100% !important;
  }

  .sm\:hover\:h-screen:hover{
    height     : 100vh !important;
  }

  .sm\:focus\:h-0:focus{
    height     : 0 !important;
  }

  .sm\:focus\:h-1:focus{
    height     : 0.25rem !important;
  }

  .sm\:focus\:h-2:focus{
    height     : 0.5rem !important;
  }

  .sm\:focus\:h-3:focus{
    height     : 0.75rem !important;
  }

  .sm\:focus\:h-4:focus{
    height     : 1rem !important;
  }

  .sm\:focus\:h-5:focus{
    height     : 1.25rem !important;
  }

  .sm\:focus\:h-6:focus{
    height     : 1.5rem !important;
  }

  .sm\:focus\:h-7:focus{
    height     : 1.75rem !important;
  }

  .sm\:focus\:h-8:focus{
    height     : 2rem !important;
  }

  .sm\:focus\:h-9:focus{
    height     : 2.25rem !important;
  }

  .sm\:focus\:h-10:focus{
    height     : 2.5rem !important;
  }

  .sm\:focus\:h-11:focus{
    height     : 2.75rem !important;
  }

  .sm\:focus\:h-12:focus{
    height     : 3rem !important;
  }

  .sm\:focus\:h-13:focus{
    height     : 3.25rem !important;
  }

  .sm\:focus\:h-14:focus{
    height     : 3.5rem !important;
  }

  .sm\:focus\:h-15:focus{
    height     : 3.75rem !important;
  }

  .sm\:focus\:h-16:focus{
    height     : 4rem !important;
  }

  .sm\:focus\:h-20:focus{
    height     : 5rem !important;
  }

  .sm\:focus\:h-24:focus{
    height     : 6rem !important;
  }

  .sm\:focus\:h-28:focus{
    height     : 7rem !important;
  }

  .sm\:focus\:h-32:focus{
    height     : 8rem !important;
  }

  .sm\:focus\:h-36:focus{
    height     : 9rem !important;
  }

  .sm\:focus\:h-40:focus{
    height     : 10rem !important;
  }

  .sm\:focus\:h-44:focus{
    height     : 11rem !important;
  }

  .sm\:focus\:h-48:focus{
    height     : 12rem !important;
  }

  .sm\:focus\:h-52:focus{
    height     : 13rem !important;
  }

  .sm\:focus\:h-56:focus{
    height     : 14rem !important;
  }

  .sm\:focus\:h-60:focus{
    height     : 15rem !important;
  }

  .sm\:focus\:h-64:focus{
    height     : 16rem !important;
  }

  .sm\:focus\:h-72:focus{
    height     : 18rem !important;
  }

  .sm\:focus\:h-80:focus{
    height     : 20rem !important;
  }

  .sm\:focus\:h-96:focus{
    height     : 24rem !important;
  }

  .sm\:focus\:h-auto:focus{
    height     : auto !important;
  }

  .sm\:focus\:h-px:focus{
    height     : 1px !important;
  }

  .sm\:focus\:h-0\.5:focus{
    height     : 0.125rem !important;
  }

  .sm\:focus\:h-1\.5:focus{
    height     : 0.375rem !important;
  }

  .sm\:focus\:h-2\.5:focus{
    height     : 0.625rem !important;
  }

  .sm\:focus\:h-3\.5:focus{
    height     : 0.875rem !important;
  }

  .sm\:focus\:h-1\/2:focus{
    height     : 50% !important;
  }

  .sm\:focus\:h-1\/3:focus{
    height     : 33.333333% !important;
  }

  .sm\:focus\:h-2\/3:focus{
    height     : 66.666667% !important;
  }

  .sm\:focus\:h-1\/4:focus{
    height     : 25% !important;
  }

  .sm\:focus\:h-2\/4:focus{
    height     : 50% !important;
  }

  .sm\:focus\:h-3\/4:focus{
    height     : 75% !important;
  }

  .sm\:focus\:h-1\/5:focus{
    height     : 20% !important;
  }

  .sm\:focus\:h-2\/5:focus{
    height     : 40% !important;
  }

  .sm\:focus\:h-3\/5:focus{
    height     : 60% !important;
  }

  .sm\:focus\:h-4\/5:focus{
    height     : 80% !important;
  }

  .sm\:focus\:h-1\/6:focus{
    height     : 16.666667% !important;
  }

  .sm\:focus\:h-2\/6:focus{
    height     : 33.333333% !important;
  }

  .sm\:focus\:h-3\/6:focus{
    height     : 50% !important;
  }

  .sm\:focus\:h-4\/6:focus{
    height     : 66.666667% !important;
  }

  .sm\:focus\:h-5\/6:focus{
    height     : 83.333333% !important;
  }

  .sm\:focus\:h-1\/12:focus{
    height     : 8.333333% !important;
  }

  .sm\:focus\:h-2\/12:focus{
    height     : 16.666667% !important;
  }

  .sm\:focus\:h-3\/12:focus{
    height     : 25% !important;
  }

  .sm\:focus\:h-4\/12:focus{
    height     : 33.333333% !important;
  }

  .sm\:focus\:h-5\/12:focus{
    height     : 41.666667% !important;
  }

  .sm\:focus\:h-6\/12:focus{
    height     : 50% !important;
  }

  .sm\:focus\:h-7\/12:focus{
    height     : 58.333333% !important;
  }

  .sm\:focus\:h-8\/12:focus{
    height     : 66.666667% !important;
  }

  .sm\:focus\:h-9\/12:focus{
    height     : 75% !important;
  }

  .sm\:focus\:h-10\/12:focus{
    height     : 83.333333% !important;
  }

  .sm\:focus\:h-11\/12:focus{
    height     : 91.666667% !important;
  }

  .sm\:focus\:h-full:focus{
    height     : 100% !important;
  }

  .sm\:focus\:h-screen:focus{
    height     : 100vh !important;
  }

  .sm\:text-xs{
    font-size     : 0.75rem !important;
  }

  .sm\:text-sm{
    font-size     : 0.875rem !important;
  }

  .sm\:text-base{
    font-size     : 1rem !important;
  }

  .sm\:text-lg{
    font-size     : 1.125rem !important;
  }

  .sm\:text-xl{
    font-size     : 1.25rem !important;
  }

  .sm\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .sm\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .sm\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .sm\:text-5xl{
    font-size     : 3rem !important;
  }

  .sm\:text-6xl{
    font-size     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:text-xs{
    font-size     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:text-sm{
    font-size     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:text-base{
    font-size     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:text-lg{
    font-size     : 1.125rem !important;
  }

  .group:hover .sm\:group-hover\:text-xl{
    font-size     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .group:hover .sm\:group-hover\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:text-5xl{
    font-size     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:text-6xl{
    font-size     : 4rem !important;
  }

  .sm\:hover\:text-xs:hover{
    font-size     : 0.75rem !important;
  }

  .sm\:hover\:text-sm:hover{
    font-size     : 0.875rem !important;
  }

  .sm\:hover\:text-base:hover{
    font-size     : 1rem !important;
  }

  .sm\:hover\:text-lg:hover{
    font-size     : 1.125rem !important;
  }

  .sm\:hover\:text-xl:hover{
    font-size     : 1.25rem !important;
  }

  .sm\:hover\:text-2xl:hover{
    font-size     : 1.5rem !important;
  }

  .sm\:hover\:text-3xl:hover{
    font-size     : 1.875rem !important;
  }

  .sm\:hover\:text-4xl:hover{
    font-size     : 2.25rem !important;
  }

  .sm\:hover\:text-5xl:hover{
    font-size     : 3rem !important;
  }

  .sm\:hover\:text-6xl:hover{
    font-size     : 4rem !important;
  }

  .sm\:focus\:text-xs:focus{
    font-size     : 0.75rem !important;
  }

  .sm\:focus\:text-sm:focus{
    font-size     : 0.875rem !important;
  }

  .sm\:focus\:text-base:focus{
    font-size     : 1rem !important;
  }

  .sm\:focus\:text-lg:focus{
    font-size     : 1.125rem !important;
  }

  .sm\:focus\:text-xl:focus{
    font-size     : 1.25rem !important;
  }

  .sm\:focus\:text-2xl:focus{
    font-size     : 1.5rem !important;
  }

  .sm\:focus\:text-3xl:focus{
    font-size     : 1.875rem !important;
  }

  .sm\:focus\:text-4xl:focus{
    font-size     : 2.25rem !important;
  }

  .sm\:focus\:text-5xl:focus{
    font-size     : 3rem !important;
  }

  .sm\:focus\:text-6xl:focus{
    font-size     : 4rem !important;
  }

  .sm\:leading-3{
    line-height     : .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;
  }

  .group:hover .sm\:group-hover\:leading-3{
    line-height     : .75rem !important;
  }

  .group:hover .sm\:group-hover\:leading-4{
    line-height     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:leading-5{
    line-height     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:leading-6{
    line-height     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:leading-7{
    line-height     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:leading-8{
    line-height     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:leading-9{
    line-height     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:leading-10{
    line-height     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:leading-none{
    line-height     : 1 !important;
  }

  .group:hover .sm\:group-hover\:leading-tight{
    line-height     : 1.25 !important;
  }

  .group:hover .sm\:group-hover\:leading-snug{
    line-height     : 1.375 !important;
  }

  .group:hover .sm\:group-hover\:leading-normal{
    line-height     : 1.5 !important;
  }

  .group:hover .sm\:group-hover\:leading-relaxed{
    line-height     : 1.625 !important;
  }

  .group:hover .sm\:group-hover\:leading-loose{
    line-height     : 2 !important;
  }

  .sm\:hover\:leading-3:hover{
    line-height     : .75rem !important;
  }

  .sm\:hover\:leading-4:hover{
    line-height     : 1rem !important;
  }

  .sm\:hover\:leading-5:hover{
    line-height     : 1.25rem !important;
  }

  .sm\:hover\:leading-6:hover{
    line-height     : 1.5rem !important;
  }

  .sm\:hover\:leading-7:hover{
    line-height     : 1.75rem !important;
  }

  .sm\:hover\:leading-8:hover{
    line-height     : 2rem !important;
  }

  .sm\:hover\:leading-9:hover{
    line-height     : 2.25rem !important;
  }

  .sm\:hover\:leading-10:hover{
    line-height     : 2.5rem !important;
  }

  .sm\:hover\:leading-none:hover{
    line-height     : 1 !important;
  }

  .sm\:hover\:leading-tight:hover{
    line-height     : 1.25 !important;
  }

  .sm\:hover\:leading-snug:hover{
    line-height     : 1.375 !important;
  }

  .sm\:hover\:leading-normal:hover{
    line-height     : 1.5 !important;
  }

  .sm\:hover\:leading-relaxed:hover{
    line-height     : 1.625 !important;
  }

  .sm\:hover\:leading-loose:hover{
    line-height     : 2 !important;
  }

  .sm\:focus\:leading-3:focus{
    line-height     : .75rem !important;
  }

  .sm\:focus\:leading-4:focus{
    line-height     : 1rem !important;
  }

  .sm\:focus\:leading-5:focus{
    line-height     : 1.25rem !important;
  }

  .sm\:focus\:leading-6:focus{
    line-height     : 1.5rem !important;
  }

  .sm\:focus\:leading-7:focus{
    line-height     : 1.75rem !important;
  }

  .sm\:focus\:leading-8:focus{
    line-height     : 2rem !important;
  }

  .sm\:focus\:leading-9:focus{
    line-height     : 2.25rem !important;
  }

  .sm\:focus\:leading-10:focus{
    line-height     : 2.5rem !important;
  }

  .sm\:focus\:leading-none:focus{
    line-height     : 1 !important;
  }

  .sm\:focus\:leading-tight:focus{
    line-height     : 1.25 !important;
  }

  .sm\:focus\:leading-snug:focus{
    line-height     : 1.375 !important;
  }

  .sm\:focus\:leading-normal:focus{
    line-height     : 1.5 !important;
  }

  .sm\:focus\:leading-relaxed:focus{
    line-height     : 1.625 !important;
  }

  .sm\:focus\:leading-loose:focus{
    line-height     : 2 !important;
  }

  .sm\:list-inside{
    list-style-position     : inside !important;
  }

  .sm\:list-outside{
    list-style-position     : outside !important;
  }

  .group:hover .sm\:group-hover\:list-inside{
    list-style-position     : inside !important;
  }

  .group:hover .sm\:group-hover\:list-outside{
    list-style-position     : outside !important;
  }

  .sm\:hover\:list-inside:hover{
    list-style-position     : inside !important;
  }

  .sm\:hover\:list-outside:hover{
    list-style-position     : outside !important;
  }

  .sm\:focus\:list-inside:focus{
    list-style-position     : inside !important;
  }

  .sm\:focus\:list-outside:focus{
    list-style-position     : outside !important;
  }

  .sm\:list-none{
    list-style-type     : none !important;
  }

  .sm\:list-disc{
    list-style-type     : disc !important;
  }

  .sm\:list-decimal{
    list-style-type     : decimal !important;
  }

  .group:hover .sm\:group-hover\:list-none{
    list-style-type     : none !important;
  }

  .group:hover .sm\:group-hover\:list-disc{
    list-style-type     : disc !important;
  }

  .group:hover .sm\:group-hover\:list-decimal{
    list-style-type     : decimal !important;
  }

  .sm\:hover\:list-none:hover{
    list-style-type     : none !important;
  }

  .sm\:hover\:list-disc:hover{
    list-style-type     : disc !important;
  }

  .sm\:hover\:list-decimal:hover{
    list-style-type     : decimal !important;
  }

  .sm\:focus\:list-none:focus{
    list-style-type     : none !important;
  }

  .sm\:focus\:list-disc:focus{
    list-style-type     : disc !important;
  }

  .sm\:focus\:list-decimal:focus{
    list-style-type     : decimal !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-20{
    margin     : 5rem !important;
  }

  .sm\:m-24{
    margin     : 6rem !important;
  }

  .sm\:m-28{
    margin     : 7rem !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-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-96{
    margin     : 24rem !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-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-20{
    margin     : -5rem !important;
  }

  .sm\:-m-24{
    margin     : -6rem !important;
  }

  .sm\:-m-28{
    margin     : -7rem !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-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-96{
    margin     : -24rem !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\: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-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .sm\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 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-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .sm\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !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-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-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .sm\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !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-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-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .sm\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -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-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .sm\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !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-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-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .sm\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !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\: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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }

  .group:hover .sm\:group-hover\:m-0{
    margin     : 0 !important;
  }

  .group:hover .sm\:group-hover\:m-1{
    margin     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:m-2{
    margin     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:m-3{
    margin     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:m-4{
    margin     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:m-5{
    margin     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:m-6{
    margin     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:m-7{
    margin     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:m-8{
    margin     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:m-9{
    margin     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:m-10{
    margin     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:m-11{
    margin     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:m-12{
    margin     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:m-13{
    margin     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:m-14{
    margin     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:m-15{
    margin     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:m-16{
    margin     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:m-20{
    margin     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:m-24{
    margin     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:m-28{
    margin     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:m-32{
    margin     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:m-36{
    margin     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:m-40{
    margin     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:m-44{
    margin     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:m-48{
    margin     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:m-52{
    margin     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:m-56{
    margin     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:m-60{
    margin     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:m-64{
    margin     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:m-72{
    margin     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:m-80{
    margin     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:m-96{
    margin     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:m-auto{
    margin     : auto !important;
  }

  .group:hover .sm\:group-hover\:m-px{
    margin     : 1px !important;
  }

  .group:hover .sm\:group-hover\:m-0\.5{
    margin     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:m-1\.5{
    margin     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:m-2\.5{
    margin     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:m-3\.5{
    margin     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:m-1\/2{
    margin     : 50% !important;
  }

  .group:hover .sm\:group-hover\:m-1\/3{
    margin     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-2\/3{
    margin     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-1\/4{
    margin     : 25% !important;
  }

  .group:hover .sm\:group-hover\:m-2\/4{
    margin     : 50% !important;
  }

  .group:hover .sm\:group-hover\:m-3\/4{
    margin     : 75% !important;
  }

  .group:hover .sm\:group-hover\:m-1\/5{
    margin     : 20% !important;
  }

  .group:hover .sm\:group-hover\:m-2\/5{
    margin     : 40% !important;
  }

  .group:hover .sm\:group-hover\:m-3\/5{
    margin     : 60% !important;
  }

  .group:hover .sm\:group-hover\:m-4\/5{
    margin     : 80% !important;
  }

  .group:hover .sm\:group-hover\:m-1\/6{
    margin     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-2\/6{
    margin     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-3\/6{
    margin     : 50% !important;
  }

  .group:hover .sm\:group-hover\:m-4\/6{
    margin     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-5\/6{
    margin     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-1\/12{
    margin     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-2\/12{
    margin     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-3\/12{
    margin     : 25% !important;
  }

  .group:hover .sm\:group-hover\:m-4\/12{
    margin     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-5\/12{
    margin     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-6\/12{
    margin     : 50% !important;
  }

  .group:hover .sm\:group-hover\:m-7\/12{
    margin     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-8\/12{
    margin     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-9\/12{
    margin     : 75% !important;
  }

  .group:hover .sm\:group-hover\:m-10\/12{
    margin     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:m-11\/12{
    margin     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:m-full{
    margin     : 100% !important;
  }

  .group:hover .sm\:group-hover\:-m-1{
    margin     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-m-2{
    margin     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-m-3{
    margin     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-m-4{
    margin     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-m-5{
    margin     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-m-6{
    margin     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-m-7{
    margin     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-m-8{
    margin     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-m-9{
    margin     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-m-10{
    margin     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-m-11{
    margin     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-m-12{
    margin     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-m-13{
    margin     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-m-14{
    margin     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-m-15{
    margin     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-m-16{
    margin     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-m-20{
    margin     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-m-24{
    margin     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-m-28{
    margin     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-m-32{
    margin     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-m-36{
    margin     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-m-40{
    margin     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-m-44{
    margin     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-m-48{
    margin     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-m-52{
    margin     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-m-56{
    margin     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-m-60{
    margin     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-m-64{
    margin     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-m-72{
    margin     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-m-80{
    margin     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-m-96{
    margin     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-m-px{
    margin     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-m-0\.5{
    margin     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-m-1\.5{
    margin     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-m-2\.5{
    margin     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-m-3\.5{
    margin     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/2{
    margin     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/3{
    margin     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-2\/3{
    margin     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/4{
    margin     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-m-2\/4{
    margin     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-m-3\/4{
    margin     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/5{
    margin     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-m-2\/5{
    margin     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-m-3\/5{
    margin     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-m-4\/5{
    margin     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/6{
    margin     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-2\/6{
    margin     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-3\/6{
    margin     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-m-4\/6{
    margin     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-5\/6{
    margin     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-1\/12{
    margin     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-2\/12{
    margin     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-3\/12{
    margin     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-m-4\/12{
    margin     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-5\/12{
    margin     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-6\/12{
    margin     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-m-7\/12{
    margin     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-8\/12{
    margin     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-9\/12{
    margin     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-m-10\/12{
    margin     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-m-11\/12{
    margin     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-m-full{
    margin     : -100% !important;
  }

  .group:hover .sm\:group-hover\:my-0{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:mx-0{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .group:hover .sm\:group-hover\:my-1{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:mx-1{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:my-2{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:mx-2{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:my-3{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:mx-3{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:my-4{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:mx-4{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:my-5{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:mx-5{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:my-6{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:mx-6{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:my-7{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:mx-7{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:my-8{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:mx-8{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:my-9{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:mx-9{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:my-10{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:mx-10{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:my-11{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:mx-11{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:my-12{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:mx-12{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:my-13{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:mx-13{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:my-14{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:mx-14{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:my-15{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:mx-15{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:my-16{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:mx-16{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:my-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:my-24{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:mx-24{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:my-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:my-32{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:mx-32{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:my-36{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:mx-36{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:my-40{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:mx-40{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:my-44{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:mx-44{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:my-48{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:mx-48{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:my-52{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:mx-52{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:my-56{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:mx-56{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:my-60{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:mx-60{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:my-64{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:mx-64{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:my-72{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:mx-72{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:my-80{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:mx-80{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:my-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:my-auto{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .group:hover .sm\:group-hover\:mx-auto{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .group:hover .sm\:group-hover\:my-px{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:mx-px{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .group:hover .sm\:group-hover\:my-0\.5{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:mx-0\.5{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:my-1\.5{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:mx-1\.5{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:my-2\.5{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:mx-2\.5{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:my-3\.5{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:mx-3\.5{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:my-1\/2{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/2{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:my-1\/3{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/3{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-2\/3{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-2\/3{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-1\/4{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/4{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:my-2\/4{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mx-2\/4{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:my-3\/4{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mx-3\/4{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:my-1\/5{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/5{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .group:hover .sm\:group-hover\:my-2\/5{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:mx-2\/5{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .group:hover .sm\:group-hover\:my-3\/5{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:mx-3\/5{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .group:hover .sm\:group-hover\:my-4\/5{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:mx-4\/5{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .group:hover .sm\:group-hover\:my-1\/6{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/6{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-2\/6{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-2\/6{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-3\/6{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mx-3\/6{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:my-4\/6{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-4\/6{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-5\/6{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-5\/6{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-1\/12{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-1\/12{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-2\/12{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-2\/12{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-3\/12{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mx-3\/12{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:my-4\/12{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-4\/12{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-5\/12{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-5\/12{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-6\/12{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mx-6\/12{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:my-7\/12{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-7\/12{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-8\/12{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-8\/12{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-9\/12{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mx-9\/12{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:my-10\/12{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mx-10\/12{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:my-11\/12{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:mx-11\/12{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:my-full{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:mx-full{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .group:hover .sm\:group-hover\:-my-1{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-1{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-my-2{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-2{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-my-3{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-3{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-my-4{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-4{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-my-5{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-5{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-my-6{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-6{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-my-7{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-7{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-my-8{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-8{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-my-9{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-9{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-my-10{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-10{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-my-11{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-11{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-my-12{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-12{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-my-13{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-13{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-my-14{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-14{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-my-15{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-15{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-my-16{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-16{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-my-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-my-24{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-24{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-my-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-my-32{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-32{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-my-36{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-36{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-my-40{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-40{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-my-44{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-44{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-my-48{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-48{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-my-52{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-52{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-my-56{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-56{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-my-60{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-60{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-my-64{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-64{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-my-72{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-72{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-my-80{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-80{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-my-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-my-px{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-mx-px{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-my-0\.5{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-0\.5{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-my-1\.5{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\.5{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-my-2\.5{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\.5{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-my-3\.5{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-mx-3\.5{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/2{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/2{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/3{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/3{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-2\/3{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\/3{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/4{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/4{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-my-2\/4{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\/4{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-my-3\/4{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mx-3\/4{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/5{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/5{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-my-2\/5{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\/5{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-my-3\/5{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-mx-3\/5{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-my-4\/5{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-mx-4\/5{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/6{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/6{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-2\/6{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\/6{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-3\/6{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mx-3\/6{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-my-4\/6{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-4\/6{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-5\/6{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-5\/6{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-1\/12{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-1\/12{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-2\/12{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-2\/12{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-3\/12{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mx-3\/12{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-my-4\/12{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-4\/12{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-5\/12{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-5\/12{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-6\/12{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mx-6\/12{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-my-7\/12{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-7\/12{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-8\/12{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-8\/12{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-9\/12{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mx-9\/12{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-my-10\/12{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mx-10\/12{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-my-11\/12{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mx-11\/12{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-my-full{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .group:hover .sm\:group-hover\:-mx-full{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .group:hover .sm\:group-hover\:mt-0{
    margin-top     : 0 !important;
  }

  .group:hover .sm\:group-hover\:mr-0{
    margin-right     : 0 !important;
  }

  .group:hover .sm\:group-hover\:mb-0{
    margin-bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:ml-0{
    margin-left     : 0 !important;
  }

  .group:hover .sm\:group-hover\:mt-1{
    margin-top     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:mr-1{
    margin-right     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:mb-1{
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:ml-1{
    margin-left     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:mt-2{
    margin-top     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:mr-2{
    margin-right     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:mb-2{
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:ml-2{
    margin-left     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:mt-3{
    margin-top     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:mr-3{
    margin-right     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:mb-3{
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:ml-3{
    margin-left     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:mt-4{
    margin-top     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:mr-4{
    margin-right     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:mb-4{
    margin-bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:ml-4{
    margin-left     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:mt-5{
    margin-top     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:mr-5{
    margin-right     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:mb-5{
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:ml-5{
    margin-left     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:mt-6{
    margin-top     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:mr-6{
    margin-right     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:mb-6{
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:ml-6{
    margin-left     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:mt-7{
    margin-top     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:mr-7{
    margin-right     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:mb-7{
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:ml-7{
    margin-left     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:mt-8{
    margin-top     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:mr-8{
    margin-right     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:mb-8{
    margin-bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:ml-8{
    margin-left     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:mt-9{
    margin-top     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:mr-9{
    margin-right     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:mb-9{
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:ml-9{
    margin-left     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:mt-10{
    margin-top     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:mr-10{
    margin-right     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:mb-10{
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:ml-10{
    margin-left     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:mt-11{
    margin-top     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:mr-11{
    margin-right     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:mb-11{
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:ml-11{
    margin-left     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:mt-12{
    margin-top     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:mr-12{
    margin-right     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:mb-12{
    margin-bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:ml-12{
    margin-left     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:mt-13{
    margin-top     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:mr-13{
    margin-right     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:mb-13{
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:ml-13{
    margin-left     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:mt-14{
    margin-top     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:mr-14{
    margin-right     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:mb-14{
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:ml-14{
    margin-left     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:mt-15{
    margin-top     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:mr-15{
    margin-right     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:mb-15{
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:ml-15{
    margin-left     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:mt-16{
    margin-top     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:mr-16{
    margin-right     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:mb-16{
    margin-bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:ml-16{
    margin-left     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:mt-20{
    margin-top     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:mr-20{
    margin-right     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:mb-20{
    margin-bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:ml-20{
    margin-left     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:mt-24{
    margin-top     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:mr-24{
    margin-right     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:mb-24{
    margin-bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:ml-24{
    margin-left     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:mt-28{
    margin-top     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:mr-28{
    margin-right     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:mb-28{
    margin-bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:ml-28{
    margin-left     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:mt-32{
    margin-top     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:mr-32{
    margin-right     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:mb-32{
    margin-bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:ml-32{
    margin-left     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:mt-36{
    margin-top     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:mr-36{
    margin-right     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:mb-36{
    margin-bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:ml-36{
    margin-left     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:mt-40{
    margin-top     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:mr-40{
    margin-right     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:mb-40{
    margin-bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:ml-40{
    margin-left     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:mt-44{
    margin-top     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:mr-44{
    margin-right     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:mb-44{
    margin-bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:ml-44{
    margin-left     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:mt-48{
    margin-top     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:mr-48{
    margin-right     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:mb-48{
    margin-bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:ml-48{
    margin-left     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:mt-52{
    margin-top     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:mr-52{
    margin-right     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:mb-52{
    margin-bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:ml-52{
    margin-left     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:mt-56{
    margin-top     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:mr-56{
    margin-right     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:mb-56{
    margin-bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:ml-56{
    margin-left     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:mt-60{
    margin-top     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:mr-60{
    margin-right     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:mb-60{
    margin-bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:ml-60{
    margin-left     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:mt-64{
    margin-top     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:mr-64{
    margin-right     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:mb-64{
    margin-bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:ml-64{
    margin-left     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:mt-72{
    margin-top     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:mr-72{
    margin-right     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:mb-72{
    margin-bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:ml-72{
    margin-left     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:mt-80{
    margin-top     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:mr-80{
    margin-right     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:mb-80{
    margin-bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:ml-80{
    margin-left     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:mt-96{
    margin-top     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:mr-96{
    margin-right     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:mb-96{
    margin-bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:ml-96{
    margin-left     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:mt-auto{
    margin-top     : auto !important;
  }

  .group:hover .sm\:group-hover\:mr-auto{
    margin-right     : auto !important;
  }

  .group:hover .sm\:group-hover\:mb-auto{
    margin-bottom     : auto !important;
  }

  .group:hover .sm\:group-hover\:ml-auto{
    margin-left     : auto !important;
  }

  .group:hover .sm\:group-hover\:mt-px{
    margin-top     : 1px !important;
  }

  .group:hover .sm\:group-hover\:mr-px{
    margin-right     : 1px !important;
  }

  .group:hover .sm\:group-hover\:mb-px{
    margin-bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:ml-px{
    margin-left     : 1px !important;
  }

  .group:hover .sm\:group-hover\:mt-0\.5{
    margin-top     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:mr-0\.5{
    margin-right     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:mb-0\.5{
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:ml-0\.5{
    margin-left     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:mt-1\.5{
    margin-top     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:mr-1\.5{
    margin-right     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:mb-1\.5{
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:ml-1\.5{
    margin-left     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:mt-2\.5{
    margin-top     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:mr-2\.5{
    margin-right     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:mb-2\.5{
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:ml-2\.5{
    margin-left     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:mt-3\.5{
    margin-top     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:mr-3\.5{
    margin-right     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:mb-3\.5{
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:ml-3\.5{
    margin-left     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/2{
    margin-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/2{
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/2{
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/2{
    margin-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/3{
    margin-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/3{
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/3{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/3{
    margin-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-2\/3{
    margin-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-2\/3{
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-2\/3{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-2\/3{
    margin-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/4{
    margin-top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/4{
    margin-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/4{
    margin-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/4{
    margin-left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mt-2\/4{
    margin-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mr-2\/4{
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mb-2\/4{
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:ml-2\/4{
    margin-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mt-3\/4{
    margin-top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mr-3\/4{
    margin-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mb-3\/4{
    margin-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:ml-3\/4{
    margin-left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/5{
    margin-top     : 20% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/5{
    margin-right     : 20% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/5{
    margin-bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/5{
    margin-left     : 20% !important;
  }

  .group:hover .sm\:group-hover\:mt-2\/5{
    margin-top     : 40% !important;
  }

  .group:hover .sm\:group-hover\:mr-2\/5{
    margin-right     : 40% !important;
  }

  .group:hover .sm\:group-hover\:mb-2\/5{
    margin-bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:ml-2\/5{
    margin-left     : 40% !important;
  }

  .group:hover .sm\:group-hover\:mt-3\/5{
    margin-top     : 60% !important;
  }

  .group:hover .sm\:group-hover\:mr-3\/5{
    margin-right     : 60% !important;
  }

  .group:hover .sm\:group-hover\:mb-3\/5{
    margin-bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:ml-3\/5{
    margin-left     : 60% !important;
  }

  .group:hover .sm\:group-hover\:mt-4\/5{
    margin-top     : 80% !important;
  }

  .group:hover .sm\:group-hover\:mr-4\/5{
    margin-right     : 80% !important;
  }

  .group:hover .sm\:group-hover\:mb-4\/5{
    margin-bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:ml-4\/5{
    margin-left     : 80% !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/6{
    margin-top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/6{
    margin-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/6{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/6{
    margin-left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-2\/6{
    margin-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-2\/6{
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-2\/6{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-2\/6{
    margin-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-3\/6{
    margin-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mr-3\/6{
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mb-3\/6{
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:ml-3\/6{
    margin-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mt-4\/6{
    margin-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-4\/6{
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-4\/6{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-4\/6{
    margin-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-5\/6{
    margin-top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-5\/6{
    margin-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-5\/6{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-5\/6{
    margin-left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-1\/12{
    margin-top     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-1\/12{
    margin-right     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-1\/12{
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-1\/12{
    margin-left     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-2\/12{
    margin-top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-2\/12{
    margin-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-2\/12{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-2\/12{
    margin-left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-3\/12{
    margin-top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mr-3\/12{
    margin-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mb-3\/12{
    margin-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:ml-3\/12{
    margin-left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:mt-4\/12{
    margin-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-4\/12{
    margin-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-4\/12{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-4\/12{
    margin-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-5\/12{
    margin-top     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-5\/12{
    margin-right     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-5\/12{
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-5\/12{
    margin-left     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-6\/12{
    margin-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mr-6\/12{
    margin-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mb-6\/12{
    margin-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:ml-6\/12{
    margin-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:mt-7\/12{
    margin-top     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-7\/12{
    margin-right     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-7\/12{
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-7\/12{
    margin-left     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-8\/12{
    margin-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-8\/12{
    margin-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-8\/12{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-8\/12{
    margin-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-9\/12{
    margin-top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mr-9\/12{
    margin-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mb-9\/12{
    margin-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:ml-9\/12{
    margin-left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:mt-10\/12{
    margin-top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mr-10\/12{
    margin-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mb-10\/12{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:ml-10\/12{
    margin-left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:mt-11\/12{
    margin-top     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:mr-11\/12{
    margin-right     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:mb-11\/12{
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:ml-11\/12{
    margin-left     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:mt-full{
    margin-top     : 100% !important;
  }

  .group:hover .sm\:group-hover\:mr-full{
    margin-right     : 100% !important;
  }

  .group:hover .sm\:group-hover\:mb-full{
    margin-bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:ml-full{
    margin-left     : 100% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1{
    margin-top     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-1{
    margin-right     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-1{
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-1{
    margin-left     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-2{
    margin-top     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-2{
    margin-right     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-2{
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-2{
    margin-left     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-3{
    margin-top     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-3{
    margin-right     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-3{
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-3{
    margin-left     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-4{
    margin-top     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-4{
    margin-right     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-4{
    margin-bottom     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-4{
    margin-left     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-5{
    margin-top     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-5{
    margin-right     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-5{
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-5{
    margin-left     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-6{
    margin-top     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-6{
    margin-right     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-6{
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-6{
    margin-left     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-7{
    margin-top     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-7{
    margin-right     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-7{
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-7{
    margin-left     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-8{
    margin-top     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-8{
    margin-right     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-8{
    margin-bottom     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-8{
    margin-left     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-9{
    margin-top     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-9{
    margin-right     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-9{
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-9{
    margin-left     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-10{
    margin-top     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-10{
    margin-right     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-10{
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-10{
    margin-left     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-11{
    margin-top     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-11{
    margin-right     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-11{
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-11{
    margin-left     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-12{
    margin-top     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-12{
    margin-right     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-12{
    margin-bottom     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-12{
    margin-left     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-13{
    margin-top     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-13{
    margin-right     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-13{
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-13{
    margin-left     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-14{
    margin-top     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-14{
    margin-right     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-14{
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-14{
    margin-left     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-15{
    margin-top     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-15{
    margin-right     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-15{
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-15{
    margin-left     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-16{
    margin-top     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-16{
    margin-right     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-16{
    margin-bottom     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-16{
    margin-left     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-20{
    margin-top     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-20{
    margin-right     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-20{
    margin-bottom     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-20{
    margin-left     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-24{
    margin-top     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-24{
    margin-right     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-24{
    margin-bottom     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-24{
    margin-left     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-28{
    margin-top     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-28{
    margin-right     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-28{
    margin-bottom     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-28{
    margin-left     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-32{
    margin-top     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-32{
    margin-right     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-32{
    margin-bottom     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-32{
    margin-left     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-36{
    margin-top     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-36{
    margin-right     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-36{
    margin-bottom     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-36{
    margin-left     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-40{
    margin-top     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-40{
    margin-right     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-40{
    margin-bottom     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-40{
    margin-left     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-44{
    margin-top     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-44{
    margin-right     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-44{
    margin-bottom     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-44{
    margin-left     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-48{
    margin-top     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-48{
    margin-right     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-48{
    margin-bottom     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-48{
    margin-left     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-52{
    margin-top     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-52{
    margin-right     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-52{
    margin-bottom     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-52{
    margin-left     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-56{
    margin-top     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-56{
    margin-right     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-56{
    margin-bottom     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-56{
    margin-left     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-60{
    margin-top     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-60{
    margin-right     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-60{
    margin-bottom     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-60{
    margin-left     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-64{
    margin-top     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-64{
    margin-right     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-64{
    margin-bottom     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-64{
    margin-left     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-72{
    margin-top     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-72{
    margin-right     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-72{
    margin-bottom     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-72{
    margin-left     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-80{
    margin-top     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-80{
    margin-right     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-80{
    margin-bottom     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-80{
    margin-left     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-96{
    margin-top     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-96{
    margin-right     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-96{
    margin-bottom     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-96{
    margin-left     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-px{
    margin-top     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-mr-px{
    margin-right     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-mb-px{
    margin-bottom     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-ml-px{
    margin-left     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-mt-0\.5{
    margin-top     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-0\.5{
    margin-right     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-0\.5{
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-0\.5{
    margin-left     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\.5{
    margin-top     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\.5{
    margin-right     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\.5{
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\.5{
    margin-left     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\.5{
    margin-top     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\.5{
    margin-right     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\.5{
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\.5{
    margin-left     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-3\.5{
    margin-top     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-mr-3\.5{
    margin-right     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-mb-3\.5{
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-ml-3\.5{
    margin-left     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/2{
    margin-top     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/2{
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/2{
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/2{
    margin-left     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/3{
    margin-top     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/3{
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/3{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/3{
    margin-left     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\/3{
    margin-top     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\/3{
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\/3{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\/3{
    margin-left     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/4{
    margin-top     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/4{
    margin-right     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/4{
    margin-bottom     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/4{
    margin-left     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\/4{
    margin-top     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\/4{
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\/4{
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\/4{
    margin-left     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mt-3\/4{
    margin-top     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mr-3\/4{
    margin-right     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mb-3\/4{
    margin-bottom     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-ml-3\/4{
    margin-left     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/5{
    margin-top     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/5{
    margin-right     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/5{
    margin-bottom     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/5{
    margin-left     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\/5{
    margin-top     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\/5{
    margin-right     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\/5{
    margin-bottom     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\/5{
    margin-left     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-mt-3\/5{
    margin-top     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-mr-3\/5{
    margin-right     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-mb-3\/5{
    margin-bottom     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-ml-3\/5{
    margin-left     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-mt-4\/5{
    margin-top     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-mr-4\/5{
    margin-right     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-mb-4\/5{
    margin-bottom     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-ml-4\/5{
    margin-left     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/6{
    margin-top     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/6{
    margin-right     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/6{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/6{
    margin-left     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\/6{
    margin-top     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\/6{
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\/6{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\/6{
    margin-left     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-3\/6{
    margin-top     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mr-3\/6{
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mb-3\/6{
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-ml-3\/6{
    margin-left     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mt-4\/6{
    margin-top     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-4\/6{
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-4\/6{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-4\/6{
    margin-left     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-5\/6{
    margin-top     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-5\/6{
    margin-right     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-5\/6{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-5\/6{
    margin-left     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-1\/12{
    margin-top     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-1\/12{
    margin-right     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-1\/12{
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-1\/12{
    margin-left     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-2\/12{
    margin-top     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-2\/12{
    margin-right     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-2\/12{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-2\/12{
    margin-left     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-3\/12{
    margin-top     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mr-3\/12{
    margin-right     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mb-3\/12{
    margin-bottom     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-ml-3\/12{
    margin-left     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-mt-4\/12{
    margin-top     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-4\/12{
    margin-right     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-4\/12{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-4\/12{
    margin-left     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-5\/12{
    margin-top     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-5\/12{
    margin-right     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-5\/12{
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-5\/12{
    margin-left     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-6\/12{
    margin-top     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mr-6\/12{
    margin-right     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mb-6\/12{
    margin-bottom     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-ml-6\/12{
    margin-left     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-mt-7\/12{
    margin-top     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-7\/12{
    margin-right     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-7\/12{
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-7\/12{
    margin-left     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-8\/12{
    margin-top     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-8\/12{
    margin-right     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-8\/12{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-8\/12{
    margin-left     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-9\/12{
    margin-top     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mr-9\/12{
    margin-right     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mb-9\/12{
    margin-bottom     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-ml-9\/12{
    margin-left     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-mt-10\/12{
    margin-top     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mr-10\/12{
    margin-right     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mb-10\/12{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-ml-10\/12{
    margin-left     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-mt-11\/12{
    margin-top     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mr-11\/12{
    margin-right     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mb-11\/12{
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-ml-11\/12{
    margin-left     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-mt-full{
    margin-top     : -100% !important;
  }

  .group:hover .sm\:group-hover\:-mr-full{
    margin-right     : -100% !important;
  }

  .group:hover .sm\:group-hover\:-mb-full{
    margin-bottom     : -100% !important;
  }

  .group:hover .sm\:group-hover\:-ml-full{
    margin-left     : -100% !important;
  }

  .sm\:hover\:m-0:hover{
    margin     : 0 !important;
  }

  .sm\:hover\:m-1:hover{
    margin     : 0.25rem !important;
  }

  .sm\:hover\:m-2:hover{
    margin     : 0.5rem !important;
  }

  .sm\:hover\:m-3:hover{
    margin     : 0.75rem !important;
  }

  .sm\:hover\:m-4:hover{
    margin     : 1rem !important;
  }

  .sm\:hover\:m-5:hover{
    margin     : 1.25rem !important;
  }

  .sm\:hover\:m-6:hover{
    margin     : 1.5rem !important;
  }

  .sm\:hover\:m-7:hover{
    margin     : 1.75rem !important;
  }

  .sm\:hover\:m-8:hover{
    margin     : 2rem !important;
  }

  .sm\:hover\:m-9:hover{
    margin     : 2.25rem !important;
  }

  .sm\:hover\:m-10:hover{
    margin     : 2.5rem !important;
  }

  .sm\:hover\:m-11:hover{
    margin     : 2.75rem !important;
  }

  .sm\:hover\:m-12:hover{
    margin     : 3rem !important;
  }

  .sm\:hover\:m-13:hover{
    margin     : 3.25rem !important;
  }

  .sm\:hover\:m-14:hover{
    margin     : 3.5rem !important;
  }

  .sm\:hover\:m-15:hover{
    margin     : 3.75rem !important;
  }

  .sm\:hover\:m-16:hover{
    margin     : 4rem !important;
  }

  .sm\:hover\:m-20:hover{
    margin     : 5rem !important;
  }

  .sm\:hover\:m-24:hover{
    margin     : 6rem !important;
  }

  .sm\:hover\:m-28:hover{
    margin     : 7rem !important;
  }

  .sm\:hover\:m-32:hover{
    margin     : 8rem !important;
  }

  .sm\:hover\:m-36:hover{
    margin     : 9rem !important;
  }

  .sm\:hover\:m-40:hover{
    margin     : 10rem !important;
  }

  .sm\:hover\:m-44:hover{
    margin     : 11rem !important;
  }

  .sm\:hover\:m-48:hover{
    margin     : 12rem !important;
  }

  .sm\:hover\:m-52:hover{
    margin     : 13rem !important;
  }

  .sm\:hover\:m-56:hover{
    margin     : 14rem !important;
  }

  .sm\:hover\:m-60:hover{
    margin     : 15rem !important;
  }

  .sm\:hover\:m-64:hover{
    margin     : 16rem !important;
  }

  .sm\:hover\:m-72:hover{
    margin     : 18rem !important;
  }

  .sm\:hover\:m-80:hover{
    margin     : 20rem !important;
  }

  .sm\:hover\:m-96:hover{
    margin     : 24rem !important;
  }

  .sm\:hover\:m-auto:hover{
    margin     : auto !important;
  }

  .sm\:hover\:m-px:hover{
    margin     : 1px !important;
  }

  .sm\:hover\:m-0\.5:hover{
    margin     : 0.125rem !important;
  }

  .sm\:hover\:m-1\.5:hover{
    margin     : 0.375rem !important;
  }

  .sm\:hover\:m-2\.5:hover{
    margin     : 0.625rem !important;
  }

  .sm\:hover\:m-3\.5:hover{
    margin     : 0.875rem !important;
  }

  .sm\:hover\:m-1\/2:hover{
    margin     : 50% !important;
  }

  .sm\:hover\:m-1\/3:hover{
    margin     : 33.333333% !important;
  }

  .sm\:hover\:m-2\/3:hover{
    margin     : 66.666667% !important;
  }

  .sm\:hover\:m-1\/4:hover{
    margin     : 25% !important;
  }

  .sm\:hover\:m-2\/4:hover{
    margin     : 50% !important;
  }

  .sm\:hover\:m-3\/4:hover{
    margin     : 75% !important;
  }

  .sm\:hover\:m-1\/5:hover{
    margin     : 20% !important;
  }

  .sm\:hover\:m-2\/5:hover{
    margin     : 40% !important;
  }

  .sm\:hover\:m-3\/5:hover{
    margin     : 60% !important;
  }

  .sm\:hover\:m-4\/5:hover{
    margin     : 80% !important;
  }

  .sm\:hover\:m-1\/6:hover{
    margin     : 16.666667% !important;
  }

  .sm\:hover\:m-2\/6:hover{
    margin     : 33.333333% !important;
  }

  .sm\:hover\:m-3\/6:hover{
    margin     : 50% !important;
  }

  .sm\:hover\:m-4\/6:hover{
    margin     : 66.666667% !important;
  }

  .sm\:hover\:m-5\/6:hover{
    margin     : 83.333333% !important;
  }

  .sm\:hover\:m-1\/12:hover{
    margin     : 8.333333% !important;
  }

  .sm\:hover\:m-2\/12:hover{
    margin     : 16.666667% !important;
  }

  .sm\:hover\:m-3\/12:hover{
    margin     : 25% !important;
  }

  .sm\:hover\:m-4\/12:hover{
    margin     : 33.333333% !important;
  }

  .sm\:hover\:m-5\/12:hover{
    margin     : 41.666667% !important;
  }

  .sm\:hover\:m-6\/12:hover{
    margin     : 50% !important;
  }

  .sm\:hover\:m-7\/12:hover{
    margin     : 58.333333% !important;
  }

  .sm\:hover\:m-8\/12:hover{
    margin     : 66.666667% !important;
  }

  .sm\:hover\:m-9\/12:hover{
    margin     : 75% !important;
  }

  .sm\:hover\:m-10\/12:hover{
    margin     : 83.333333% !important;
  }

  .sm\:hover\:m-11\/12:hover{
    margin     : 91.666667% !important;
  }

  .sm\:hover\:m-full:hover{
    margin     : 100% !important;
  }

  .sm\:hover\:-m-1:hover{
    margin     : -0.25rem !important;
  }

  .sm\:hover\:-m-2:hover{
    margin     : -0.5rem !important;
  }

  .sm\:hover\:-m-3:hover{
    margin     : -0.75rem !important;
  }

  .sm\:hover\:-m-4:hover{
    margin     : -1rem !important;
  }

  .sm\:hover\:-m-5:hover{
    margin     : -1.25rem !important;
  }

  .sm\:hover\:-m-6:hover{
    margin     : -1.5rem !important;
  }

  .sm\:hover\:-m-7:hover{
    margin     : -1.75rem !important;
  }

  .sm\:hover\:-m-8:hover{
    margin     : -2rem !important;
  }

  .sm\:hover\:-m-9:hover{
    margin     : -2.25rem !important;
  }

  .sm\:hover\:-m-10:hover{
    margin     : -2.5rem !important;
  }

  .sm\:hover\:-m-11:hover{
    margin     : -2.75rem !important;
  }

  .sm\:hover\:-m-12:hover{
    margin     : -3rem !important;
  }

  .sm\:hover\:-m-13:hover{
    margin     : -3.25rem !important;
  }

  .sm\:hover\:-m-14:hover{
    margin     : -3.5rem !important;
  }

  .sm\:hover\:-m-15:hover{
    margin     : -3.75rem !important;
  }

  .sm\:hover\:-m-16:hover{
    margin     : -4rem !important;
  }

  .sm\:hover\:-m-20:hover{
    margin     : -5rem !important;
  }

  .sm\:hover\:-m-24:hover{
    margin     : -6rem !important;
  }

  .sm\:hover\:-m-28:hover{
    margin     : -7rem !important;
  }

  .sm\:hover\:-m-32:hover{
    margin     : -8rem !important;
  }

  .sm\:hover\:-m-36:hover{
    margin     : -9rem !important;
  }

  .sm\:hover\:-m-40:hover{
    margin     : -10rem !important;
  }

  .sm\:hover\:-m-44:hover{
    margin     : -11rem !important;
  }

  .sm\:hover\:-m-48:hover{
    margin     : -12rem !important;
  }

  .sm\:hover\:-m-52:hover{
    margin     : -13rem !important;
  }

  .sm\:hover\:-m-56:hover{
    margin     : -14rem !important;
  }

  .sm\:hover\:-m-60:hover{
    margin     : -15rem !important;
  }

  .sm\:hover\:-m-64:hover{
    margin     : -16rem !important;
  }

  .sm\:hover\:-m-72:hover{
    margin     : -18rem !important;
  }

  .sm\:hover\:-m-80:hover{
    margin     : -20rem !important;
  }

  .sm\:hover\:-m-96:hover{
    margin     : -24rem !important;
  }

  .sm\:hover\:-m-px:hover{
    margin     : -1px !important;
  }

  .sm\:hover\:-m-0\.5:hover{
    margin     : -0.125rem !important;
  }

  .sm\:hover\:-m-1\.5:hover{
    margin     : -0.375rem !important;
  }

  .sm\:hover\:-m-2\.5:hover{
    margin     : -0.625rem !important;
  }

  .sm\:hover\:-m-3\.5:hover{
    margin     : -0.875rem !important;
  }

  .sm\:hover\:-m-1\/2:hover{
    margin     : -50% !important;
  }

  .sm\:hover\:-m-1\/3:hover{
    margin     : -33.33333% !important;
  }

  .sm\:hover\:-m-2\/3:hover{
    margin     : -66.66667% !important;
  }

  .sm\:hover\:-m-1\/4:hover{
    margin     : -25% !important;
  }

  .sm\:hover\:-m-2\/4:hover{
    margin     : -50% !important;
  }

  .sm\:hover\:-m-3\/4:hover{
    margin     : -75% !important;
  }

  .sm\:hover\:-m-1\/5:hover{
    margin     : -20% !important;
  }

  .sm\:hover\:-m-2\/5:hover{
    margin     : -40% !important;
  }

  .sm\:hover\:-m-3\/5:hover{
    margin     : -60% !important;
  }

  .sm\:hover\:-m-4\/5:hover{
    margin     : -80% !important;
  }

  .sm\:hover\:-m-1\/6:hover{
    margin     : -16.66667% !important;
  }

  .sm\:hover\:-m-2\/6:hover{
    margin     : -33.33333% !important;
  }

  .sm\:hover\:-m-3\/6:hover{
    margin     : -50% !important;
  }

  .sm\:hover\:-m-4\/6:hover{
    margin     : -66.66667% !important;
  }

  .sm\:hover\:-m-5\/6:hover{
    margin     : -83.33333% !important;
  }

  .sm\:hover\:-m-1\/12:hover{
    margin     : -8.33333% !important;
  }

  .sm\:hover\:-m-2\/12:hover{
    margin     : -16.66667% !important;
  }

  .sm\:hover\:-m-3\/12:hover{
    margin     : -25% !important;
  }

  .sm\:hover\:-m-4\/12:hover{
    margin     : -33.33333% !important;
  }

  .sm\:hover\:-m-5\/12:hover{
    margin     : -41.66667% !important;
  }

  .sm\:hover\:-m-6\/12:hover{
    margin     : -50% !important;
  }

  .sm\:hover\:-m-7\/12:hover{
    margin     : -58.33333% !important;
  }

  .sm\:hover\:-m-8\/12:hover{
    margin     : -66.66667% !important;
  }

  .sm\:hover\:-m-9\/12:hover{
    margin     : -75% !important;
  }

  .sm\:hover\:-m-10\/12:hover{
    margin     : -83.33333% !important;
  }

  .sm\:hover\:-m-11\/12:hover{
    margin     : -91.66667% !important;
  }

  .sm\:hover\:-m-full:hover{
    margin     : -100% !important;
  }

  .sm\:hover\:my-0:hover{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .sm\:hover\:mx-0:hover{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .sm\:hover\:my-1:hover{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .sm\:hover\:mx-1:hover{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .sm\:hover\:my-2:hover{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .sm\:hover\:mx-2:hover{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .sm\:hover\:my-3:hover{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .sm\:hover\:mx-3:hover{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .sm\:hover\:my-4:hover{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .sm\:hover\:mx-4:hover{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .sm\:hover\:my-5:hover{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .sm\:hover\:mx-5:hover{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .sm\:hover\:my-6:hover{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .sm\:hover\:mx-6:hover{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .sm\:hover\:my-7:hover{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .sm\:hover\:mx-7:hover{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .sm\:hover\:my-8:hover{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .sm\:hover\:mx-8:hover{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .sm\:hover\:my-9:hover{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .sm\:hover\:mx-9:hover{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .sm\:hover\:my-10:hover{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .sm\:hover\:mx-10:hover{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .sm\:hover\:my-11:hover{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .sm\:hover\:mx-11:hover{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .sm\:hover\:my-12:hover{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .sm\:hover\:mx-12:hover{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .sm\:hover\:my-13:hover{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .sm\:hover\:mx-13:hover{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .sm\:hover\:my-14:hover{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .sm\:hover\:mx-14:hover{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .sm\:hover\:my-15:hover{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .sm\:hover\:mx-15:hover{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .sm\:hover\:my-16:hover{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .sm\:hover\:mx-16:hover{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .sm\:hover\:my-20:hover{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .sm\:hover\:mx-20:hover{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .sm\:hover\:my-24:hover{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .sm\:hover\:mx-24:hover{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .sm\:hover\:my-28:hover{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .sm\:hover\:mx-28:hover{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .sm\:hover\:my-32:hover{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .sm\:hover\:mx-32:hover{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .sm\:hover\:my-36:hover{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .sm\:hover\:mx-36:hover{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .sm\:hover\:my-40:hover{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .sm\:hover\:mx-40:hover{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .sm\:hover\:my-44:hover{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .sm\:hover\:mx-44:hover{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .sm\:hover\:my-48:hover{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .sm\:hover\:mx-48:hover{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .sm\:hover\:my-52:hover{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .sm\:hover\:mx-52:hover{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .sm\:hover\:my-56:hover{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .sm\:hover\:mx-56:hover{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .sm\:hover\:my-60:hover{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .sm\:hover\:mx-60:hover{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .sm\:hover\:my-64:hover{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .sm\:hover\:mx-64:hover{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .sm\:hover\:my-72:hover{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .sm\:hover\:mx-72:hover{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .sm\:hover\:my-80:hover{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .sm\:hover\:mx-80:hover{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .sm\:hover\:my-96:hover{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .sm\:hover\:mx-96:hover{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .sm\:hover\:my-auto:hover{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .sm\:hover\:mx-auto:hover{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .sm\:hover\:my-px:hover{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .sm\:hover\:mx-px:hover{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .sm\:hover\:my-0\.5:hover{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .sm\:hover\:mx-0\.5:hover{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .sm\:hover\:my-1\.5:hover{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .sm\:hover\:mx-1\.5:hover{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .sm\:hover\:my-2\.5:hover{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .sm\:hover\:mx-2\.5:hover{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .sm\:hover\:my-3\.5:hover{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .sm\:hover\:mx-3\.5:hover{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .sm\:hover\:my-1\/2:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:mx-1\/2:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:hover\:my-1\/3:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:mx-1\/3:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:my-2\/3:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:mx-2\/3:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:my-1\/4:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .sm\:hover\:mx-1\/4:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .sm\:hover\:my-2\/4:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:mx-2\/4:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:hover\:my-3\/4:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .sm\:hover\:mx-3\/4:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .sm\:hover\:my-1\/5:hover{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .sm\:hover\:mx-1\/5:hover{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .sm\:hover\:my-2\/5:hover{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .sm\:hover\:mx-2\/5:hover{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .sm\:hover\:my-3\/5:hover{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .sm\:hover\:mx-3\/5:hover{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .sm\:hover\:my-4\/5:hover{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .sm\:hover\:mx-4\/5:hover{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .sm\:hover\:my-1\/6:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .sm\:hover\:mx-1\/6:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .sm\:hover\:my-2\/6:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:mx-2\/6:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:my-3\/6:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:mx-3\/6:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:hover\:my-4\/6:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:mx-4\/6:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:my-5\/6:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .sm\:hover\:mx-5\/6:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .sm\:hover\:my-1\/12:hover{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .sm\:hover\:mx-1\/12:hover{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .sm\:hover\:my-2\/12:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .sm\:hover\:mx-2\/12:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .sm\:hover\:my-3\/12:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .sm\:hover\:mx-3\/12:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .sm\:hover\:my-4\/12:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:mx-4\/12:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:my-5\/12:hover{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .sm\:hover\:mx-5\/12:hover{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .sm\:hover\:my-6\/12:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:mx-6\/12:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:hover\:my-7\/12:hover{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .sm\:hover\:mx-7\/12:hover{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .sm\:hover\:my-8\/12:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:mx-8\/12:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:my-9\/12:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .sm\:hover\:mx-9\/12:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .sm\:hover\:my-10\/12:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .sm\:hover\:mx-10\/12:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .sm\:hover\:my-11\/12:hover{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .sm\:hover\:mx-11\/12:hover{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .sm\:hover\:my-full:hover{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .sm\:hover\:mx-full:hover{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .sm\:hover\:-my-1:hover{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .sm\:hover\:-mx-1:hover{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .sm\:hover\:-my-2:hover{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .sm\:hover\:-mx-2:hover{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .sm\:hover\:-my-3:hover{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .sm\:hover\:-mx-3:hover{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .sm\:hover\:-my-4:hover{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .sm\:hover\:-mx-4:hover{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .sm\:hover\:-my-5:hover{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .sm\:hover\:-mx-5:hover{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .sm\:hover\:-my-6:hover{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .sm\:hover\:-mx-6:hover{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .sm\:hover\:-my-7:hover{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .sm\:hover\:-mx-7:hover{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .sm\:hover\:-my-8:hover{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .sm\:hover\:-mx-8:hover{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .sm\:hover\:-my-9:hover{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .sm\:hover\:-mx-9:hover{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .sm\:hover\:-my-10:hover{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .sm\:hover\:-mx-10:hover{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .sm\:hover\:-my-11:hover{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .sm\:hover\:-mx-11:hover{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .sm\:hover\:-my-12:hover{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .sm\:hover\:-mx-12:hover{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .sm\:hover\:-my-13:hover{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .sm\:hover\:-mx-13:hover{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .sm\:hover\:-my-14:hover{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .sm\:hover\:-mx-14:hover{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .sm\:hover\:-my-15:hover{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .sm\:hover\:-mx-15:hover{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .sm\:hover\:-my-16:hover{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .sm\:hover\:-mx-16:hover{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .sm\:hover\:-my-20:hover{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .sm\:hover\:-mx-20:hover{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .sm\:hover\:-my-24:hover{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .sm\:hover\:-mx-24:hover{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .sm\:hover\:-my-28:hover{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .sm\:hover\:-mx-28:hover{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .sm\:hover\:-my-32:hover{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .sm\:hover\:-mx-32:hover{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .sm\:hover\:-my-36:hover{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .sm\:hover\:-mx-36:hover{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .sm\:hover\:-my-40:hover{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .sm\:hover\:-mx-40:hover{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .sm\:hover\:-my-44:hover{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .sm\:hover\:-mx-44:hover{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .sm\:hover\:-my-48:hover{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .sm\:hover\:-mx-48:hover{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .sm\:hover\:-my-52:hover{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .sm\:hover\:-mx-52:hover{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .sm\:hover\:-my-56:hover{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .sm\:hover\:-mx-56:hover{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .sm\:hover\:-my-60:hover{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .sm\:hover\:-mx-60:hover{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .sm\:hover\:-my-64:hover{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .sm\:hover\:-mx-64:hover{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .sm\:hover\:-my-72:hover{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .sm\:hover\:-mx-72:hover{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .sm\:hover\:-my-80:hover{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .sm\:hover\:-mx-80:hover{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .sm\:hover\:-my-96:hover{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .sm\:hover\:-mx-96:hover{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .sm\:hover\:-my-px:hover{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .sm\:hover\:-mx-px:hover{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .sm\:hover\:-my-0\.5:hover{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .sm\:hover\:-mx-0\.5:hover{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .sm\:hover\:-my-1\.5:hover{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .sm\:hover\:-mx-1\.5:hover{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .sm\:hover\:-my-2\.5:hover{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .sm\:hover\:-mx-2\.5:hover{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .sm\:hover\:-my-3\.5:hover{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .sm\:hover\:-mx-3\.5:hover{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .sm\:hover\:-my-1\/2:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-mx-1\/2:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:hover\:-my-1\/3:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-mx-1\/3:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-my-2\/3:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-mx-2\/3:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-my-1\/4:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .sm\:hover\:-mx-1\/4:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .sm\:hover\:-my-2\/4:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-mx-2\/4:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:hover\:-my-3\/4:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .sm\:hover\:-mx-3\/4:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .sm\:hover\:-my-1\/5:hover{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .sm\:hover\:-mx-1\/5:hover{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .sm\:hover\:-my-2\/5:hover{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .sm\:hover\:-mx-2\/5:hover{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .sm\:hover\:-my-3\/5:hover{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .sm\:hover\:-mx-3\/5:hover{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .sm\:hover\:-my-4\/5:hover{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .sm\:hover\:-mx-4\/5:hover{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .sm\:hover\:-my-1\/6:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .sm\:hover\:-mx-1\/6:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .sm\:hover\:-my-2\/6:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-mx-2\/6:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-my-3\/6:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-mx-3\/6:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:hover\:-my-4\/6:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-mx-4\/6:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-my-5\/6:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .sm\:hover\:-mx-5\/6:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .sm\:hover\:-my-1\/12:hover{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .sm\:hover\:-mx-1\/12:hover{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .sm\:hover\:-my-2\/12:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .sm\:hover\:-mx-2\/12:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .sm\:hover\:-my-3\/12:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .sm\:hover\:-mx-3\/12:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .sm\:hover\:-my-4\/12:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-mx-4\/12:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-my-5\/12:hover{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .sm\:hover\:-mx-5\/12:hover{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .sm\:hover\:-my-6\/12:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-mx-6\/12:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:hover\:-my-7\/12:hover{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .sm\:hover\:-mx-7\/12:hover{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .sm\:hover\:-my-8\/12:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-mx-8\/12:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-my-9\/12:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .sm\:hover\:-mx-9\/12:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .sm\:hover\:-my-10\/12:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .sm\:hover\:-mx-10\/12:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .sm\:hover\:-my-11\/12:hover{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .sm\:hover\:-mx-11\/12:hover{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .sm\:hover\:-my-full:hover{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .sm\:hover\:-mx-full:hover{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .sm\:hover\:mt-0:hover{
    margin-top     : 0 !important;
  }

  .sm\:hover\:mr-0:hover{
    margin-right     : 0 !important;
  }

  .sm\:hover\:mb-0:hover{
    margin-bottom     : 0 !important;
  }

  .sm\:hover\:ml-0:hover{
    margin-left     : 0 !important;
  }

  .sm\:hover\:mt-1:hover{
    margin-top     : 0.25rem !important;
  }

  .sm\:hover\:mr-1:hover{
    margin-right     : 0.25rem !important;
  }

  .sm\:hover\:mb-1:hover{
    margin-bottom     : 0.25rem !important;
  }

  .sm\:hover\:ml-1:hover{
    margin-left     : 0.25rem !important;
  }

  .sm\:hover\:mt-2:hover{
    margin-top     : 0.5rem !important;
  }

  .sm\:hover\:mr-2:hover{
    margin-right     : 0.5rem !important;
  }

  .sm\:hover\:mb-2:hover{
    margin-bottom     : 0.5rem !important;
  }

  .sm\:hover\:ml-2:hover{
    margin-left     : 0.5rem !important;
  }

  .sm\:hover\:mt-3:hover{
    margin-top     : 0.75rem !important;
  }

  .sm\:hover\:mr-3:hover{
    margin-right     : 0.75rem !important;
  }

  .sm\:hover\:mb-3:hover{
    margin-bottom     : 0.75rem !important;
  }

  .sm\:hover\:ml-3:hover{
    margin-left     : 0.75rem !important;
  }

  .sm\:hover\:mt-4:hover{
    margin-top     : 1rem !important;
  }

  .sm\:hover\:mr-4:hover{
    margin-right     : 1rem !important;
  }

  .sm\:hover\:mb-4:hover{
    margin-bottom     : 1rem !important;
  }

  .sm\:hover\:ml-4:hover{
    margin-left     : 1rem !important;
  }

  .sm\:hover\:mt-5:hover{
    margin-top     : 1.25rem !important;
  }

  .sm\:hover\:mr-5:hover{
    margin-right     : 1.25rem !important;
  }

  .sm\:hover\:mb-5:hover{
    margin-bottom     : 1.25rem !important;
  }

  .sm\:hover\:ml-5:hover{
    margin-left     : 1.25rem !important;
  }

  .sm\:hover\:mt-6:hover{
    margin-top     : 1.5rem !important;
  }

  .sm\:hover\:mr-6:hover{
    margin-right     : 1.5rem !important;
  }

  .sm\:hover\:mb-6:hover{
    margin-bottom     : 1.5rem !important;
  }

  .sm\:hover\:ml-6:hover{
    margin-left     : 1.5rem !important;
  }

  .sm\:hover\:mt-7:hover{
    margin-top     : 1.75rem !important;
  }

  .sm\:hover\:mr-7:hover{
    margin-right     : 1.75rem !important;
  }

  .sm\:hover\:mb-7:hover{
    margin-bottom     : 1.75rem !important;
  }

  .sm\:hover\:ml-7:hover{
    margin-left     : 1.75rem !important;
  }

  .sm\:hover\:mt-8:hover{
    margin-top     : 2rem !important;
  }

  .sm\:hover\:mr-8:hover{
    margin-right     : 2rem !important;
  }

  .sm\:hover\:mb-8:hover{
    margin-bottom     : 2rem !important;
  }

  .sm\:hover\:ml-8:hover{
    margin-left     : 2rem !important;
  }

  .sm\:hover\:mt-9:hover{
    margin-top     : 2.25rem !important;
  }

  .sm\:hover\:mr-9:hover{
    margin-right     : 2.25rem !important;
  }

  .sm\:hover\:mb-9:hover{
    margin-bottom     : 2.25rem !important;
  }

  .sm\:hover\:ml-9:hover{
    margin-left     : 2.25rem !important;
  }

  .sm\:hover\:mt-10:hover{
    margin-top     : 2.5rem !important;
  }

  .sm\:hover\:mr-10:hover{
    margin-right     : 2.5rem !important;
  }

  .sm\:hover\:mb-10:hover{
    margin-bottom     : 2.5rem !important;
  }

  .sm\:hover\:ml-10:hover{
    margin-left     : 2.5rem !important;
  }

  .sm\:hover\:mt-11:hover{
    margin-top     : 2.75rem !important;
  }

  .sm\:hover\:mr-11:hover{
    margin-right     : 2.75rem !important;
  }

  .sm\:hover\:mb-11:hover{
    margin-bottom     : 2.75rem !important;
  }

  .sm\:hover\:ml-11:hover{
    margin-left     : 2.75rem !important;
  }

  .sm\:hover\:mt-12:hover{
    margin-top     : 3rem !important;
  }

  .sm\:hover\:mr-12:hover{
    margin-right     : 3rem !important;
  }

  .sm\:hover\:mb-12:hover{
    margin-bottom     : 3rem !important;
  }

  .sm\:hover\:ml-12:hover{
    margin-left     : 3rem !important;
  }

  .sm\:hover\:mt-13:hover{
    margin-top     : 3.25rem !important;
  }

  .sm\:hover\:mr-13:hover{
    margin-right     : 3.25rem !important;
  }

  .sm\:hover\:mb-13:hover{
    margin-bottom     : 3.25rem !important;
  }

  .sm\:hover\:ml-13:hover{
    margin-left     : 3.25rem !important;
  }

  .sm\:hover\:mt-14:hover{
    margin-top     : 3.5rem !important;
  }

  .sm\:hover\:mr-14:hover{
    margin-right     : 3.5rem !important;
  }

  .sm\:hover\:mb-14:hover{
    margin-bottom     : 3.5rem !important;
  }

  .sm\:hover\:ml-14:hover{
    margin-left     : 3.5rem !important;
  }

  .sm\:hover\:mt-15:hover{
    margin-top     : 3.75rem !important;
  }

  .sm\:hover\:mr-15:hover{
    margin-right     : 3.75rem !important;
  }

  .sm\:hover\:mb-15:hover{
    margin-bottom     : 3.75rem !important;
  }

  .sm\:hover\:ml-15:hover{
    margin-left     : 3.75rem !important;
  }

  .sm\:hover\:mt-16:hover{
    margin-top     : 4rem !important;
  }

  .sm\:hover\:mr-16:hover{
    margin-right     : 4rem !important;
  }

  .sm\:hover\:mb-16:hover{
    margin-bottom     : 4rem !important;
  }

  .sm\:hover\:ml-16:hover{
    margin-left     : 4rem !important;
  }

  .sm\:hover\:mt-20:hover{
    margin-top     : 5rem !important;
  }

  .sm\:hover\:mr-20:hover{
    margin-right     : 5rem !important;
  }

  .sm\:hover\:mb-20:hover{
    margin-bottom     : 5rem !important;
  }

  .sm\:hover\:ml-20:hover{
    margin-left     : 5rem !important;
  }

  .sm\:hover\:mt-24:hover{
    margin-top     : 6rem !important;
  }

  .sm\:hover\:mr-24:hover{
    margin-right     : 6rem !important;
  }

  .sm\:hover\:mb-24:hover{
    margin-bottom     : 6rem !important;
  }

  .sm\:hover\:ml-24:hover{
    margin-left     : 6rem !important;
  }

  .sm\:hover\:mt-28:hover{
    margin-top     : 7rem !important;
  }

  .sm\:hover\:mr-28:hover{
    margin-right     : 7rem !important;
  }

  .sm\:hover\:mb-28:hover{
    margin-bottom     : 7rem !important;
  }

  .sm\:hover\:ml-28:hover{
    margin-left     : 7rem !important;
  }

  .sm\:hover\:mt-32:hover{
    margin-top     : 8rem !important;
  }

  .sm\:hover\:mr-32:hover{
    margin-right     : 8rem !important;
  }

  .sm\:hover\:mb-32:hover{
    margin-bottom     : 8rem !important;
  }

  .sm\:hover\:ml-32:hover{
    margin-left     : 8rem !important;
  }

  .sm\:hover\:mt-36:hover{
    margin-top     : 9rem !important;
  }

  .sm\:hover\:mr-36:hover{
    margin-right     : 9rem !important;
  }

  .sm\:hover\:mb-36:hover{
    margin-bottom     : 9rem !important;
  }

  .sm\:hover\:ml-36:hover{
    margin-left     : 9rem !important;
  }

  .sm\:hover\:mt-40:hover{
    margin-top     : 10rem !important;
  }

  .sm\:hover\:mr-40:hover{
    margin-right     : 10rem !important;
  }

  .sm\:hover\:mb-40:hover{
    margin-bottom     : 10rem !important;
  }

  .sm\:hover\:ml-40:hover{
    margin-left     : 10rem !important;
  }

  .sm\:hover\:mt-44:hover{
    margin-top     : 11rem !important;
  }

  .sm\:hover\:mr-44:hover{
    margin-right     : 11rem !important;
  }

  .sm\:hover\:mb-44:hover{
    margin-bottom     : 11rem !important;
  }

  .sm\:hover\:ml-44:hover{
    margin-left     : 11rem !important;
  }

  .sm\:hover\:mt-48:hover{
    margin-top     : 12rem !important;
  }

  .sm\:hover\:mr-48:hover{
    margin-right     : 12rem !important;
  }

  .sm\:hover\:mb-48:hover{
    margin-bottom     : 12rem !important;
  }

  .sm\:hover\:ml-48:hover{
    margin-left     : 12rem !important;
  }

  .sm\:hover\:mt-52:hover{
    margin-top     : 13rem !important;
  }

  .sm\:hover\:mr-52:hover{
    margin-right     : 13rem !important;
  }

  .sm\:hover\:mb-52:hover{
    margin-bottom     : 13rem !important;
  }

  .sm\:hover\:ml-52:hover{
    margin-left     : 13rem !important;
  }

  .sm\:hover\:mt-56:hover{
    margin-top     : 14rem !important;
  }

  .sm\:hover\:mr-56:hover{
    margin-right     : 14rem !important;
  }

  .sm\:hover\:mb-56:hover{
    margin-bottom     : 14rem !important;
  }

  .sm\:hover\:ml-56:hover{
    margin-left     : 14rem !important;
  }

  .sm\:hover\:mt-60:hover{
    margin-top     : 15rem !important;
  }

  .sm\:hover\:mr-60:hover{
    margin-right     : 15rem !important;
  }

  .sm\:hover\:mb-60:hover{
    margin-bottom     : 15rem !important;
  }

  .sm\:hover\:ml-60:hover{
    margin-left     : 15rem !important;
  }

  .sm\:hover\:mt-64:hover{
    margin-top     : 16rem !important;
  }

  .sm\:hover\:mr-64:hover{
    margin-right     : 16rem !important;
  }

  .sm\:hover\:mb-64:hover{
    margin-bottom     : 16rem !important;
  }

  .sm\:hover\:ml-64:hover{
    margin-left     : 16rem !important;
  }

  .sm\:hover\:mt-72:hover{
    margin-top     : 18rem !important;
  }

  .sm\:hover\:mr-72:hover{
    margin-right     : 18rem !important;
  }

  .sm\:hover\:mb-72:hover{
    margin-bottom     : 18rem !important;
  }

  .sm\:hover\:ml-72:hover{
    margin-left     : 18rem !important;
  }

  .sm\:hover\:mt-80:hover{
    margin-top     : 20rem !important;
  }

  .sm\:hover\:mr-80:hover{
    margin-right     : 20rem !important;
  }

  .sm\:hover\:mb-80:hover{
    margin-bottom     : 20rem !important;
  }

  .sm\:hover\:ml-80:hover{
    margin-left     : 20rem !important;
  }

  .sm\:hover\:mt-96:hover{
    margin-top     : 24rem !important;
  }

  .sm\:hover\:mr-96:hover{
    margin-right     : 24rem !important;
  }

  .sm\:hover\:mb-96:hover{
    margin-bottom     : 24rem !important;
  }

  .sm\:hover\:ml-96:hover{
    margin-left     : 24rem !important;
  }

  .sm\:hover\:mt-auto:hover{
    margin-top     : auto !important;
  }

  .sm\:hover\:mr-auto:hover{
    margin-right     : auto !important;
  }

  .sm\:hover\:mb-auto:hover{
    margin-bottom     : auto !important;
  }

  .sm\:hover\:ml-auto:hover{
    margin-left     : auto !important;
  }

  .sm\:hover\:mt-px:hover{
    margin-top     : 1px !important;
  }

  .sm\:hover\:mr-px:hover{
    margin-right     : 1px !important;
  }

  .sm\:hover\:mb-px:hover{
    margin-bottom     : 1px !important;
  }

  .sm\:hover\:ml-px:hover{
    margin-left     : 1px !important;
  }

  .sm\:hover\:mt-0\.5:hover{
    margin-top     : 0.125rem !important;
  }

  .sm\:hover\:mr-0\.5:hover{
    margin-right     : 0.125rem !important;
  }

  .sm\:hover\:mb-0\.5:hover{
    margin-bottom     : 0.125rem !important;
  }

  .sm\:hover\:ml-0\.5:hover{
    margin-left     : 0.125rem !important;
  }

  .sm\:hover\:mt-1\.5:hover{
    margin-top     : 0.375rem !important;
  }

  .sm\:hover\:mr-1\.5:hover{
    margin-right     : 0.375rem !important;
  }

  .sm\:hover\:mb-1\.5:hover{
    margin-bottom     : 0.375rem !important;
  }

  .sm\:hover\:ml-1\.5:hover{
    margin-left     : 0.375rem !important;
  }

  .sm\:hover\:mt-2\.5:hover{
    margin-top     : 0.625rem !important;
  }

  .sm\:hover\:mr-2\.5:hover{
    margin-right     : 0.625rem !important;
  }

  .sm\:hover\:mb-2\.5:hover{
    margin-bottom     : 0.625rem !important;
  }

  .sm\:hover\:ml-2\.5:hover{
    margin-left     : 0.625rem !important;
  }

  .sm\:hover\:mt-3\.5:hover{
    margin-top     : 0.875rem !important;
  }

  .sm\:hover\:mr-3\.5:hover{
    margin-right     : 0.875rem !important;
  }

  .sm\:hover\:mb-3\.5:hover{
    margin-bottom     : 0.875rem !important;
  }

  .sm\:hover\:ml-3\.5:hover{
    margin-left     : 0.875rem !important;
  }

  .sm\:hover\:mt-1\/2:hover{
    margin-top     : 50% !important;
  }

  .sm\:hover\:mr-1\/2:hover{
    margin-right     : 50% !important;
  }

  .sm\:hover\:mb-1\/2:hover{
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:ml-1\/2:hover{
    margin-left     : 50% !important;
  }

  .sm\:hover\:mt-1\/3:hover{
    margin-top     : 33.333333% !important;
  }

  .sm\:hover\:mr-1\/3:hover{
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:mb-1\/3:hover{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:ml-1\/3:hover{
    margin-left     : 33.333333% !important;
  }

  .sm\:hover\:mt-2\/3:hover{
    margin-top     : 66.666667% !important;
  }

  .sm\:hover\:mr-2\/3:hover{
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:mb-2\/3:hover{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:ml-2\/3:hover{
    margin-left     : 66.666667% !important;
  }

  .sm\:hover\:mt-1\/4:hover{
    margin-top     : 25% !important;
  }

  .sm\:hover\:mr-1\/4:hover{
    margin-right     : 25% !important;
  }

  .sm\:hover\:mb-1\/4:hover{
    margin-bottom     : 25% !important;
  }

  .sm\:hover\:ml-1\/4:hover{
    margin-left     : 25% !important;
  }

  .sm\:hover\:mt-2\/4:hover{
    margin-top     : 50% !important;
  }

  .sm\:hover\:mr-2\/4:hover{
    margin-right     : 50% !important;
  }

  .sm\:hover\:mb-2\/4:hover{
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:ml-2\/4:hover{
    margin-left     : 50% !important;
  }

  .sm\:hover\:mt-3\/4:hover{
    margin-top     : 75% !important;
  }

  .sm\:hover\:mr-3\/4:hover{
    margin-right     : 75% !important;
  }

  .sm\:hover\:mb-3\/4:hover{
    margin-bottom     : 75% !important;
  }

  .sm\:hover\:ml-3\/4:hover{
    margin-left     : 75% !important;
  }

  .sm\:hover\:mt-1\/5:hover{
    margin-top     : 20% !important;
  }

  .sm\:hover\:mr-1\/5:hover{
    margin-right     : 20% !important;
  }

  .sm\:hover\:mb-1\/5:hover{
    margin-bottom     : 20% !important;
  }

  .sm\:hover\:ml-1\/5:hover{
    margin-left     : 20% !important;
  }

  .sm\:hover\:mt-2\/5:hover{
    margin-top     : 40% !important;
  }

  .sm\:hover\:mr-2\/5:hover{
    margin-right     : 40% !important;
  }

  .sm\:hover\:mb-2\/5:hover{
    margin-bottom     : 40% !important;
  }

  .sm\:hover\:ml-2\/5:hover{
    margin-left     : 40% !important;
  }

  .sm\:hover\:mt-3\/5:hover{
    margin-top     : 60% !important;
  }

  .sm\:hover\:mr-3\/5:hover{
    margin-right     : 60% !important;
  }

  .sm\:hover\:mb-3\/5:hover{
    margin-bottom     : 60% !important;
  }

  .sm\:hover\:ml-3\/5:hover{
    margin-left     : 60% !important;
  }

  .sm\:hover\:mt-4\/5:hover{
    margin-top     : 80% !important;
  }

  .sm\:hover\:mr-4\/5:hover{
    margin-right     : 80% !important;
  }

  .sm\:hover\:mb-4\/5:hover{
    margin-bottom     : 80% !important;
  }

  .sm\:hover\:ml-4\/5:hover{
    margin-left     : 80% !important;
  }

  .sm\:hover\:mt-1\/6:hover{
    margin-top     : 16.666667% !important;
  }

  .sm\:hover\:mr-1\/6:hover{
    margin-right     : 16.666667% !important;
  }

  .sm\:hover\:mb-1\/6:hover{
    margin-bottom     : 16.666667% !important;
  }

  .sm\:hover\:ml-1\/6:hover{
    margin-left     : 16.666667% !important;
  }

  .sm\:hover\:mt-2\/6:hover{
    margin-top     : 33.333333% !important;
  }

  .sm\:hover\:mr-2\/6:hover{
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:mb-2\/6:hover{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:ml-2\/6:hover{
    margin-left     : 33.333333% !important;
  }

  .sm\:hover\:mt-3\/6:hover{
    margin-top     : 50% !important;
  }

  .sm\:hover\:mr-3\/6:hover{
    margin-right     : 50% !important;
  }

  .sm\:hover\:mb-3\/6:hover{
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:ml-3\/6:hover{
    margin-left     : 50% !important;
  }

  .sm\:hover\:mt-4\/6:hover{
    margin-top     : 66.666667% !important;
  }

  .sm\:hover\:mr-4\/6:hover{
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:mb-4\/6:hover{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:ml-4\/6:hover{
    margin-left     : 66.666667% !important;
  }

  .sm\:hover\:mt-5\/6:hover{
    margin-top     : 83.333333% !important;
  }

  .sm\:hover\:mr-5\/6:hover{
    margin-right     : 83.333333% !important;
  }

  .sm\:hover\:mb-5\/6:hover{
    margin-bottom     : 83.333333% !important;
  }

  .sm\:hover\:ml-5\/6:hover{
    margin-left     : 83.333333% !important;
  }

  .sm\:hover\:mt-1\/12:hover{
    margin-top     : 8.333333% !important;
  }

  .sm\:hover\:mr-1\/12:hover{
    margin-right     : 8.333333% !important;
  }

  .sm\:hover\:mb-1\/12:hover{
    margin-bottom     : 8.333333% !important;
  }

  .sm\:hover\:ml-1\/12:hover{
    margin-left     : 8.333333% !important;
  }

  .sm\:hover\:mt-2\/12:hover{
    margin-top     : 16.666667% !important;
  }

  .sm\:hover\:mr-2\/12:hover{
    margin-right     : 16.666667% !important;
  }

  .sm\:hover\:mb-2\/12:hover{
    margin-bottom     : 16.666667% !important;
  }

  .sm\:hover\:ml-2\/12:hover{
    margin-left     : 16.666667% !important;
  }

  .sm\:hover\:mt-3\/12:hover{
    margin-top     : 25% !important;
  }

  .sm\:hover\:mr-3\/12:hover{
    margin-right     : 25% !important;
  }

  .sm\:hover\:mb-3\/12:hover{
    margin-bottom     : 25% !important;
  }

  .sm\:hover\:ml-3\/12:hover{
    margin-left     : 25% !important;
  }

  .sm\:hover\:mt-4\/12:hover{
    margin-top     : 33.333333% !important;
  }

  .sm\:hover\:mr-4\/12:hover{
    margin-right     : 33.333333% !important;
  }

  .sm\:hover\:mb-4\/12:hover{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:hover\:ml-4\/12:hover{
    margin-left     : 33.333333% !important;
  }

  .sm\:hover\:mt-5\/12:hover{
    margin-top     : 41.666667% !important;
  }

  .sm\:hover\:mr-5\/12:hover{
    margin-right     : 41.666667% !important;
  }

  .sm\:hover\:mb-5\/12:hover{
    margin-bottom     : 41.666667% !important;
  }

  .sm\:hover\:ml-5\/12:hover{
    margin-left     : 41.666667% !important;
  }

  .sm\:hover\:mt-6\/12:hover{
    margin-top     : 50% !important;
  }

  .sm\:hover\:mr-6\/12:hover{
    margin-right     : 50% !important;
  }

  .sm\:hover\:mb-6\/12:hover{
    margin-bottom     : 50% !important;
  }

  .sm\:hover\:ml-6\/12:hover{
    margin-left     : 50% !important;
  }

  .sm\:hover\:mt-7\/12:hover{
    margin-top     : 58.333333% !important;
  }

  .sm\:hover\:mr-7\/12:hover{
    margin-right     : 58.333333% !important;
  }

  .sm\:hover\:mb-7\/12:hover{
    margin-bottom     : 58.333333% !important;
  }

  .sm\:hover\:ml-7\/12:hover{
    margin-left     : 58.333333% !important;
  }

  .sm\:hover\:mt-8\/12:hover{
    margin-top     : 66.666667% !important;
  }

  .sm\:hover\:mr-8\/12:hover{
    margin-right     : 66.666667% !important;
  }

  .sm\:hover\:mb-8\/12:hover{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:hover\:ml-8\/12:hover{
    margin-left     : 66.666667% !important;
  }

  .sm\:hover\:mt-9\/12:hover{
    margin-top     : 75% !important;
  }

  .sm\:hover\:mr-9\/12:hover{
    margin-right     : 75% !important;
  }

  .sm\:hover\:mb-9\/12:hover{
    margin-bottom     : 75% !important;
  }

  .sm\:hover\:ml-9\/12:hover{
    margin-left     : 75% !important;
  }

  .sm\:hover\:mt-10\/12:hover{
    margin-top     : 83.333333% !important;
  }

  .sm\:hover\:mr-10\/12:hover{
    margin-right     : 83.333333% !important;
  }

  .sm\:hover\:mb-10\/12:hover{
    margin-bottom     : 83.333333% !important;
  }

  .sm\:hover\:ml-10\/12:hover{
    margin-left     : 83.333333% !important;
  }

  .sm\:hover\:mt-11\/12:hover{
    margin-top     : 91.666667% !important;
  }

  .sm\:hover\:mr-11\/12:hover{
    margin-right     : 91.666667% !important;
  }

  .sm\:hover\:mb-11\/12:hover{
    margin-bottom     : 91.666667% !important;
  }

  .sm\:hover\:ml-11\/12:hover{
    margin-left     : 91.666667% !important;
  }

  .sm\:hover\:mt-full:hover{
    margin-top     : 100% !important;
  }

  .sm\:hover\:mr-full:hover{
    margin-right     : 100% !important;
  }

  .sm\:hover\:mb-full:hover{
    margin-bottom     : 100% !important;
  }

  .sm\:hover\:ml-full:hover{
    margin-left     : 100% !important;
  }

  .sm\:hover\:-mt-1:hover{
    margin-top     : -0.25rem !important;
  }

  .sm\:hover\:-mr-1:hover{
    margin-right     : -0.25rem !important;
  }

  .sm\:hover\:-mb-1:hover{
    margin-bottom     : -0.25rem !important;
  }

  .sm\:hover\:-ml-1:hover{
    margin-left     : -0.25rem !important;
  }

  .sm\:hover\:-mt-2:hover{
    margin-top     : -0.5rem !important;
  }

  .sm\:hover\:-mr-2:hover{
    margin-right     : -0.5rem !important;
  }

  .sm\:hover\:-mb-2:hover{
    margin-bottom     : -0.5rem !important;
  }

  .sm\:hover\:-ml-2:hover{
    margin-left     : -0.5rem !important;
  }

  .sm\:hover\:-mt-3:hover{
    margin-top     : -0.75rem !important;
  }

  .sm\:hover\:-mr-3:hover{
    margin-right     : -0.75rem !important;
  }

  .sm\:hover\:-mb-3:hover{
    margin-bottom     : -0.75rem !important;
  }

  .sm\:hover\:-ml-3:hover{
    margin-left     : -0.75rem !important;
  }

  .sm\:hover\:-mt-4:hover{
    margin-top     : -1rem !important;
  }

  .sm\:hover\:-mr-4:hover{
    margin-right     : -1rem !important;
  }

  .sm\:hover\:-mb-4:hover{
    margin-bottom     : -1rem !important;
  }

  .sm\:hover\:-ml-4:hover{
    margin-left     : -1rem !important;
  }

  .sm\:hover\:-mt-5:hover{
    margin-top     : -1.25rem !important;
  }

  .sm\:hover\:-mr-5:hover{
    margin-right     : -1.25rem !important;
  }

  .sm\:hover\:-mb-5:hover{
    margin-bottom     : -1.25rem !important;
  }

  .sm\:hover\:-ml-5:hover{
    margin-left     : -1.25rem !important;
  }

  .sm\:hover\:-mt-6:hover{
    margin-top     : -1.5rem !important;
  }

  .sm\:hover\:-mr-6:hover{
    margin-right     : -1.5rem !important;
  }

  .sm\:hover\:-mb-6:hover{
    margin-bottom     : -1.5rem !important;
  }

  .sm\:hover\:-ml-6:hover{
    margin-left     : -1.5rem !important;
  }

  .sm\:hover\:-mt-7:hover{
    margin-top     : -1.75rem !important;
  }

  .sm\:hover\:-mr-7:hover{
    margin-right     : -1.75rem !important;
  }

  .sm\:hover\:-mb-7:hover{
    margin-bottom     : -1.75rem !important;
  }

  .sm\:hover\:-ml-7:hover{
    margin-left     : -1.75rem !important;
  }

  .sm\:hover\:-mt-8:hover{
    margin-top     : -2rem !important;
  }

  .sm\:hover\:-mr-8:hover{
    margin-right     : -2rem !important;
  }

  .sm\:hover\:-mb-8:hover{
    margin-bottom     : -2rem !important;
  }

  .sm\:hover\:-ml-8:hover{
    margin-left     : -2rem !important;
  }

  .sm\:hover\:-mt-9:hover{
    margin-top     : -2.25rem !important;
  }

  .sm\:hover\:-mr-9:hover{
    margin-right     : -2.25rem !important;
  }

  .sm\:hover\:-mb-9:hover{
    margin-bottom     : -2.25rem !important;
  }

  .sm\:hover\:-ml-9:hover{
    margin-left     : -2.25rem !important;
  }

  .sm\:hover\:-mt-10:hover{
    margin-top     : -2.5rem !important;
  }

  .sm\:hover\:-mr-10:hover{
    margin-right     : -2.5rem !important;
  }

  .sm\:hover\:-mb-10:hover{
    margin-bottom     : -2.5rem !important;
  }

  .sm\:hover\:-ml-10:hover{
    margin-left     : -2.5rem !important;
  }

  .sm\:hover\:-mt-11:hover{
    margin-top     : -2.75rem !important;
  }

  .sm\:hover\:-mr-11:hover{
    margin-right     : -2.75rem !important;
  }

  .sm\:hover\:-mb-11:hover{
    margin-bottom     : -2.75rem !important;
  }

  .sm\:hover\:-ml-11:hover{
    margin-left     : -2.75rem !important;
  }

  .sm\:hover\:-mt-12:hover{
    margin-top     : -3rem !important;
  }

  .sm\:hover\:-mr-12:hover{
    margin-right     : -3rem !important;
  }

  .sm\:hover\:-mb-12:hover{
    margin-bottom     : -3rem !important;
  }

  .sm\:hover\:-ml-12:hover{
    margin-left     : -3rem !important;
  }

  .sm\:hover\:-mt-13:hover{
    margin-top     : -3.25rem !important;
  }

  .sm\:hover\:-mr-13:hover{
    margin-right     : -3.25rem !important;
  }

  .sm\:hover\:-mb-13:hover{
    margin-bottom     : -3.25rem !important;
  }

  .sm\:hover\:-ml-13:hover{
    margin-left     : -3.25rem !important;
  }

  .sm\:hover\:-mt-14:hover{
    margin-top     : -3.5rem !important;
  }

  .sm\:hover\:-mr-14:hover{
    margin-right     : -3.5rem !important;
  }

  .sm\:hover\:-mb-14:hover{
    margin-bottom     : -3.5rem !important;
  }

  .sm\:hover\:-ml-14:hover{
    margin-left     : -3.5rem !important;
  }

  .sm\:hover\:-mt-15:hover{
    margin-top     : -3.75rem !important;
  }

  .sm\:hover\:-mr-15:hover{
    margin-right     : -3.75rem !important;
  }

  .sm\:hover\:-mb-15:hover{
    margin-bottom     : -3.75rem !important;
  }

  .sm\:hover\:-ml-15:hover{
    margin-left     : -3.75rem !important;
  }

  .sm\:hover\:-mt-16:hover{
    margin-top     : -4rem !important;
  }

  .sm\:hover\:-mr-16:hover{
    margin-right     : -4rem !important;
  }

  .sm\:hover\:-mb-16:hover{
    margin-bottom     : -4rem !important;
  }

  .sm\:hover\:-ml-16:hover{
    margin-left     : -4rem !important;
  }

  .sm\:hover\:-mt-20:hover{
    margin-top     : -5rem !important;
  }

  .sm\:hover\:-mr-20:hover{
    margin-right     : -5rem !important;
  }

  .sm\:hover\:-mb-20:hover{
    margin-bottom     : -5rem !important;
  }

  .sm\:hover\:-ml-20:hover{
    margin-left     : -5rem !important;
  }

  .sm\:hover\:-mt-24:hover{
    margin-top     : -6rem !important;
  }

  .sm\:hover\:-mr-24:hover{
    margin-right     : -6rem !important;
  }

  .sm\:hover\:-mb-24:hover{
    margin-bottom     : -6rem !important;
  }

  .sm\:hover\:-ml-24:hover{
    margin-left     : -6rem !important;
  }

  .sm\:hover\:-mt-28:hover{
    margin-top     : -7rem !important;
  }

  .sm\:hover\:-mr-28:hover{
    margin-right     : -7rem !important;
  }

  .sm\:hover\:-mb-28:hover{
    margin-bottom     : -7rem !important;
  }

  .sm\:hover\:-ml-28:hover{
    margin-left     : -7rem !important;
  }

  .sm\:hover\:-mt-32:hover{
    margin-top     : -8rem !important;
  }

  .sm\:hover\:-mr-32:hover{
    margin-right     : -8rem !important;
  }

  .sm\:hover\:-mb-32:hover{
    margin-bottom     : -8rem !important;
  }

  .sm\:hover\:-ml-32:hover{
    margin-left     : -8rem !important;
  }

  .sm\:hover\:-mt-36:hover{
    margin-top     : -9rem !important;
  }

  .sm\:hover\:-mr-36:hover{
    margin-right     : -9rem !important;
  }

  .sm\:hover\:-mb-36:hover{
    margin-bottom     : -9rem !important;
  }

  .sm\:hover\:-ml-36:hover{
    margin-left     : -9rem !important;
  }

  .sm\:hover\:-mt-40:hover{
    margin-top     : -10rem !important;
  }

  .sm\:hover\:-mr-40:hover{
    margin-right     : -10rem !important;
  }

  .sm\:hover\:-mb-40:hover{
    margin-bottom     : -10rem !important;
  }

  .sm\:hover\:-ml-40:hover{
    margin-left     : -10rem !important;
  }

  .sm\:hover\:-mt-44:hover{
    margin-top     : -11rem !important;
  }

  .sm\:hover\:-mr-44:hover{
    margin-right     : -11rem !important;
  }

  .sm\:hover\:-mb-44:hover{
    margin-bottom     : -11rem !important;
  }

  .sm\:hover\:-ml-44:hover{
    margin-left     : -11rem !important;
  }

  .sm\:hover\:-mt-48:hover{
    margin-top     : -12rem !important;
  }

  .sm\:hover\:-mr-48:hover{
    margin-right     : -12rem !important;
  }

  .sm\:hover\:-mb-48:hover{
    margin-bottom     : -12rem !important;
  }

  .sm\:hover\:-ml-48:hover{
    margin-left     : -12rem !important;
  }

  .sm\:hover\:-mt-52:hover{
    margin-top     : -13rem !important;
  }

  .sm\:hover\:-mr-52:hover{
    margin-right     : -13rem !important;
  }

  .sm\:hover\:-mb-52:hover{
    margin-bottom     : -13rem !important;
  }

  .sm\:hover\:-ml-52:hover{
    margin-left     : -13rem !important;
  }

  .sm\:hover\:-mt-56:hover{
    margin-top     : -14rem !important;
  }

  .sm\:hover\:-mr-56:hover{
    margin-right     : -14rem !important;
  }

  .sm\:hover\:-mb-56:hover{
    margin-bottom     : -14rem !important;
  }

  .sm\:hover\:-ml-56:hover{
    margin-left     : -14rem !important;
  }

  .sm\:hover\:-mt-60:hover{
    margin-top     : -15rem !important;
  }

  .sm\:hover\:-mr-60:hover{
    margin-right     : -15rem !important;
  }

  .sm\:hover\:-mb-60:hover{
    margin-bottom     : -15rem !important;
  }

  .sm\:hover\:-ml-60:hover{
    margin-left     : -15rem !important;
  }

  .sm\:hover\:-mt-64:hover{
    margin-top     : -16rem !important;
  }

  .sm\:hover\:-mr-64:hover{
    margin-right     : -16rem !important;
  }

  .sm\:hover\:-mb-64:hover{
    margin-bottom     : -16rem !important;
  }

  .sm\:hover\:-ml-64:hover{
    margin-left     : -16rem !important;
  }

  .sm\:hover\:-mt-72:hover{
    margin-top     : -18rem !important;
  }

  .sm\:hover\:-mr-72:hover{
    margin-right     : -18rem !important;
  }

  .sm\:hover\:-mb-72:hover{
    margin-bottom     : -18rem !important;
  }

  .sm\:hover\:-ml-72:hover{
    margin-left     : -18rem !important;
  }

  .sm\:hover\:-mt-80:hover{
    margin-top     : -20rem !important;
  }

  .sm\:hover\:-mr-80:hover{
    margin-right     : -20rem !important;
  }

  .sm\:hover\:-mb-80:hover{
    margin-bottom     : -20rem !important;
  }

  .sm\:hover\:-ml-80:hover{
    margin-left     : -20rem !important;
  }

  .sm\:hover\:-mt-96:hover{
    margin-top     : -24rem !important;
  }

  .sm\:hover\:-mr-96:hover{
    margin-right     : -24rem !important;
  }

  .sm\:hover\:-mb-96:hover{
    margin-bottom     : -24rem !important;
  }

  .sm\:hover\:-ml-96:hover{
    margin-left     : -24rem !important;
  }

  .sm\:hover\:-mt-px:hover{
    margin-top     : -1px !important;
  }

  .sm\:hover\:-mr-px:hover{
    margin-right     : -1px !important;
  }

  .sm\:hover\:-mb-px:hover{
    margin-bottom     : -1px !important;
  }

  .sm\:hover\:-ml-px:hover{
    margin-left     : -1px !important;
  }

  .sm\:hover\:-mt-0\.5:hover{
    margin-top     : -0.125rem !important;
  }

  .sm\:hover\:-mr-0\.5:hover{
    margin-right     : -0.125rem !important;
  }

  .sm\:hover\:-mb-0\.5:hover{
    margin-bottom     : -0.125rem !important;
  }

  .sm\:hover\:-ml-0\.5:hover{
    margin-left     : -0.125rem !important;
  }

  .sm\:hover\:-mt-1\.5:hover{
    margin-top     : -0.375rem !important;
  }

  .sm\:hover\:-mr-1\.5:hover{
    margin-right     : -0.375rem !important;
  }

  .sm\:hover\:-mb-1\.5:hover{
    margin-bottom     : -0.375rem !important;
  }

  .sm\:hover\:-ml-1\.5:hover{
    margin-left     : -0.375rem !important;
  }

  .sm\:hover\:-mt-2\.5:hover{
    margin-top     : -0.625rem !important;
  }

  .sm\:hover\:-mr-2\.5:hover{
    margin-right     : -0.625rem !important;
  }

  .sm\:hover\:-mb-2\.5:hover{
    margin-bottom     : -0.625rem !important;
  }

  .sm\:hover\:-ml-2\.5:hover{
    margin-left     : -0.625rem !important;
  }

  .sm\:hover\:-mt-3\.5:hover{
    margin-top     : -0.875rem !important;
  }

  .sm\:hover\:-mr-3\.5:hover{
    margin-right     : -0.875rem !important;
  }

  .sm\:hover\:-mb-3\.5:hover{
    margin-bottom     : -0.875rem !important;
  }

  .sm\:hover\:-ml-3\.5:hover{
    margin-left     : -0.875rem !important;
  }

  .sm\:hover\:-mt-1\/2:hover{
    margin-top     : -50% !important;
  }

  .sm\:hover\:-mr-1\/2:hover{
    margin-right     : -50% !important;
  }

  .sm\:hover\:-mb-1\/2:hover{
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-ml-1\/2:hover{
    margin-left     : -50% !important;
  }

  .sm\:hover\:-mt-1\/3:hover{
    margin-top     : -33.33333% !important;
  }

  .sm\:hover\:-mr-1\/3:hover{
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-mb-1\/3:hover{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-ml-1\/3:hover{
    margin-left     : -33.33333% !important;
  }

  .sm\:hover\:-mt-2\/3:hover{
    margin-top     : -66.66667% !important;
  }

  .sm\:hover\:-mr-2\/3:hover{
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-mb-2\/3:hover{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-ml-2\/3:hover{
    margin-left     : -66.66667% !important;
  }

  .sm\:hover\:-mt-1\/4:hover{
    margin-top     : -25% !important;
  }

  .sm\:hover\:-mr-1\/4:hover{
    margin-right     : -25% !important;
  }

  .sm\:hover\:-mb-1\/4:hover{
    margin-bottom     : -25% !important;
  }

  .sm\:hover\:-ml-1\/4:hover{
    margin-left     : -25% !important;
  }

  .sm\:hover\:-mt-2\/4:hover{
    margin-top     : -50% !important;
  }

  .sm\:hover\:-mr-2\/4:hover{
    margin-right     : -50% !important;
  }

  .sm\:hover\:-mb-2\/4:hover{
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-ml-2\/4:hover{
    margin-left     : -50% !important;
  }

  .sm\:hover\:-mt-3\/4:hover{
    margin-top     : -75% !important;
  }

  .sm\:hover\:-mr-3\/4:hover{
    margin-right     : -75% !important;
  }

  .sm\:hover\:-mb-3\/4:hover{
    margin-bottom     : -75% !important;
  }

  .sm\:hover\:-ml-3\/4:hover{
    margin-left     : -75% !important;
  }

  .sm\:hover\:-mt-1\/5:hover{
    margin-top     : -20% !important;
  }

  .sm\:hover\:-mr-1\/5:hover{
    margin-right     : -20% !important;
  }

  .sm\:hover\:-mb-1\/5:hover{
    margin-bottom     : -20% !important;
  }

  .sm\:hover\:-ml-1\/5:hover{
    margin-left     : -20% !important;
  }

  .sm\:hover\:-mt-2\/5:hover{
    margin-top     : -40% !important;
  }

  .sm\:hover\:-mr-2\/5:hover{
    margin-right     : -40% !important;
  }

  .sm\:hover\:-mb-2\/5:hover{
    margin-bottom     : -40% !important;
  }

  .sm\:hover\:-ml-2\/5:hover{
    margin-left     : -40% !important;
  }

  .sm\:hover\:-mt-3\/5:hover{
    margin-top     : -60% !important;
  }

  .sm\:hover\:-mr-3\/5:hover{
    margin-right     : -60% !important;
  }

  .sm\:hover\:-mb-3\/5:hover{
    margin-bottom     : -60% !important;
  }

  .sm\:hover\:-ml-3\/5:hover{
    margin-left     : -60% !important;
  }

  .sm\:hover\:-mt-4\/5:hover{
    margin-top     : -80% !important;
  }

  .sm\:hover\:-mr-4\/5:hover{
    margin-right     : -80% !important;
  }

  .sm\:hover\:-mb-4\/5:hover{
    margin-bottom     : -80% !important;
  }

  .sm\:hover\:-ml-4\/5:hover{
    margin-left     : -80% !important;
  }

  .sm\:hover\:-mt-1\/6:hover{
    margin-top     : -16.66667% !important;
  }

  .sm\:hover\:-mr-1\/6:hover{
    margin-right     : -16.66667% !important;
  }

  .sm\:hover\:-mb-1\/6:hover{
    margin-bottom     : -16.66667% !important;
  }

  .sm\:hover\:-ml-1\/6:hover{
    margin-left     : -16.66667% !important;
  }

  .sm\:hover\:-mt-2\/6:hover{
    margin-top     : -33.33333% !important;
  }

  .sm\:hover\:-mr-2\/6:hover{
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-mb-2\/6:hover{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-ml-2\/6:hover{
    margin-left     : -33.33333% !important;
  }

  .sm\:hover\:-mt-3\/6:hover{
    margin-top     : -50% !important;
  }

  .sm\:hover\:-mr-3\/6:hover{
    margin-right     : -50% !important;
  }

  .sm\:hover\:-mb-3\/6:hover{
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-ml-3\/6:hover{
    margin-left     : -50% !important;
  }

  .sm\:hover\:-mt-4\/6:hover{
    margin-top     : -66.66667% !important;
  }

  .sm\:hover\:-mr-4\/6:hover{
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-mb-4\/6:hover{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-ml-4\/6:hover{
    margin-left     : -66.66667% !important;
  }

  .sm\:hover\:-mt-5\/6:hover{
    margin-top     : -83.33333% !important;
  }

  .sm\:hover\:-mr-5\/6:hover{
    margin-right     : -83.33333% !important;
  }

  .sm\:hover\:-mb-5\/6:hover{
    margin-bottom     : -83.33333% !important;
  }

  .sm\:hover\:-ml-5\/6:hover{
    margin-left     : -83.33333% !important;
  }

  .sm\:hover\:-mt-1\/12:hover{
    margin-top     : -8.33333% !important;
  }

  .sm\:hover\:-mr-1\/12:hover{
    margin-right     : -8.33333% !important;
  }

  .sm\:hover\:-mb-1\/12:hover{
    margin-bottom     : -8.33333% !important;
  }

  .sm\:hover\:-ml-1\/12:hover{
    margin-left     : -8.33333% !important;
  }

  .sm\:hover\:-mt-2\/12:hover{
    margin-top     : -16.66667% !important;
  }

  .sm\:hover\:-mr-2\/12:hover{
    margin-right     : -16.66667% !important;
  }

  .sm\:hover\:-mb-2\/12:hover{
    margin-bottom     : -16.66667% !important;
  }

  .sm\:hover\:-ml-2\/12:hover{
    margin-left     : -16.66667% !important;
  }

  .sm\:hover\:-mt-3\/12:hover{
    margin-top     : -25% !important;
  }

  .sm\:hover\:-mr-3\/12:hover{
    margin-right     : -25% !important;
  }

  .sm\:hover\:-mb-3\/12:hover{
    margin-bottom     : -25% !important;
  }

  .sm\:hover\:-ml-3\/12:hover{
    margin-left     : -25% !important;
  }

  .sm\:hover\:-mt-4\/12:hover{
    margin-top     : -33.33333% !important;
  }

  .sm\:hover\:-mr-4\/12:hover{
    margin-right     : -33.33333% !important;
  }

  .sm\:hover\:-mb-4\/12:hover{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:hover\:-ml-4\/12:hover{
    margin-left     : -33.33333% !important;
  }

  .sm\:hover\:-mt-5\/12:hover{
    margin-top     : -41.66667% !important;
  }

  .sm\:hover\:-mr-5\/12:hover{
    margin-right     : -41.66667% !important;
  }

  .sm\:hover\:-mb-5\/12:hover{
    margin-bottom     : -41.66667% !important;
  }

  .sm\:hover\:-ml-5\/12:hover{
    margin-left     : -41.66667% !important;
  }

  .sm\:hover\:-mt-6\/12:hover{
    margin-top     : -50% !important;
  }

  .sm\:hover\:-mr-6\/12:hover{
    margin-right     : -50% !important;
  }

  .sm\:hover\:-mb-6\/12:hover{
    margin-bottom     : -50% !important;
  }

  .sm\:hover\:-ml-6\/12:hover{
    margin-left     : -50% !important;
  }

  .sm\:hover\:-mt-7\/12:hover{
    margin-top     : -58.33333% !important;
  }

  .sm\:hover\:-mr-7\/12:hover{
    margin-right     : -58.33333% !important;
  }

  .sm\:hover\:-mb-7\/12:hover{
    margin-bottom     : -58.33333% !important;
  }

  .sm\:hover\:-ml-7\/12:hover{
    margin-left     : -58.33333% !important;
  }

  .sm\:hover\:-mt-8\/12:hover{
    margin-top     : -66.66667% !important;
  }

  .sm\:hover\:-mr-8\/12:hover{
    margin-right     : -66.66667% !important;
  }

  .sm\:hover\:-mb-8\/12:hover{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:hover\:-ml-8\/12:hover{
    margin-left     : -66.66667% !important;
  }

  .sm\:hover\:-mt-9\/12:hover{
    margin-top     : -75% !important;
  }

  .sm\:hover\:-mr-9\/12:hover{
    margin-right     : -75% !important;
  }

  .sm\:hover\:-mb-9\/12:hover{
    margin-bottom     : -75% !important;
  }

  .sm\:hover\:-ml-9\/12:hover{
    margin-left     : -75% !important;
  }

  .sm\:hover\:-mt-10\/12:hover{
    margin-top     : -83.33333% !important;
  }

  .sm\:hover\:-mr-10\/12:hover{
    margin-right     : -83.33333% !important;
  }

  .sm\:hover\:-mb-10\/12:hover{
    margin-bottom     : -83.33333% !important;
  }

  .sm\:hover\:-ml-10\/12:hover{
    margin-left     : -83.33333% !important;
  }

  .sm\:hover\:-mt-11\/12:hover{
    margin-top     : -91.66667% !important;
  }

  .sm\:hover\:-mr-11\/12:hover{
    margin-right     : -91.66667% !important;
  }

  .sm\:hover\:-mb-11\/12:hover{
    margin-bottom     : -91.66667% !important;
  }

  .sm\:hover\:-ml-11\/12:hover{
    margin-left     : -91.66667% !important;
  }

  .sm\:hover\:-mt-full:hover{
    margin-top     : -100% !important;
  }

  .sm\:hover\:-mr-full:hover{
    margin-right     : -100% !important;
  }

  .sm\:hover\:-mb-full:hover{
    margin-bottom     : -100% !important;
  }

  .sm\:hover\:-ml-full:hover{
    margin-left     : -100% !important;
  }

  .sm\:focus\:m-0:focus{
    margin     : 0 !important;
  }

  .sm\:focus\:m-1:focus{
    margin     : 0.25rem !important;
  }

  .sm\:focus\:m-2:focus{
    margin     : 0.5rem !important;
  }

  .sm\:focus\:m-3:focus{
    margin     : 0.75rem !important;
  }

  .sm\:focus\:m-4:focus{
    margin     : 1rem !important;
  }

  .sm\:focus\:m-5:focus{
    margin     : 1.25rem !important;
  }

  .sm\:focus\:m-6:focus{
    margin     : 1.5rem !important;
  }

  .sm\:focus\:m-7:focus{
    margin     : 1.75rem !important;
  }

  .sm\:focus\:m-8:focus{
    margin     : 2rem !important;
  }

  .sm\:focus\:m-9:focus{
    margin     : 2.25rem !important;
  }

  .sm\:focus\:m-10:focus{
    margin     : 2.5rem !important;
  }

  .sm\:focus\:m-11:focus{
    margin     : 2.75rem !important;
  }

  .sm\:focus\:m-12:focus{
    margin     : 3rem !important;
  }

  .sm\:focus\:m-13:focus{
    margin     : 3.25rem !important;
  }

  .sm\:focus\:m-14:focus{
    margin     : 3.5rem !important;
  }

  .sm\:focus\:m-15:focus{
    margin     : 3.75rem !important;
  }

  .sm\:focus\:m-16:focus{
    margin     : 4rem !important;
  }

  .sm\:focus\:m-20:focus{
    margin     : 5rem !important;
  }

  .sm\:focus\:m-24:focus{
    margin     : 6rem !important;
  }

  .sm\:focus\:m-28:focus{
    margin     : 7rem !important;
  }

  .sm\:focus\:m-32:focus{
    margin     : 8rem !important;
  }

  .sm\:focus\:m-36:focus{
    margin     : 9rem !important;
  }

  .sm\:focus\:m-40:focus{
    margin     : 10rem !important;
  }

  .sm\:focus\:m-44:focus{
    margin     : 11rem !important;
  }

  .sm\:focus\:m-48:focus{
    margin     : 12rem !important;
  }

  .sm\:focus\:m-52:focus{
    margin     : 13rem !important;
  }

  .sm\:focus\:m-56:focus{
    margin     : 14rem !important;
  }

  .sm\:focus\:m-60:focus{
    margin     : 15rem !important;
  }

  .sm\:focus\:m-64:focus{
    margin     : 16rem !important;
  }

  .sm\:focus\:m-72:focus{
    margin     : 18rem !important;
  }

  .sm\:focus\:m-80:focus{
    margin     : 20rem !important;
  }

  .sm\:focus\:m-96:focus{
    margin     : 24rem !important;
  }

  .sm\:focus\:m-auto:focus{
    margin     : auto !important;
  }

  .sm\:focus\:m-px:focus{
    margin     : 1px !important;
  }

  .sm\:focus\:m-0\.5:focus{
    margin     : 0.125rem !important;
  }

  .sm\:focus\:m-1\.5:focus{
    margin     : 0.375rem !important;
  }

  .sm\:focus\:m-2\.5:focus{
    margin     : 0.625rem !important;
  }

  .sm\:focus\:m-3\.5:focus{
    margin     : 0.875rem !important;
  }

  .sm\:focus\:m-1\/2:focus{
    margin     : 50% !important;
  }

  .sm\:focus\:m-1\/3:focus{
    margin     : 33.333333% !important;
  }

  .sm\:focus\:m-2\/3:focus{
    margin     : 66.666667% !important;
  }

  .sm\:focus\:m-1\/4:focus{
    margin     : 25% !important;
  }

  .sm\:focus\:m-2\/4:focus{
    margin     : 50% !important;
  }

  .sm\:focus\:m-3\/4:focus{
    margin     : 75% !important;
  }

  .sm\:focus\:m-1\/5:focus{
    margin     : 20% !important;
  }

  .sm\:focus\:m-2\/5:focus{
    margin     : 40% !important;
  }

  .sm\:focus\:m-3\/5:focus{
    margin     : 60% !important;
  }

  .sm\:focus\:m-4\/5:focus{
    margin     : 80% !important;
  }

  .sm\:focus\:m-1\/6:focus{
    margin     : 16.666667% !important;
  }

  .sm\:focus\:m-2\/6:focus{
    margin     : 33.333333% !important;
  }

  .sm\:focus\:m-3\/6:focus{
    margin     : 50% !important;
  }

  .sm\:focus\:m-4\/6:focus{
    margin     : 66.666667% !important;
  }

  .sm\:focus\:m-5\/6:focus{
    margin     : 83.333333% !important;
  }

  .sm\:focus\:m-1\/12:focus{
    margin     : 8.333333% !important;
  }

  .sm\:focus\:m-2\/12:focus{
    margin     : 16.666667% !important;
  }

  .sm\:focus\:m-3\/12:focus{
    margin     : 25% !important;
  }

  .sm\:focus\:m-4\/12:focus{
    margin     : 33.333333% !important;
  }

  .sm\:focus\:m-5\/12:focus{
    margin     : 41.666667% !important;
  }

  .sm\:focus\:m-6\/12:focus{
    margin     : 50% !important;
  }

  .sm\:focus\:m-7\/12:focus{
    margin     : 58.333333% !important;
  }

  .sm\:focus\:m-8\/12:focus{
    margin     : 66.666667% !important;
  }

  .sm\:focus\:m-9\/12:focus{
    margin     : 75% !important;
  }

  .sm\:focus\:m-10\/12:focus{
    margin     : 83.333333% !important;
  }

  .sm\:focus\:m-11\/12:focus{
    margin     : 91.666667% !important;
  }

  .sm\:focus\:m-full:focus{
    margin     : 100% !important;
  }

  .sm\:focus\:-m-1:focus{
    margin     : -0.25rem !important;
  }

  .sm\:focus\:-m-2:focus{
    margin     : -0.5rem !important;
  }

  .sm\:focus\:-m-3:focus{
    margin     : -0.75rem !important;
  }

  .sm\:focus\:-m-4:focus{
    margin     : -1rem !important;
  }

  .sm\:focus\:-m-5:focus{
    margin     : -1.25rem !important;
  }

  .sm\:focus\:-m-6:focus{
    margin     : -1.5rem !important;
  }

  .sm\:focus\:-m-7:focus{
    margin     : -1.75rem !important;
  }

  .sm\:focus\:-m-8:focus{
    margin     : -2rem !important;
  }

  .sm\:focus\:-m-9:focus{
    margin     : -2.25rem !important;
  }

  .sm\:focus\:-m-10:focus{
    margin     : -2.5rem !important;
  }

  .sm\:focus\:-m-11:focus{
    margin     : -2.75rem !important;
  }

  .sm\:focus\:-m-12:focus{
    margin     : -3rem !important;
  }

  .sm\:focus\:-m-13:focus{
    margin     : -3.25rem !important;
  }

  .sm\:focus\:-m-14:focus{
    margin     : -3.5rem !important;
  }

  .sm\:focus\:-m-15:focus{
    margin     : -3.75rem !important;
  }

  .sm\:focus\:-m-16:focus{
    margin     : -4rem !important;
  }

  .sm\:focus\:-m-20:focus{
    margin     : -5rem !important;
  }

  .sm\:focus\:-m-24:focus{
    margin     : -6rem !important;
  }

  .sm\:focus\:-m-28:focus{
    margin     : -7rem !important;
  }

  .sm\:focus\:-m-32:focus{
    margin     : -8rem !important;
  }

  .sm\:focus\:-m-36:focus{
    margin     : -9rem !important;
  }

  .sm\:focus\:-m-40:focus{
    margin     : -10rem !important;
  }

  .sm\:focus\:-m-44:focus{
    margin     : -11rem !important;
  }

  .sm\:focus\:-m-48:focus{
    margin     : -12rem !important;
  }

  .sm\:focus\:-m-52:focus{
    margin     : -13rem !important;
  }

  .sm\:focus\:-m-56:focus{
    margin     : -14rem !important;
  }

  .sm\:focus\:-m-60:focus{
    margin     : -15rem !important;
  }

  .sm\:focus\:-m-64:focus{
    margin     : -16rem !important;
  }

  .sm\:focus\:-m-72:focus{
    margin     : -18rem !important;
  }

  .sm\:focus\:-m-80:focus{
    margin     : -20rem !important;
  }

  .sm\:focus\:-m-96:focus{
    margin     : -24rem !important;
  }

  .sm\:focus\:-m-px:focus{
    margin     : -1px !important;
  }

  .sm\:focus\:-m-0\.5:focus{
    margin     : -0.125rem !important;
  }

  .sm\:focus\:-m-1\.5:focus{
    margin     : -0.375rem !important;
  }

  .sm\:focus\:-m-2\.5:focus{
    margin     : -0.625rem !important;
  }

  .sm\:focus\:-m-3\.5:focus{
    margin     : -0.875rem !important;
  }

  .sm\:focus\:-m-1\/2:focus{
    margin     : -50% !important;
  }

  .sm\:focus\:-m-1\/3:focus{
    margin     : -33.33333% !important;
  }

  .sm\:focus\:-m-2\/3:focus{
    margin     : -66.66667% !important;
  }

  .sm\:focus\:-m-1\/4:focus{
    margin     : -25% !important;
  }

  .sm\:focus\:-m-2\/4:focus{
    margin     : -50% !important;
  }

  .sm\:focus\:-m-3\/4:focus{
    margin     : -75% !important;
  }

  .sm\:focus\:-m-1\/5:focus{
    margin     : -20% !important;
  }

  .sm\:focus\:-m-2\/5:focus{
    margin     : -40% !important;
  }

  .sm\:focus\:-m-3\/5:focus{
    margin     : -60% !important;
  }

  .sm\:focus\:-m-4\/5:focus{
    margin     : -80% !important;
  }

  .sm\:focus\:-m-1\/6:focus{
    margin     : -16.66667% !important;
  }

  .sm\:focus\:-m-2\/6:focus{
    margin     : -33.33333% !important;
  }

  .sm\:focus\:-m-3\/6:focus{
    margin     : -50% !important;
  }

  .sm\:focus\:-m-4\/6:focus{
    margin     : -66.66667% !important;
  }

  .sm\:focus\:-m-5\/6:focus{
    margin     : -83.33333% !important;
  }

  .sm\:focus\:-m-1\/12:focus{
    margin     : -8.33333% !important;
  }

  .sm\:focus\:-m-2\/12:focus{
    margin     : -16.66667% !important;
  }

  .sm\:focus\:-m-3\/12:focus{
    margin     : -25% !important;
  }

  .sm\:focus\:-m-4\/12:focus{
    margin     : -33.33333% !important;
  }

  .sm\:focus\:-m-5\/12:focus{
    margin     : -41.66667% !important;
  }

  .sm\:focus\:-m-6\/12:focus{
    margin     : -50% !important;
  }

  .sm\:focus\:-m-7\/12:focus{
    margin     : -58.33333% !important;
  }

  .sm\:focus\:-m-8\/12:focus{
    margin     : -66.66667% !important;
  }

  .sm\:focus\:-m-9\/12:focus{
    margin     : -75% !important;
  }

  .sm\:focus\:-m-10\/12:focus{
    margin     : -83.33333% !important;
  }

  .sm\:focus\:-m-11\/12:focus{
    margin     : -91.66667% !important;
  }

  .sm\:focus\:-m-full:focus{
    margin     : -100% !important;
  }

  .sm\:focus\:my-0:focus{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .sm\:focus\:mx-0:focus{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .sm\:focus\:my-1:focus{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .sm\:focus\:mx-1:focus{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .sm\:focus\:my-2:focus{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .sm\:focus\:mx-2:focus{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .sm\:focus\:my-3:focus{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .sm\:focus\:mx-3:focus{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .sm\:focus\:my-4:focus{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .sm\:focus\:mx-4:focus{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .sm\:focus\:my-5:focus{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .sm\:focus\:mx-5:focus{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .sm\:focus\:my-6:focus{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .sm\:focus\:mx-6:focus{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .sm\:focus\:my-7:focus{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .sm\:focus\:mx-7:focus{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .sm\:focus\:my-8:focus{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .sm\:focus\:mx-8:focus{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .sm\:focus\:my-9:focus{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .sm\:focus\:mx-9:focus{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .sm\:focus\:my-10:focus{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .sm\:focus\:mx-10:focus{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .sm\:focus\:my-11:focus{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .sm\:focus\:mx-11:focus{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .sm\:focus\:my-12:focus{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .sm\:focus\:mx-12:focus{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .sm\:focus\:my-13:focus{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .sm\:focus\:mx-13:focus{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .sm\:focus\:my-14:focus{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .sm\:focus\:mx-14:focus{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .sm\:focus\:my-15:focus{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .sm\:focus\:mx-15:focus{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .sm\:focus\:my-16:focus{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .sm\:focus\:mx-16:focus{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .sm\:focus\:my-20:focus{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .sm\:focus\:mx-20:focus{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .sm\:focus\:my-24:focus{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .sm\:focus\:mx-24:focus{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .sm\:focus\:my-28:focus{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .sm\:focus\:mx-28:focus{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .sm\:focus\:my-32:focus{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .sm\:focus\:mx-32:focus{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .sm\:focus\:my-36:focus{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .sm\:focus\:mx-36:focus{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .sm\:focus\:my-40:focus{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .sm\:focus\:mx-40:focus{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .sm\:focus\:my-44:focus{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .sm\:focus\:mx-44:focus{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .sm\:focus\:my-48:focus{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .sm\:focus\:mx-48:focus{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .sm\:focus\:my-52:focus{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .sm\:focus\:mx-52:focus{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .sm\:focus\:my-56:focus{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .sm\:focus\:mx-56:focus{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .sm\:focus\:my-60:focus{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .sm\:focus\:mx-60:focus{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .sm\:focus\:my-64:focus{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .sm\:focus\:mx-64:focus{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .sm\:focus\:my-72:focus{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .sm\:focus\:mx-72:focus{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .sm\:focus\:my-80:focus{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .sm\:focus\:mx-80:focus{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .sm\:focus\:my-96:focus{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .sm\:focus\:mx-96:focus{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .sm\:focus\:my-auto:focus{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .sm\:focus\:mx-auto:focus{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .sm\:focus\:my-px:focus{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .sm\:focus\:mx-px:focus{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .sm\:focus\:my-0\.5:focus{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .sm\:focus\:mx-0\.5:focus{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .sm\:focus\:my-1\.5:focus{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .sm\:focus\:mx-1\.5:focus{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .sm\:focus\:my-2\.5:focus{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .sm\:focus\:mx-2\.5:focus{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .sm\:focus\:my-3\.5:focus{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .sm\:focus\:mx-3\.5:focus{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .sm\:focus\:my-1\/2:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:mx-1\/2:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:focus\:my-1\/3:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:mx-1\/3:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:my-2\/3:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:mx-2\/3:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:my-1\/4:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .sm\:focus\:mx-1\/4:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .sm\:focus\:my-2\/4:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:mx-2\/4:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:focus\:my-3\/4:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .sm\:focus\:mx-3\/4:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .sm\:focus\:my-1\/5:focus{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .sm\:focus\:mx-1\/5:focus{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .sm\:focus\:my-2\/5:focus{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .sm\:focus\:mx-2\/5:focus{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .sm\:focus\:my-3\/5:focus{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .sm\:focus\:mx-3\/5:focus{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .sm\:focus\:my-4\/5:focus{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .sm\:focus\:mx-4\/5:focus{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .sm\:focus\:my-1\/6:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .sm\:focus\:mx-1\/6:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .sm\:focus\:my-2\/6:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:mx-2\/6:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:my-3\/6:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:mx-3\/6:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:focus\:my-4\/6:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:mx-4\/6:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:my-5\/6:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .sm\:focus\:mx-5\/6:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .sm\:focus\:my-1\/12:focus{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .sm\:focus\:mx-1\/12:focus{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .sm\:focus\:my-2\/12:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .sm\:focus\:mx-2\/12:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .sm\:focus\:my-3\/12:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .sm\:focus\:mx-3\/12:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .sm\:focus\:my-4\/12:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:mx-4\/12:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:my-5\/12:focus{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .sm\:focus\:mx-5\/12:focus{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .sm\:focus\:my-6\/12:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:mx-6\/12:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .sm\:focus\:my-7\/12:focus{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .sm\:focus\:mx-7\/12:focus{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .sm\:focus\:my-8\/12:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:mx-8\/12:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:my-9\/12:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .sm\:focus\:mx-9\/12:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .sm\:focus\:my-10\/12:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .sm\:focus\:mx-10\/12:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .sm\:focus\:my-11\/12:focus{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .sm\:focus\:mx-11\/12:focus{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .sm\:focus\:my-full:focus{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .sm\:focus\:mx-full:focus{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .sm\:focus\:-my-1:focus{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .sm\:focus\:-mx-1:focus{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .sm\:focus\:-my-2:focus{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .sm\:focus\:-mx-2:focus{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .sm\:focus\:-my-3:focus{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .sm\:focus\:-mx-3:focus{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .sm\:focus\:-my-4:focus{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .sm\:focus\:-mx-4:focus{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .sm\:focus\:-my-5:focus{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .sm\:focus\:-mx-5:focus{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .sm\:focus\:-my-6:focus{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .sm\:focus\:-mx-6:focus{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .sm\:focus\:-my-7:focus{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .sm\:focus\:-mx-7:focus{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .sm\:focus\:-my-8:focus{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .sm\:focus\:-mx-8:focus{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .sm\:focus\:-my-9:focus{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .sm\:focus\:-mx-9:focus{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .sm\:focus\:-my-10:focus{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .sm\:focus\:-mx-10:focus{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .sm\:focus\:-my-11:focus{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .sm\:focus\:-mx-11:focus{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .sm\:focus\:-my-12:focus{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .sm\:focus\:-mx-12:focus{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .sm\:focus\:-my-13:focus{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .sm\:focus\:-mx-13:focus{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .sm\:focus\:-my-14:focus{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .sm\:focus\:-mx-14:focus{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .sm\:focus\:-my-15:focus{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .sm\:focus\:-mx-15:focus{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .sm\:focus\:-my-16:focus{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .sm\:focus\:-mx-16:focus{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .sm\:focus\:-my-20:focus{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .sm\:focus\:-mx-20:focus{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .sm\:focus\:-my-24:focus{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .sm\:focus\:-mx-24:focus{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .sm\:focus\:-my-28:focus{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .sm\:focus\:-mx-28:focus{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .sm\:focus\:-my-32:focus{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .sm\:focus\:-mx-32:focus{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .sm\:focus\:-my-36:focus{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .sm\:focus\:-mx-36:focus{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .sm\:focus\:-my-40:focus{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .sm\:focus\:-mx-40:focus{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .sm\:focus\:-my-44:focus{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .sm\:focus\:-mx-44:focus{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .sm\:focus\:-my-48:focus{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .sm\:focus\:-mx-48:focus{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .sm\:focus\:-my-52:focus{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .sm\:focus\:-mx-52:focus{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .sm\:focus\:-my-56:focus{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .sm\:focus\:-mx-56:focus{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .sm\:focus\:-my-60:focus{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .sm\:focus\:-mx-60:focus{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .sm\:focus\:-my-64:focus{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .sm\:focus\:-mx-64:focus{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .sm\:focus\:-my-72:focus{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .sm\:focus\:-mx-72:focus{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .sm\:focus\:-my-80:focus{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .sm\:focus\:-mx-80:focus{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .sm\:focus\:-my-96:focus{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .sm\:focus\:-mx-96:focus{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .sm\:focus\:-my-px:focus{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .sm\:focus\:-mx-px:focus{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .sm\:focus\:-my-0\.5:focus{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .sm\:focus\:-mx-0\.5:focus{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .sm\:focus\:-my-1\.5:focus{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .sm\:focus\:-mx-1\.5:focus{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .sm\:focus\:-my-2\.5:focus{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .sm\:focus\:-mx-2\.5:focus{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .sm\:focus\:-my-3\.5:focus{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .sm\:focus\:-mx-3\.5:focus{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .sm\:focus\:-my-1\/2:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-mx-1\/2:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:focus\:-my-1\/3:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-mx-1\/3:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-my-2\/3:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-mx-2\/3:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-my-1\/4:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .sm\:focus\:-mx-1\/4:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .sm\:focus\:-my-2\/4:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-mx-2\/4:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:focus\:-my-3\/4:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .sm\:focus\:-mx-3\/4:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .sm\:focus\:-my-1\/5:focus{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .sm\:focus\:-mx-1\/5:focus{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .sm\:focus\:-my-2\/5:focus{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .sm\:focus\:-mx-2\/5:focus{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .sm\:focus\:-my-3\/5:focus{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .sm\:focus\:-mx-3\/5:focus{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .sm\:focus\:-my-4\/5:focus{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .sm\:focus\:-mx-4\/5:focus{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .sm\:focus\:-my-1\/6:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .sm\:focus\:-mx-1\/6:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .sm\:focus\:-my-2\/6:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-mx-2\/6:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-my-3\/6:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-mx-3\/6:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:focus\:-my-4\/6:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-mx-4\/6:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-my-5\/6:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .sm\:focus\:-mx-5\/6:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .sm\:focus\:-my-1\/12:focus{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .sm\:focus\:-mx-1\/12:focus{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .sm\:focus\:-my-2\/12:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .sm\:focus\:-mx-2\/12:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .sm\:focus\:-my-3\/12:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .sm\:focus\:-mx-3\/12:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .sm\:focus\:-my-4\/12:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-mx-4\/12:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-my-5\/12:focus{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .sm\:focus\:-mx-5\/12:focus{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .sm\:focus\:-my-6\/12:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-mx-6\/12:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .sm\:focus\:-my-7\/12:focus{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .sm\:focus\:-mx-7\/12:focus{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .sm\:focus\:-my-8\/12:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-mx-8\/12:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-my-9\/12:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .sm\:focus\:-mx-9\/12:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .sm\:focus\:-my-10\/12:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .sm\:focus\:-mx-10\/12:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .sm\:focus\:-my-11\/12:focus{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .sm\:focus\:-mx-11\/12:focus{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .sm\:focus\:-my-full:focus{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .sm\:focus\:-mx-full:focus{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .sm\:focus\:mt-0:focus{
    margin-top     : 0 !important;
  }

  .sm\:focus\:mr-0:focus{
    margin-right     : 0 !important;
  }

  .sm\:focus\:mb-0:focus{
    margin-bottom     : 0 !important;
  }

  .sm\:focus\:ml-0:focus{
    margin-left     : 0 !important;
  }

  .sm\:focus\:mt-1:focus{
    margin-top     : 0.25rem !important;
  }

  .sm\:focus\:mr-1:focus{
    margin-right     : 0.25rem !important;
  }

  .sm\:focus\:mb-1:focus{
    margin-bottom     : 0.25rem !important;
  }

  .sm\:focus\:ml-1:focus{
    margin-left     : 0.25rem !important;
  }

  .sm\:focus\:mt-2:focus{
    margin-top     : 0.5rem !important;
  }

  .sm\:focus\:mr-2:focus{
    margin-right     : 0.5rem !important;
  }

  .sm\:focus\:mb-2:focus{
    margin-bottom     : 0.5rem !important;
  }

  .sm\:focus\:ml-2:focus{
    margin-left     : 0.5rem !important;
  }

  .sm\:focus\:mt-3:focus{
    margin-top     : 0.75rem !important;
  }

  .sm\:focus\:mr-3:focus{
    margin-right     : 0.75rem !important;
  }

  .sm\:focus\:mb-3:focus{
    margin-bottom     : 0.75rem !important;
  }

  .sm\:focus\:ml-3:focus{
    margin-left     : 0.75rem !important;
  }

  .sm\:focus\:mt-4:focus{
    margin-top     : 1rem !important;
  }

  .sm\:focus\:mr-4:focus{
    margin-right     : 1rem !important;
  }

  .sm\:focus\:mb-4:focus{
    margin-bottom     : 1rem !important;
  }

  .sm\:focus\:ml-4:focus{
    margin-left     : 1rem !important;
  }

  .sm\:focus\:mt-5:focus{
    margin-top     : 1.25rem !important;
  }

  .sm\:focus\:mr-5:focus{
    margin-right     : 1.25rem !important;
  }

  .sm\:focus\:mb-5:focus{
    margin-bottom     : 1.25rem !important;
  }

  .sm\:focus\:ml-5:focus{
    margin-left     : 1.25rem !important;
  }

  .sm\:focus\:mt-6:focus{
    margin-top     : 1.5rem !important;
  }

  .sm\:focus\:mr-6:focus{
    margin-right     : 1.5rem !important;
  }

  .sm\:focus\:mb-6:focus{
    margin-bottom     : 1.5rem !important;
  }

  .sm\:focus\:ml-6:focus{
    margin-left     : 1.5rem !important;
  }

  .sm\:focus\:mt-7:focus{
    margin-top     : 1.75rem !important;
  }

  .sm\:focus\:mr-7:focus{
    margin-right     : 1.75rem !important;
  }

  .sm\:focus\:mb-7:focus{
    margin-bottom     : 1.75rem !important;
  }

  .sm\:focus\:ml-7:focus{
    margin-left     : 1.75rem !important;
  }

  .sm\:focus\:mt-8:focus{
    margin-top     : 2rem !important;
  }

  .sm\:focus\:mr-8:focus{
    margin-right     : 2rem !important;
  }

  .sm\:focus\:mb-8:focus{
    margin-bottom     : 2rem !important;
  }

  .sm\:focus\:ml-8:focus{
    margin-left     : 2rem !important;
  }

  .sm\:focus\:mt-9:focus{
    margin-top     : 2.25rem !important;
  }

  .sm\:focus\:mr-9:focus{
    margin-right     : 2.25rem !important;
  }

  .sm\:focus\:mb-9:focus{
    margin-bottom     : 2.25rem !important;
  }

  .sm\:focus\:ml-9:focus{
    margin-left     : 2.25rem !important;
  }

  .sm\:focus\:mt-10:focus{
    margin-top     : 2.5rem !important;
  }

  .sm\:focus\:mr-10:focus{
    margin-right     : 2.5rem !important;
  }

  .sm\:focus\:mb-10:focus{
    margin-bottom     : 2.5rem !important;
  }

  .sm\:focus\:ml-10:focus{
    margin-left     : 2.5rem !important;
  }

  .sm\:focus\:mt-11:focus{
    margin-top     : 2.75rem !important;
  }

  .sm\:focus\:mr-11:focus{
    margin-right     : 2.75rem !important;
  }

  .sm\:focus\:mb-11:focus{
    margin-bottom     : 2.75rem !important;
  }

  .sm\:focus\:ml-11:focus{
    margin-left     : 2.75rem !important;
  }

  .sm\:focus\:mt-12:focus{
    margin-top     : 3rem !important;
  }

  .sm\:focus\:mr-12:focus{
    margin-right     : 3rem !important;
  }

  .sm\:focus\:mb-12:focus{
    margin-bottom     : 3rem !important;
  }

  .sm\:focus\:ml-12:focus{
    margin-left     : 3rem !important;
  }

  .sm\:focus\:mt-13:focus{
    margin-top     : 3.25rem !important;
  }

  .sm\:focus\:mr-13:focus{
    margin-right     : 3.25rem !important;
  }

  .sm\:focus\:mb-13:focus{
    margin-bottom     : 3.25rem !important;
  }

  .sm\:focus\:ml-13:focus{
    margin-left     : 3.25rem !important;
  }

  .sm\:focus\:mt-14:focus{
    margin-top     : 3.5rem !important;
  }

  .sm\:focus\:mr-14:focus{
    margin-right     : 3.5rem !important;
  }

  .sm\:focus\:mb-14:focus{
    margin-bottom     : 3.5rem !important;
  }

  .sm\:focus\:ml-14:focus{
    margin-left     : 3.5rem !important;
  }

  .sm\:focus\:mt-15:focus{
    margin-top     : 3.75rem !important;
  }

  .sm\:focus\:mr-15:focus{
    margin-right     : 3.75rem !important;
  }

  .sm\:focus\:mb-15:focus{
    margin-bottom     : 3.75rem !important;
  }

  .sm\:focus\:ml-15:focus{
    margin-left     : 3.75rem !important;
  }

  .sm\:focus\:mt-16:focus{
    margin-top     : 4rem !important;
  }

  .sm\:focus\:mr-16:focus{
    margin-right     : 4rem !important;
  }

  .sm\:focus\:mb-16:focus{
    margin-bottom     : 4rem !important;
  }

  .sm\:focus\:ml-16:focus{
    margin-left     : 4rem !important;
  }

  .sm\:focus\:mt-20:focus{
    margin-top     : 5rem !important;
  }

  .sm\:focus\:mr-20:focus{
    margin-right     : 5rem !important;
  }

  .sm\:focus\:mb-20:focus{
    margin-bottom     : 5rem !important;
  }

  .sm\:focus\:ml-20:focus{
    margin-left     : 5rem !important;
  }

  .sm\:focus\:mt-24:focus{
    margin-top     : 6rem !important;
  }

  .sm\:focus\:mr-24:focus{
    margin-right     : 6rem !important;
  }

  .sm\:focus\:mb-24:focus{
    margin-bottom     : 6rem !important;
  }

  .sm\:focus\:ml-24:focus{
    margin-left     : 6rem !important;
  }

  .sm\:focus\:mt-28:focus{
    margin-top     : 7rem !important;
  }

  .sm\:focus\:mr-28:focus{
    margin-right     : 7rem !important;
  }

  .sm\:focus\:mb-28:focus{
    margin-bottom     : 7rem !important;
  }

  .sm\:focus\:ml-28:focus{
    margin-left     : 7rem !important;
  }

  .sm\:focus\:mt-32:focus{
    margin-top     : 8rem !important;
  }

  .sm\:focus\:mr-32:focus{
    margin-right     : 8rem !important;
  }

  .sm\:focus\:mb-32:focus{
    margin-bottom     : 8rem !important;
  }

  .sm\:focus\:ml-32:focus{
    margin-left     : 8rem !important;
  }

  .sm\:focus\:mt-36:focus{
    margin-top     : 9rem !important;
  }

  .sm\:focus\:mr-36:focus{
    margin-right     : 9rem !important;
  }

  .sm\:focus\:mb-36:focus{
    margin-bottom     : 9rem !important;
  }

  .sm\:focus\:ml-36:focus{
    margin-left     : 9rem !important;
  }

  .sm\:focus\:mt-40:focus{
    margin-top     : 10rem !important;
  }

  .sm\:focus\:mr-40:focus{
    margin-right     : 10rem !important;
  }

  .sm\:focus\:mb-40:focus{
    margin-bottom     : 10rem !important;
  }

  .sm\:focus\:ml-40:focus{
    margin-left     : 10rem !important;
  }

  .sm\:focus\:mt-44:focus{
    margin-top     : 11rem !important;
  }

  .sm\:focus\:mr-44:focus{
    margin-right     : 11rem !important;
  }

  .sm\:focus\:mb-44:focus{
    margin-bottom     : 11rem !important;
  }

  .sm\:focus\:ml-44:focus{
    margin-left     : 11rem !important;
  }

  .sm\:focus\:mt-48:focus{
    margin-top     : 12rem !important;
  }

  .sm\:focus\:mr-48:focus{
    margin-right     : 12rem !important;
  }

  .sm\:focus\:mb-48:focus{
    margin-bottom     : 12rem !important;
  }

  .sm\:focus\:ml-48:focus{
    margin-left     : 12rem !important;
  }

  .sm\:focus\:mt-52:focus{
    margin-top     : 13rem !important;
  }

  .sm\:focus\:mr-52:focus{
    margin-right     : 13rem !important;
  }

  .sm\:focus\:mb-52:focus{
    margin-bottom     : 13rem !important;
  }

  .sm\:focus\:ml-52:focus{
    margin-left     : 13rem !important;
  }

  .sm\:focus\:mt-56:focus{
    margin-top     : 14rem !important;
  }

  .sm\:focus\:mr-56:focus{
    margin-right     : 14rem !important;
  }

  .sm\:focus\:mb-56:focus{
    margin-bottom     : 14rem !important;
  }

  .sm\:focus\:ml-56:focus{
    margin-left     : 14rem !important;
  }

  .sm\:focus\:mt-60:focus{
    margin-top     : 15rem !important;
  }

  .sm\:focus\:mr-60:focus{
    margin-right     : 15rem !important;
  }

  .sm\:focus\:mb-60:focus{
    margin-bottom     : 15rem !important;
  }

  .sm\:focus\:ml-60:focus{
    margin-left     : 15rem !important;
  }

  .sm\:focus\:mt-64:focus{
    margin-top     : 16rem !important;
  }

  .sm\:focus\:mr-64:focus{
    margin-right     : 16rem !important;
  }

  .sm\:focus\:mb-64:focus{
    margin-bottom     : 16rem !important;
  }

  .sm\:focus\:ml-64:focus{
    margin-left     : 16rem !important;
  }

  .sm\:focus\:mt-72:focus{
    margin-top     : 18rem !important;
  }

  .sm\:focus\:mr-72:focus{
    margin-right     : 18rem !important;
  }

  .sm\:focus\:mb-72:focus{
    margin-bottom     : 18rem !important;
  }

  .sm\:focus\:ml-72:focus{
    margin-left     : 18rem !important;
  }

  .sm\:focus\:mt-80:focus{
    margin-top     : 20rem !important;
  }

  .sm\:focus\:mr-80:focus{
    margin-right     : 20rem !important;
  }

  .sm\:focus\:mb-80:focus{
    margin-bottom     : 20rem !important;
  }

  .sm\:focus\:ml-80:focus{
    margin-left     : 20rem !important;
  }

  .sm\:focus\:mt-96:focus{
    margin-top     : 24rem !important;
  }

  .sm\:focus\:mr-96:focus{
    margin-right     : 24rem !important;
  }

  .sm\:focus\:mb-96:focus{
    margin-bottom     : 24rem !important;
  }

  .sm\:focus\:ml-96:focus{
    margin-left     : 24rem !important;
  }

  .sm\:focus\:mt-auto:focus{
    margin-top     : auto !important;
  }

  .sm\:focus\:mr-auto:focus{
    margin-right     : auto !important;
  }

  .sm\:focus\:mb-auto:focus{
    margin-bottom     : auto !important;
  }

  .sm\:focus\:ml-auto:focus{
    margin-left     : auto !important;
  }

  .sm\:focus\:mt-px:focus{
    margin-top     : 1px !important;
  }

  .sm\:focus\:mr-px:focus{
    margin-right     : 1px !important;
  }

  .sm\:focus\:mb-px:focus{
    margin-bottom     : 1px !important;
  }

  .sm\:focus\:ml-px:focus{
    margin-left     : 1px !important;
  }

  .sm\:focus\:mt-0\.5:focus{
    margin-top     : 0.125rem !important;
  }

  .sm\:focus\:mr-0\.5:focus{
    margin-right     : 0.125rem !important;
  }

  .sm\:focus\:mb-0\.5:focus{
    margin-bottom     : 0.125rem !important;
  }

  .sm\:focus\:ml-0\.5:focus{
    margin-left     : 0.125rem !important;
  }

  .sm\:focus\:mt-1\.5:focus{
    margin-top     : 0.375rem !important;
  }

  .sm\:focus\:mr-1\.5:focus{
    margin-right     : 0.375rem !important;
  }

  .sm\:focus\:mb-1\.5:focus{
    margin-bottom     : 0.375rem !important;
  }

  .sm\:focus\:ml-1\.5:focus{
    margin-left     : 0.375rem !important;
  }

  .sm\:focus\:mt-2\.5:focus{
    margin-top     : 0.625rem !important;
  }

  .sm\:focus\:mr-2\.5:focus{
    margin-right     : 0.625rem !important;
  }

  .sm\:focus\:mb-2\.5:focus{
    margin-bottom     : 0.625rem !important;
  }

  .sm\:focus\:ml-2\.5:focus{
    margin-left     : 0.625rem !important;
  }

  .sm\:focus\:mt-3\.5:focus{
    margin-top     : 0.875rem !important;
  }

  .sm\:focus\:mr-3\.5:focus{
    margin-right     : 0.875rem !important;
  }

  .sm\:focus\:mb-3\.5:focus{
    margin-bottom     : 0.875rem !important;
  }

  .sm\:focus\:ml-3\.5:focus{
    margin-left     : 0.875rem !important;
  }

  .sm\:focus\:mt-1\/2:focus{
    margin-top     : 50% !important;
  }

  .sm\:focus\:mr-1\/2:focus{
    margin-right     : 50% !important;
  }

  .sm\:focus\:mb-1\/2:focus{
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:ml-1\/2:focus{
    margin-left     : 50% !important;
  }

  .sm\:focus\:mt-1\/3:focus{
    margin-top     : 33.333333% !important;
  }

  .sm\:focus\:mr-1\/3:focus{
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:mb-1\/3:focus{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:ml-1\/3:focus{
    margin-left     : 33.333333% !important;
  }

  .sm\:focus\:mt-2\/3:focus{
    margin-top     : 66.666667% !important;
  }

  .sm\:focus\:mr-2\/3:focus{
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:mb-2\/3:focus{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:ml-2\/3:focus{
    margin-left     : 66.666667% !important;
  }

  .sm\:focus\:mt-1\/4:focus{
    margin-top     : 25% !important;
  }

  .sm\:focus\:mr-1\/4:focus{
    margin-right     : 25% !important;
  }

  .sm\:focus\:mb-1\/4:focus{
    margin-bottom     : 25% !important;
  }

  .sm\:focus\:ml-1\/4:focus{
    margin-left     : 25% !important;
  }

  .sm\:focus\:mt-2\/4:focus{
    margin-top     : 50% !important;
  }

  .sm\:focus\:mr-2\/4:focus{
    margin-right     : 50% !important;
  }

  .sm\:focus\:mb-2\/4:focus{
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:ml-2\/4:focus{
    margin-left     : 50% !important;
  }

  .sm\:focus\:mt-3\/4:focus{
    margin-top     : 75% !important;
  }

  .sm\:focus\:mr-3\/4:focus{
    margin-right     : 75% !important;
  }

  .sm\:focus\:mb-3\/4:focus{
    margin-bottom     : 75% !important;
  }

  .sm\:focus\:ml-3\/4:focus{
    margin-left     : 75% !important;
  }

  .sm\:focus\:mt-1\/5:focus{
    margin-top     : 20% !important;
  }

  .sm\:focus\:mr-1\/5:focus{
    margin-right     : 20% !important;
  }

  .sm\:focus\:mb-1\/5:focus{
    margin-bottom     : 20% !important;
  }

  .sm\:focus\:ml-1\/5:focus{
    margin-left     : 20% !important;
  }

  .sm\:focus\:mt-2\/5:focus{
    margin-top     : 40% !important;
  }

  .sm\:focus\:mr-2\/5:focus{
    margin-right     : 40% !important;
  }

  .sm\:focus\:mb-2\/5:focus{
    margin-bottom     : 40% !important;
  }

  .sm\:focus\:ml-2\/5:focus{
    margin-left     : 40% !important;
  }

  .sm\:focus\:mt-3\/5:focus{
    margin-top     : 60% !important;
  }

  .sm\:focus\:mr-3\/5:focus{
    margin-right     : 60% !important;
  }

  .sm\:focus\:mb-3\/5:focus{
    margin-bottom     : 60% !important;
  }

  .sm\:focus\:ml-3\/5:focus{
    margin-left     : 60% !important;
  }

  .sm\:focus\:mt-4\/5:focus{
    margin-top     : 80% !important;
  }

  .sm\:focus\:mr-4\/5:focus{
    margin-right     : 80% !important;
  }

  .sm\:focus\:mb-4\/5:focus{
    margin-bottom     : 80% !important;
  }

  .sm\:focus\:ml-4\/5:focus{
    margin-left     : 80% !important;
  }

  .sm\:focus\:mt-1\/6:focus{
    margin-top     : 16.666667% !important;
  }

  .sm\:focus\:mr-1\/6:focus{
    margin-right     : 16.666667% !important;
  }

  .sm\:focus\:mb-1\/6:focus{
    margin-bottom     : 16.666667% !important;
  }

  .sm\:focus\:ml-1\/6:focus{
    margin-left     : 16.666667% !important;
  }

  .sm\:focus\:mt-2\/6:focus{
    margin-top     : 33.333333% !important;
  }

  .sm\:focus\:mr-2\/6:focus{
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:mb-2\/6:focus{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:ml-2\/6:focus{
    margin-left     : 33.333333% !important;
  }

  .sm\:focus\:mt-3\/6:focus{
    margin-top     : 50% !important;
  }

  .sm\:focus\:mr-3\/6:focus{
    margin-right     : 50% !important;
  }

  .sm\:focus\:mb-3\/6:focus{
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:ml-3\/6:focus{
    margin-left     : 50% !important;
  }

  .sm\:focus\:mt-4\/6:focus{
    margin-top     : 66.666667% !important;
  }

  .sm\:focus\:mr-4\/6:focus{
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:mb-4\/6:focus{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:ml-4\/6:focus{
    margin-left     : 66.666667% !important;
  }

  .sm\:focus\:mt-5\/6:focus{
    margin-top     : 83.333333% !important;
  }

  .sm\:focus\:mr-5\/6:focus{
    margin-right     : 83.333333% !important;
  }

  .sm\:focus\:mb-5\/6:focus{
    margin-bottom     : 83.333333% !important;
  }

  .sm\:focus\:ml-5\/6:focus{
    margin-left     : 83.333333% !important;
  }

  .sm\:focus\:mt-1\/12:focus{
    margin-top     : 8.333333% !important;
  }

  .sm\:focus\:mr-1\/12:focus{
    margin-right     : 8.333333% !important;
  }

  .sm\:focus\:mb-1\/12:focus{
    margin-bottom     : 8.333333% !important;
  }

  .sm\:focus\:ml-1\/12:focus{
    margin-left     : 8.333333% !important;
  }

  .sm\:focus\:mt-2\/12:focus{
    margin-top     : 16.666667% !important;
  }

  .sm\:focus\:mr-2\/12:focus{
    margin-right     : 16.666667% !important;
  }

  .sm\:focus\:mb-2\/12:focus{
    margin-bottom     : 16.666667% !important;
  }

  .sm\:focus\:ml-2\/12:focus{
    margin-left     : 16.666667% !important;
  }

  .sm\:focus\:mt-3\/12:focus{
    margin-top     : 25% !important;
  }

  .sm\:focus\:mr-3\/12:focus{
    margin-right     : 25% !important;
  }

  .sm\:focus\:mb-3\/12:focus{
    margin-bottom     : 25% !important;
  }

  .sm\:focus\:ml-3\/12:focus{
    margin-left     : 25% !important;
  }

  .sm\:focus\:mt-4\/12:focus{
    margin-top     : 33.333333% !important;
  }

  .sm\:focus\:mr-4\/12:focus{
    margin-right     : 33.333333% !important;
  }

  .sm\:focus\:mb-4\/12:focus{
    margin-bottom     : 33.333333% !important;
  }

  .sm\:focus\:ml-4\/12:focus{
    margin-left     : 33.333333% !important;
  }

  .sm\:focus\:mt-5\/12:focus{
    margin-top     : 41.666667% !important;
  }

  .sm\:focus\:mr-5\/12:focus{
    margin-right     : 41.666667% !important;
  }

  .sm\:focus\:mb-5\/12:focus{
    margin-bottom     : 41.666667% !important;
  }

  .sm\:focus\:ml-5\/12:focus{
    margin-left     : 41.666667% !important;
  }

  .sm\:focus\:mt-6\/12:focus{
    margin-top     : 50% !important;
  }

  .sm\:focus\:mr-6\/12:focus{
    margin-right     : 50% !important;
  }

  .sm\:focus\:mb-6\/12:focus{
    margin-bottom     : 50% !important;
  }

  .sm\:focus\:ml-6\/12:focus{
    margin-left     : 50% !important;
  }

  .sm\:focus\:mt-7\/12:focus{
    margin-top     : 58.333333% !important;
  }

  .sm\:focus\:mr-7\/12:focus{
    margin-right     : 58.333333% !important;
  }

  .sm\:focus\:mb-7\/12:focus{
    margin-bottom     : 58.333333% !important;
  }

  .sm\:focus\:ml-7\/12:focus{
    margin-left     : 58.333333% !important;
  }

  .sm\:focus\:mt-8\/12:focus{
    margin-top     : 66.666667% !important;
  }

  .sm\:focus\:mr-8\/12:focus{
    margin-right     : 66.666667% !important;
  }

  .sm\:focus\:mb-8\/12:focus{
    margin-bottom     : 66.666667% !important;
  }

  .sm\:focus\:ml-8\/12:focus{
    margin-left     : 66.666667% !important;
  }

  .sm\:focus\:mt-9\/12:focus{
    margin-top     : 75% !important;
  }

  .sm\:focus\:mr-9\/12:focus{
    margin-right     : 75% !important;
  }

  .sm\:focus\:mb-9\/12:focus{
    margin-bottom     : 75% !important;
  }

  .sm\:focus\:ml-9\/12:focus{
    margin-left     : 75% !important;
  }

  .sm\:focus\:mt-10\/12:focus{
    margin-top     : 83.333333% !important;
  }

  .sm\:focus\:mr-10\/12:focus{
    margin-right     : 83.333333% !important;
  }

  .sm\:focus\:mb-10\/12:focus{
    margin-bottom     : 83.333333% !important;
  }

  .sm\:focus\:ml-10\/12:focus{
    margin-left     : 83.333333% !important;
  }

  .sm\:focus\:mt-11\/12:focus{
    margin-top     : 91.666667% !important;
  }

  .sm\:focus\:mr-11\/12:focus{
    margin-right     : 91.666667% !important;
  }

  .sm\:focus\:mb-11\/12:focus{
    margin-bottom     : 91.666667% !important;
  }

  .sm\:focus\:ml-11\/12:focus{
    margin-left     : 91.666667% !important;
  }

  .sm\:focus\:mt-full:focus{
    margin-top     : 100% !important;
  }

  .sm\:focus\:mr-full:focus{
    margin-right     : 100% !important;
  }

  .sm\:focus\:mb-full:focus{
    margin-bottom     : 100% !important;
  }

  .sm\:focus\:ml-full:focus{
    margin-left     : 100% !important;
  }

  .sm\:focus\:-mt-1:focus{
    margin-top     : -0.25rem !important;
  }

  .sm\:focus\:-mr-1:focus{
    margin-right     : -0.25rem !important;
  }

  .sm\:focus\:-mb-1:focus{
    margin-bottom     : -0.25rem !important;
  }

  .sm\:focus\:-ml-1:focus{
    margin-left     : -0.25rem !important;
  }

  .sm\:focus\:-mt-2:focus{
    margin-top     : -0.5rem !important;
  }

  .sm\:focus\:-mr-2:focus{
    margin-right     : -0.5rem !important;
  }

  .sm\:focus\:-mb-2:focus{
    margin-bottom     : -0.5rem !important;
  }

  .sm\:focus\:-ml-2:focus{
    margin-left     : -0.5rem !important;
  }

  .sm\:focus\:-mt-3:focus{
    margin-top     : -0.75rem !important;
  }

  .sm\:focus\:-mr-3:focus{
    margin-right     : -0.75rem !important;
  }

  .sm\:focus\:-mb-3:focus{
    margin-bottom     : -0.75rem !important;
  }

  .sm\:focus\:-ml-3:focus{
    margin-left     : -0.75rem !important;
  }

  .sm\:focus\:-mt-4:focus{
    margin-top     : -1rem !important;
  }

  .sm\:focus\:-mr-4:focus{
    margin-right     : -1rem !important;
  }

  .sm\:focus\:-mb-4:focus{
    margin-bottom     : -1rem !important;
  }

  .sm\:focus\:-ml-4:focus{
    margin-left     : -1rem !important;
  }

  .sm\:focus\:-mt-5:focus{
    margin-top     : -1.25rem !important;
  }

  .sm\:focus\:-mr-5:focus{
    margin-right     : -1.25rem !important;
  }

  .sm\:focus\:-mb-5:focus{
    margin-bottom     : -1.25rem !important;
  }

  .sm\:focus\:-ml-5:focus{
    margin-left     : -1.25rem !important;
  }

  .sm\:focus\:-mt-6:focus{
    margin-top     : -1.5rem !important;
  }

  .sm\:focus\:-mr-6:focus{
    margin-right     : -1.5rem !important;
  }

  .sm\:focus\:-mb-6:focus{
    margin-bottom     : -1.5rem !important;
  }

  .sm\:focus\:-ml-6:focus{
    margin-left     : -1.5rem !important;
  }

  .sm\:focus\:-mt-7:focus{
    margin-top     : -1.75rem !important;
  }

  .sm\:focus\:-mr-7:focus{
    margin-right     : -1.75rem !important;
  }

  .sm\:focus\:-mb-7:focus{
    margin-bottom     : -1.75rem !important;
  }

  .sm\:focus\:-ml-7:focus{
    margin-left     : -1.75rem !important;
  }

  .sm\:focus\:-mt-8:focus{
    margin-top     : -2rem !important;
  }

  .sm\:focus\:-mr-8:focus{
    margin-right     : -2rem !important;
  }

  .sm\:focus\:-mb-8:focus{
    margin-bottom     : -2rem !important;
  }

  .sm\:focus\:-ml-8:focus{
    margin-left     : -2rem !important;
  }

  .sm\:focus\:-mt-9:focus{
    margin-top     : -2.25rem !important;
  }

  .sm\:focus\:-mr-9:focus{
    margin-right     : -2.25rem !important;
  }

  .sm\:focus\:-mb-9:focus{
    margin-bottom     : -2.25rem !important;
  }

  .sm\:focus\:-ml-9:focus{
    margin-left     : -2.25rem !important;
  }

  .sm\:focus\:-mt-10:focus{
    margin-top     : -2.5rem !important;
  }

  .sm\:focus\:-mr-10:focus{
    margin-right     : -2.5rem !important;
  }

  .sm\:focus\:-mb-10:focus{
    margin-bottom     : -2.5rem !important;
  }

  .sm\:focus\:-ml-10:focus{
    margin-left     : -2.5rem !important;
  }

  .sm\:focus\:-mt-11:focus{
    margin-top     : -2.75rem !important;
  }

  .sm\:focus\:-mr-11:focus{
    margin-right     : -2.75rem !important;
  }

  .sm\:focus\:-mb-11:focus{
    margin-bottom     : -2.75rem !important;
  }

  .sm\:focus\:-ml-11:focus{
    margin-left     : -2.75rem !important;
  }

  .sm\:focus\:-mt-12:focus{
    margin-top     : -3rem !important;
  }

  .sm\:focus\:-mr-12:focus{
    margin-right     : -3rem !important;
  }

  .sm\:focus\:-mb-12:focus{
    margin-bottom     : -3rem !important;
  }

  .sm\:focus\:-ml-12:focus{
    margin-left     : -3rem !important;
  }

  .sm\:focus\:-mt-13:focus{
    margin-top     : -3.25rem !important;
  }

  .sm\:focus\:-mr-13:focus{
    margin-right     : -3.25rem !important;
  }

  .sm\:focus\:-mb-13:focus{
    margin-bottom     : -3.25rem !important;
  }

  .sm\:focus\:-ml-13:focus{
    margin-left     : -3.25rem !important;
  }

  .sm\:focus\:-mt-14:focus{
    margin-top     : -3.5rem !important;
  }

  .sm\:focus\:-mr-14:focus{
    margin-right     : -3.5rem !important;
  }

  .sm\:focus\:-mb-14:focus{
    margin-bottom     : -3.5rem !important;
  }

  .sm\:focus\:-ml-14:focus{
    margin-left     : -3.5rem !important;
  }

  .sm\:focus\:-mt-15:focus{
    margin-top     : -3.75rem !important;
  }

  .sm\:focus\:-mr-15:focus{
    margin-right     : -3.75rem !important;
  }

  .sm\:focus\:-mb-15:focus{
    margin-bottom     : -3.75rem !important;
  }

  .sm\:focus\:-ml-15:focus{
    margin-left     : -3.75rem !important;
  }

  .sm\:focus\:-mt-16:focus{
    margin-top     : -4rem !important;
  }

  .sm\:focus\:-mr-16:focus{
    margin-right     : -4rem !important;
  }

  .sm\:focus\:-mb-16:focus{
    margin-bottom     : -4rem !important;
  }

  .sm\:focus\:-ml-16:focus{
    margin-left     : -4rem !important;
  }

  .sm\:focus\:-mt-20:focus{
    margin-top     : -5rem !important;
  }

  .sm\:focus\:-mr-20:focus{
    margin-right     : -5rem !important;
  }

  .sm\:focus\:-mb-20:focus{
    margin-bottom     : -5rem !important;
  }

  .sm\:focus\:-ml-20:focus{
    margin-left     : -5rem !important;
  }

  .sm\:focus\:-mt-24:focus{
    margin-top     : -6rem !important;
  }

  .sm\:focus\:-mr-24:focus{
    margin-right     : -6rem !important;
  }

  .sm\:focus\:-mb-24:focus{
    margin-bottom     : -6rem !important;
  }

  .sm\:focus\:-ml-24:focus{
    margin-left     : -6rem !important;
  }

  .sm\:focus\:-mt-28:focus{
    margin-top     : -7rem !important;
  }

  .sm\:focus\:-mr-28:focus{
    margin-right     : -7rem !important;
  }

  .sm\:focus\:-mb-28:focus{
    margin-bottom     : -7rem !important;
  }

  .sm\:focus\:-ml-28:focus{
    margin-left     : -7rem !important;
  }

  .sm\:focus\:-mt-32:focus{
    margin-top     : -8rem !important;
  }

  .sm\:focus\:-mr-32:focus{
    margin-right     : -8rem !important;
  }

  .sm\:focus\:-mb-32:focus{
    margin-bottom     : -8rem !important;
  }

  .sm\:focus\:-ml-32:focus{
    margin-left     : -8rem !important;
  }

  .sm\:focus\:-mt-36:focus{
    margin-top     : -9rem !important;
  }

  .sm\:focus\:-mr-36:focus{
    margin-right     : -9rem !important;
  }

  .sm\:focus\:-mb-36:focus{
    margin-bottom     : -9rem !important;
  }

  .sm\:focus\:-ml-36:focus{
    margin-left     : -9rem !important;
  }

  .sm\:focus\:-mt-40:focus{
    margin-top     : -10rem !important;
  }

  .sm\:focus\:-mr-40:focus{
    margin-right     : -10rem !important;
  }

  .sm\:focus\:-mb-40:focus{
    margin-bottom     : -10rem !important;
  }

  .sm\:focus\:-ml-40:focus{
    margin-left     : -10rem !important;
  }

  .sm\:focus\:-mt-44:focus{
    margin-top     : -11rem !important;
  }

  .sm\:focus\:-mr-44:focus{
    margin-right     : -11rem !important;
  }

  .sm\:focus\:-mb-44:focus{
    margin-bottom     : -11rem !important;
  }

  .sm\:focus\:-ml-44:focus{
    margin-left     : -11rem !important;
  }

  .sm\:focus\:-mt-48:focus{
    margin-top     : -12rem !important;
  }

  .sm\:focus\:-mr-48:focus{
    margin-right     : -12rem !important;
  }

  .sm\:focus\:-mb-48:focus{
    margin-bottom     : -12rem !important;
  }

  .sm\:focus\:-ml-48:focus{
    margin-left     : -12rem !important;
  }

  .sm\:focus\:-mt-52:focus{
    margin-top     : -13rem !important;
  }

  .sm\:focus\:-mr-52:focus{
    margin-right     : -13rem !important;
  }

  .sm\:focus\:-mb-52:focus{
    margin-bottom     : -13rem !important;
  }

  .sm\:focus\:-ml-52:focus{
    margin-left     : -13rem !important;
  }

  .sm\:focus\:-mt-56:focus{
    margin-top     : -14rem !important;
  }

  .sm\:focus\:-mr-56:focus{
    margin-right     : -14rem !important;
  }

  .sm\:focus\:-mb-56:focus{
    margin-bottom     : -14rem !important;
  }

  .sm\:focus\:-ml-56:focus{
    margin-left     : -14rem !important;
  }

  .sm\:focus\:-mt-60:focus{
    margin-top     : -15rem !important;
  }

  .sm\:focus\:-mr-60:focus{
    margin-right     : -15rem !important;
  }

  .sm\:focus\:-mb-60:focus{
    margin-bottom     : -15rem !important;
  }

  .sm\:focus\:-ml-60:focus{
    margin-left     : -15rem !important;
  }

  .sm\:focus\:-mt-64:focus{
    margin-top     : -16rem !important;
  }

  .sm\:focus\:-mr-64:focus{
    margin-right     : -16rem !important;
  }

  .sm\:focus\:-mb-64:focus{
    margin-bottom     : -16rem !important;
  }

  .sm\:focus\:-ml-64:focus{
    margin-left     : -16rem !important;
  }

  .sm\:focus\:-mt-72:focus{
    margin-top     : -18rem !important;
  }

  .sm\:focus\:-mr-72:focus{
    margin-right     : -18rem !important;
  }

  .sm\:focus\:-mb-72:focus{
    margin-bottom     : -18rem !important;
  }

  .sm\:focus\:-ml-72:focus{
    margin-left     : -18rem !important;
  }

  .sm\:focus\:-mt-80:focus{
    margin-top     : -20rem !important;
  }

  .sm\:focus\:-mr-80:focus{
    margin-right     : -20rem !important;
  }

  .sm\:focus\:-mb-80:focus{
    margin-bottom     : -20rem !important;
  }

  .sm\:focus\:-ml-80:focus{
    margin-left     : -20rem !important;
  }

  .sm\:focus\:-mt-96:focus{
    margin-top     : -24rem !important;
  }

  .sm\:focus\:-mr-96:focus{
    margin-right     : -24rem !important;
  }

  .sm\:focus\:-mb-96:focus{
    margin-bottom     : -24rem !important;
  }

  .sm\:focus\:-ml-96:focus{
    margin-left     : -24rem !important;
  }

  .sm\:focus\:-mt-px:focus{
    margin-top     : -1px !important;
  }

  .sm\:focus\:-mr-px:focus{
    margin-right     : -1px !important;
  }

  .sm\:focus\:-mb-px:focus{
    margin-bottom     : -1px !important;
  }

  .sm\:focus\:-ml-px:focus{
    margin-left     : -1px !important;
  }

  .sm\:focus\:-mt-0\.5:focus{
    margin-top     : -0.125rem !important;
  }

  .sm\:focus\:-mr-0\.5:focus{
    margin-right     : -0.125rem !important;
  }

  .sm\:focus\:-mb-0\.5:focus{
    margin-bottom     : -0.125rem !important;
  }

  .sm\:focus\:-ml-0\.5:focus{
    margin-left     : -0.125rem !important;
  }

  .sm\:focus\:-mt-1\.5:focus{
    margin-top     : -0.375rem !important;
  }

  .sm\:focus\:-mr-1\.5:focus{
    margin-right     : -0.375rem !important;
  }

  .sm\:focus\:-mb-1\.5:focus{
    margin-bottom     : -0.375rem !important;
  }

  .sm\:focus\:-ml-1\.5:focus{
    margin-left     : -0.375rem !important;
  }

  .sm\:focus\:-mt-2\.5:focus{
    margin-top     : -0.625rem !important;
  }

  .sm\:focus\:-mr-2\.5:focus{
    margin-right     : -0.625rem !important;
  }

  .sm\:focus\:-mb-2\.5:focus{
    margin-bottom     : -0.625rem !important;
  }

  .sm\:focus\:-ml-2\.5:focus{
    margin-left     : -0.625rem !important;
  }

  .sm\:focus\:-mt-3\.5:focus{
    margin-top     : -0.875rem !important;
  }

  .sm\:focus\:-mr-3\.5:focus{
    margin-right     : -0.875rem !important;
  }

  .sm\:focus\:-mb-3\.5:focus{
    margin-bottom     : -0.875rem !important;
  }

  .sm\:focus\:-ml-3\.5:focus{
    margin-left     : -0.875rem !important;
  }

  .sm\:focus\:-mt-1\/2:focus{
    margin-top     : -50% !important;
  }

  .sm\:focus\:-mr-1\/2:focus{
    margin-right     : -50% !important;
  }

  .sm\:focus\:-mb-1\/2:focus{
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-ml-1\/2:focus{
    margin-left     : -50% !important;
  }

  .sm\:focus\:-mt-1\/3:focus{
    margin-top     : -33.33333% !important;
  }

  .sm\:focus\:-mr-1\/3:focus{
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-mb-1\/3:focus{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-ml-1\/3:focus{
    margin-left     : -33.33333% !important;
  }

  .sm\:focus\:-mt-2\/3:focus{
    margin-top     : -66.66667% !important;
  }

  .sm\:focus\:-mr-2\/3:focus{
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-mb-2\/3:focus{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-ml-2\/3:focus{
    margin-left     : -66.66667% !important;
  }

  .sm\:focus\:-mt-1\/4:focus{
    margin-top     : -25% !important;
  }

  .sm\:focus\:-mr-1\/4:focus{
    margin-right     : -25% !important;
  }

  .sm\:focus\:-mb-1\/4:focus{
    margin-bottom     : -25% !important;
  }

  .sm\:focus\:-ml-1\/4:focus{
    margin-left     : -25% !important;
  }

  .sm\:focus\:-mt-2\/4:focus{
    margin-top     : -50% !important;
  }

  .sm\:focus\:-mr-2\/4:focus{
    margin-right     : -50% !important;
  }

  .sm\:focus\:-mb-2\/4:focus{
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-ml-2\/4:focus{
    margin-left     : -50% !important;
  }

  .sm\:focus\:-mt-3\/4:focus{
    margin-top     : -75% !important;
  }

  .sm\:focus\:-mr-3\/4:focus{
    margin-right     : -75% !important;
  }

  .sm\:focus\:-mb-3\/4:focus{
    margin-bottom     : -75% !important;
  }

  .sm\:focus\:-ml-3\/4:focus{
    margin-left     : -75% !important;
  }

  .sm\:focus\:-mt-1\/5:focus{
    margin-top     : -20% !important;
  }

  .sm\:focus\:-mr-1\/5:focus{
    margin-right     : -20% !important;
  }

  .sm\:focus\:-mb-1\/5:focus{
    margin-bottom     : -20% !important;
  }

  .sm\:focus\:-ml-1\/5:focus{
    margin-left     : -20% !important;
  }

  .sm\:focus\:-mt-2\/5:focus{
    margin-top     : -40% !important;
  }

  .sm\:focus\:-mr-2\/5:focus{
    margin-right     : -40% !important;
  }

  .sm\:focus\:-mb-2\/5:focus{
    margin-bottom     : -40% !important;
  }

  .sm\:focus\:-ml-2\/5:focus{
    margin-left     : -40% !important;
  }

  .sm\:focus\:-mt-3\/5:focus{
    margin-top     : -60% !important;
  }

  .sm\:focus\:-mr-3\/5:focus{
    margin-right     : -60% !important;
  }

  .sm\:focus\:-mb-3\/5:focus{
    margin-bottom     : -60% !important;
  }

  .sm\:focus\:-ml-3\/5:focus{
    margin-left     : -60% !important;
  }

  .sm\:focus\:-mt-4\/5:focus{
    margin-top     : -80% !important;
  }

  .sm\:focus\:-mr-4\/5:focus{
    margin-right     : -80% !important;
  }

  .sm\:focus\:-mb-4\/5:focus{
    margin-bottom     : -80% !important;
  }

  .sm\:focus\:-ml-4\/5:focus{
    margin-left     : -80% !important;
  }

  .sm\:focus\:-mt-1\/6:focus{
    margin-top     : -16.66667% !important;
  }

  .sm\:focus\:-mr-1\/6:focus{
    margin-right     : -16.66667% !important;
  }

  .sm\:focus\:-mb-1\/6:focus{
    margin-bottom     : -16.66667% !important;
  }

  .sm\:focus\:-ml-1\/6:focus{
    margin-left     : -16.66667% !important;
  }

  .sm\:focus\:-mt-2\/6:focus{
    margin-top     : -33.33333% !important;
  }

  .sm\:focus\:-mr-2\/6:focus{
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-mb-2\/6:focus{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-ml-2\/6:focus{
    margin-left     : -33.33333% !important;
  }

  .sm\:focus\:-mt-3\/6:focus{
    margin-top     : -50% !important;
  }

  .sm\:focus\:-mr-3\/6:focus{
    margin-right     : -50% !important;
  }

  .sm\:focus\:-mb-3\/6:focus{
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-ml-3\/6:focus{
    margin-left     : -50% !important;
  }

  .sm\:focus\:-mt-4\/6:focus{
    margin-top     : -66.66667% !important;
  }

  .sm\:focus\:-mr-4\/6:focus{
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-mb-4\/6:focus{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-ml-4\/6:focus{
    margin-left     : -66.66667% !important;
  }

  .sm\:focus\:-mt-5\/6:focus{
    margin-top     : -83.33333% !important;
  }

  .sm\:focus\:-mr-5\/6:focus{
    margin-right     : -83.33333% !important;
  }

  .sm\:focus\:-mb-5\/6:focus{
    margin-bottom     : -83.33333% !important;
  }

  .sm\:focus\:-ml-5\/6:focus{
    margin-left     : -83.33333% !important;
  }

  .sm\:focus\:-mt-1\/12:focus{
    margin-top     : -8.33333% !important;
  }

  .sm\:focus\:-mr-1\/12:focus{
    margin-right     : -8.33333% !important;
  }

  .sm\:focus\:-mb-1\/12:focus{
    margin-bottom     : -8.33333% !important;
  }

  .sm\:focus\:-ml-1\/12:focus{
    margin-left     : -8.33333% !important;
  }

  .sm\:focus\:-mt-2\/12:focus{
    margin-top     : -16.66667% !important;
  }

  .sm\:focus\:-mr-2\/12:focus{
    margin-right     : -16.66667% !important;
  }

  .sm\:focus\:-mb-2\/12:focus{
    margin-bottom     : -16.66667% !important;
  }

  .sm\:focus\:-ml-2\/12:focus{
    margin-left     : -16.66667% !important;
  }

  .sm\:focus\:-mt-3\/12:focus{
    margin-top     : -25% !important;
  }

  .sm\:focus\:-mr-3\/12:focus{
    margin-right     : -25% !important;
  }

  .sm\:focus\:-mb-3\/12:focus{
    margin-bottom     : -25% !important;
  }

  .sm\:focus\:-ml-3\/12:focus{
    margin-left     : -25% !important;
  }

  .sm\:focus\:-mt-4\/12:focus{
    margin-top     : -33.33333% !important;
  }

  .sm\:focus\:-mr-4\/12:focus{
    margin-right     : -33.33333% !important;
  }

  .sm\:focus\:-mb-4\/12:focus{
    margin-bottom     : -33.33333% !important;
  }

  .sm\:focus\:-ml-4\/12:focus{
    margin-left     : -33.33333% !important;
  }

  .sm\:focus\:-mt-5\/12:focus{
    margin-top     : -41.66667% !important;
  }

  .sm\:focus\:-mr-5\/12:focus{
    margin-right     : -41.66667% !important;
  }

  .sm\:focus\:-mb-5\/12:focus{
    margin-bottom     : -41.66667% !important;
  }

  .sm\:focus\:-ml-5\/12:focus{
    margin-left     : -41.66667% !important;
  }

  .sm\:focus\:-mt-6\/12:focus{
    margin-top     : -50% !important;
  }

  .sm\:focus\:-mr-6\/12:focus{
    margin-right     : -50% !important;
  }

  .sm\:focus\:-mb-6\/12:focus{
    margin-bottom     : -50% !important;
  }

  .sm\:focus\:-ml-6\/12:focus{
    margin-left     : -50% !important;
  }

  .sm\:focus\:-mt-7\/12:focus{
    margin-top     : -58.33333% !important;
  }

  .sm\:focus\:-mr-7\/12:focus{
    margin-right     : -58.33333% !important;
  }

  .sm\:focus\:-mb-7\/12:focus{
    margin-bottom     : -58.33333% !important;
  }

  .sm\:focus\:-ml-7\/12:focus{
    margin-left     : -58.33333% !important;
  }

  .sm\:focus\:-mt-8\/12:focus{
    margin-top     : -66.66667% !important;
  }

  .sm\:focus\:-mr-8\/12:focus{
    margin-right     : -66.66667% !important;
  }

  .sm\:focus\:-mb-8\/12:focus{
    margin-bottom     : -66.66667% !important;
  }

  .sm\:focus\:-ml-8\/12:focus{
    margin-left     : -66.66667% !important;
  }

  .sm\:focus\:-mt-9\/12:focus{
    margin-top     : -75% !important;
  }

  .sm\:focus\:-mr-9\/12:focus{
    margin-right     : -75% !important;
  }

  .sm\:focus\:-mb-9\/12:focus{
    margin-bottom     : -75% !important;
  }

  .sm\:focus\:-ml-9\/12:focus{
    margin-left     : -75% !important;
  }

  .sm\:focus\:-mt-10\/12:focus{
    margin-top     : -83.33333% !important;
  }

  .sm\:focus\:-mr-10\/12:focus{
    margin-right     : -83.33333% !important;
  }

  .sm\:focus\:-mb-10\/12:focus{
    margin-bottom     : -83.33333% !important;
  }

  .sm\:focus\:-ml-10\/12:focus{
    margin-left     : -83.33333% !important;
  }

  .sm\:focus\:-mt-11\/12:focus{
    margin-top     : -91.66667% !important;
  }

  .sm\:focus\:-mr-11\/12:focus{
    margin-right     : -91.66667% !important;
  }

  .sm\:focus\:-mb-11\/12:focus{
    margin-bottom     : -91.66667% !important;
  }

  .sm\:focus\:-ml-11\/12:focus{
    margin-left     : -91.66667% !important;
  }

  .sm\:focus\:-mt-full:focus{
    margin-top     : -100% !important;
  }

  .sm\:focus\:-mr-full:focus{
    margin-right     : -100% !important;
  }

  .sm\:focus\:-mb-full:focus{
    margin-bottom     : -100% !important;
  }

  .sm\:focus\:-ml-full:focus{
    margin-left     : -100% !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-20{
    max-height     : 5rem !important;
  }

  .sm\:max-h-24{
    max-height     : 6rem !important;
  }

  .sm\:max-h-28{
    max-height     : 7rem !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-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-96{
    max-height     : 24rem !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;
  }

  .group:hover .sm\:group-hover\:max-h-0{
    max-height     : 0 !important;
  }

  .group:hover .sm\:group-hover\:max-h-1{
    max-height     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-2{
    max-height     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-3{
    max-height     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-4{
    max-height     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-5{
    max-height     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-6{
    max-height     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-7{
    max-height     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-8{
    max-height     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-9{
    max-height     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-10{
    max-height     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-11{
    max-height     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-12{
    max-height     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-13{
    max-height     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-14{
    max-height     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-15{
    max-height     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-16{
    max-height     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-20{
    max-height     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-24{
    max-height     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-28{
    max-height     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-32{
    max-height     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-36{
    max-height     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-40{
    max-height     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-44{
    max-height     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-48{
    max-height     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-52{
    max-height     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-56{
    max-height     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-60{
    max-height     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-64{
    max-height     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-72{
    max-height     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-80{
    max-height     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-96{
    max-height     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-screen{
    max-height     : 100vh !important;
  }

  .group:hover .sm\:group-hover\:max-h-px{
    max-height     : 1px !important;
  }

  .group:hover .sm\:group-hover\:max-h-0\.5{
    max-height     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\.5{
    max-height     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\.5{
    max-height     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-3\.5{
    max-height     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/2{
    max-height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/3{
    max-height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\/3{
    max-height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/4{
    max-height     : 25% !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\/4{
    max-height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:max-h-3\/4{
    max-height     : 75% !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/5{
    max-height     : 20% !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\/5{
    max-height     : 40% !important;
  }

  .group:hover .sm\:group-hover\:max-h-3\/5{
    max-height     : 60% !important;
  }

  .group:hover .sm\:group-hover\:max-h-4\/5{
    max-height     : 80% !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/6{
    max-height     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\/6{
    max-height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-3\/6{
    max-height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:max-h-4\/6{
    max-height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-5\/6{
    max-height     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-1\/12{
    max-height     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-2\/12{
    max-height     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-3\/12{
    max-height     : 25% !important;
  }

  .group:hover .sm\:group-hover\:max-h-4\/12{
    max-height     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-5\/12{
    max-height     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-6\/12{
    max-height     : 50% !important;
  }

  .group:hover .sm\:group-hover\:max-h-7\/12{
    max-height     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-8\/12{
    max-height     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-9\/12{
    max-height     : 75% !important;
  }

  .group:hover .sm\:group-hover\:max-h-10\/12{
    max-height     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:max-h-11\/12{
    max-height     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:max-h-full{
    max-height     : 100% !important;
  }

  .sm\:hover\:max-h-0:hover{
    max-height     : 0 !important;
  }

  .sm\:hover\:max-h-1:hover{
    max-height     : 0.25rem !important;
  }

  .sm\:hover\:max-h-2:hover{
    max-height     : 0.5rem !important;
  }

  .sm\:hover\:max-h-3:hover{
    max-height     : 0.75rem !important;
  }

  .sm\:hover\:max-h-4:hover{
    max-height     : 1rem !important;
  }

  .sm\:hover\:max-h-5:hover{
    max-height     : 1.25rem !important;
  }

  .sm\:hover\:max-h-6:hover{
    max-height     : 1.5rem !important;
  }

  .sm\:hover\:max-h-7:hover{
    max-height     : 1.75rem !important;
  }

  .sm\:hover\:max-h-8:hover{
    max-height     : 2rem !important;
  }

  .sm\:hover\:max-h-9:hover{
    max-height     : 2.25rem !important;
  }

  .sm\:hover\:max-h-10:hover{
    max-height     : 2.5rem !important;
  }

  .sm\:hover\:max-h-11:hover{
    max-height     : 2.75rem !important;
  }

  .sm\:hover\:max-h-12:hover{
    max-height     : 3rem !important;
  }

  .sm\:hover\:max-h-13:hover{
    max-height     : 3.25rem !important;
  }

  .sm\:hover\:max-h-14:hover{
    max-height     : 3.5rem !important;
  }

  .sm\:hover\:max-h-15:hover{
    max-height     : 3.75rem !important;
  }

  .sm\:hover\:max-h-16:hover{
    max-height     : 4rem !important;
  }

  .sm\:hover\:max-h-20:hover{
    max-height     : 5rem !important;
  }

  .sm\:hover\:max-h-24:hover{
    max-height     : 6rem !important;
  }

  .sm\:hover\:max-h-28:hover{
    max-height     : 7rem !important;
  }

  .sm\:hover\:max-h-32:hover{
    max-height     : 8rem !important;
  }

  .sm\:hover\:max-h-36:hover{
    max-height     : 9rem !important;
  }

  .sm\:hover\:max-h-40:hover{
    max-height     : 10rem !important;
  }

  .sm\:hover\:max-h-44:hover{
    max-height     : 11rem !important;
  }

  .sm\:hover\:max-h-48:hover{
    max-height     : 12rem !important;
  }

  .sm\:hover\:max-h-52:hover{
    max-height     : 13rem !important;
  }

  .sm\:hover\:max-h-56:hover{
    max-height     : 14rem !important;
  }

  .sm\:hover\:max-h-60:hover{
    max-height     : 15rem !important;
  }

  .sm\:hover\:max-h-64:hover{
    max-height     : 16rem !important;
  }

  .sm\:hover\:max-h-72:hover{
    max-height     : 18rem !important;
  }

  .sm\:hover\:max-h-80:hover{
    max-height     : 20rem !important;
  }

  .sm\:hover\:max-h-96:hover{
    max-height     : 24rem !important;
  }

  .sm\:hover\:max-h-screen:hover{
    max-height     : 100vh !important;
  }

  .sm\:hover\:max-h-px:hover{
    max-height     : 1px !important;
  }

  .sm\:hover\:max-h-0\.5:hover{
    max-height     : 0.125rem !important;
  }

  .sm\:hover\:max-h-1\.5:hover{
    max-height     : 0.375rem !important;
  }

  .sm\:hover\:max-h-2\.5:hover{
    max-height     : 0.625rem !important;
  }

  .sm\:hover\:max-h-3\.5:hover{
    max-height     : 0.875rem !important;
  }

  .sm\:hover\:max-h-1\/2:hover{
    max-height     : 50% !important;
  }

  .sm\:hover\:max-h-1\/3:hover{
    max-height     : 33.333333% !important;
  }

  .sm\:hover\:max-h-2\/3:hover{
    max-height     : 66.666667% !important;
  }

  .sm\:hover\:max-h-1\/4:hover{
    max-height     : 25% !important;
  }

  .sm\:hover\:max-h-2\/4:hover{
    max-height     : 50% !important;
  }

  .sm\:hover\:max-h-3\/4:hover{
    max-height     : 75% !important;
  }

  .sm\:hover\:max-h-1\/5:hover{
    max-height     : 20% !important;
  }

  .sm\:hover\:max-h-2\/5:hover{
    max-height     : 40% !important;
  }

  .sm\:hover\:max-h-3\/5:hover{
    max-height     : 60% !important;
  }

  .sm\:hover\:max-h-4\/5:hover{
    max-height     : 80% !important;
  }

  .sm\:hover\:max-h-1\/6:hover{
    max-height     : 16.666667% !important;
  }

  .sm\:hover\:max-h-2\/6:hover{
    max-height     : 33.333333% !important;
  }

  .sm\:hover\:max-h-3\/6:hover{
    max-height     : 50% !important;
  }

  .sm\:hover\:max-h-4\/6:hover{
    max-height     : 66.666667% !important;
  }

  .sm\:hover\:max-h-5\/6:hover{
    max-height     : 83.333333% !important;
  }

  .sm\:hover\:max-h-1\/12:hover{
    max-height     : 8.333333% !important;
  }

  .sm\:hover\:max-h-2\/12:hover{
    max-height     : 16.666667% !important;
  }

  .sm\:hover\:max-h-3\/12:hover{
    max-height     : 25% !important;
  }

  .sm\:hover\:max-h-4\/12:hover{
    max-height     : 33.333333% !important;
  }

  .sm\:hover\:max-h-5\/12:hover{
    max-height     : 41.666667% !important;
  }

  .sm\:hover\:max-h-6\/12:hover{
    max-height     : 50% !important;
  }

  .sm\:hover\:max-h-7\/12:hover{
    max-height     : 58.333333% !important;
  }

  .sm\:hover\:max-h-8\/12:hover{
    max-height     : 66.666667% !important;
  }

  .sm\:hover\:max-h-9\/12:hover{
    max-height     : 75% !important;
  }

  .sm\:hover\:max-h-10\/12:hover{
    max-height     : 83.333333% !important;
  }

  .sm\:hover\:max-h-11\/12:hover{
    max-height     : 91.666667% !important;
  }

  .sm\:hover\:max-h-full:hover{
    max-height     : 100% !important;
  }

  .sm\:focus\:max-h-0:focus{
    max-height     : 0 !important;
  }

  .sm\:focus\:max-h-1:focus{
    max-height     : 0.25rem !important;
  }

  .sm\:focus\:max-h-2:focus{
    max-height     : 0.5rem !important;
  }

  .sm\:focus\:max-h-3:focus{
    max-height     : 0.75rem !important;
  }

  .sm\:focus\:max-h-4:focus{
    max-height     : 1rem !important;
  }

  .sm\:focus\:max-h-5:focus{
    max-height     : 1.25rem !important;
  }

  .sm\:focus\:max-h-6:focus{
    max-height     : 1.5rem !important;
  }

  .sm\:focus\:max-h-7:focus{
    max-height     : 1.75rem !important;
  }

  .sm\:focus\:max-h-8:focus{
    max-height     : 2rem !important;
  }

  .sm\:focus\:max-h-9:focus{
    max-height     : 2.25rem !important;
  }

  .sm\:focus\:max-h-10:focus{
    max-height     : 2.5rem !important;
  }

  .sm\:focus\:max-h-11:focus{
    max-height     : 2.75rem !important;
  }

  .sm\:focus\:max-h-12:focus{
    max-height     : 3rem !important;
  }

  .sm\:focus\:max-h-13:focus{
    max-height     : 3.25rem !important;
  }

  .sm\:focus\:max-h-14:focus{
    max-height     : 3.5rem !important;
  }

  .sm\:focus\:max-h-15:focus{
    max-height     : 3.75rem !important;
  }

  .sm\:focus\:max-h-16:focus{
    max-height     : 4rem !important;
  }

  .sm\:focus\:max-h-20:focus{
    max-height     : 5rem !important;
  }

  .sm\:focus\:max-h-24:focus{
    max-height     : 6rem !important;
  }

  .sm\:focus\:max-h-28:focus{
    max-height     : 7rem !important;
  }

  .sm\:focus\:max-h-32:focus{
    max-height     : 8rem !important;
  }

  .sm\:focus\:max-h-36:focus{
    max-height     : 9rem !important;
  }

  .sm\:focus\:max-h-40:focus{
    max-height     : 10rem !important;
  }

  .sm\:focus\:max-h-44:focus{
    max-height     : 11rem !important;
  }

  .sm\:focus\:max-h-48:focus{
    max-height     : 12rem !important;
  }

  .sm\:focus\:max-h-52:focus{
    max-height     : 13rem !important;
  }

  .sm\:focus\:max-h-56:focus{
    max-height     : 14rem !important;
  }

  .sm\:focus\:max-h-60:focus{
    max-height     : 15rem !important;
  }

  .sm\:focus\:max-h-64:focus{
    max-height     : 16rem !important;
  }

  .sm\:focus\:max-h-72:focus{
    max-height     : 18rem !important;
  }

  .sm\:focus\:max-h-80:focus{
    max-height     : 20rem !important;
  }

  .sm\:focus\:max-h-96:focus{
    max-height     : 24rem !important;
  }

  .sm\:focus\:max-h-screen:focus{
    max-height     : 100vh !important;
  }

  .sm\:focus\:max-h-px:focus{
    max-height     : 1px !important;
  }

  .sm\:focus\:max-h-0\.5:focus{
    max-height     : 0.125rem !important;
  }

  .sm\:focus\:max-h-1\.5:focus{
    max-height     : 0.375rem !important;
  }

  .sm\:focus\:max-h-2\.5:focus{
    max-height     : 0.625rem !important;
  }

  .sm\:focus\:max-h-3\.5:focus{
    max-height     : 0.875rem !important;
  }

  .sm\:focus\:max-h-1\/2:focus{
    max-height     : 50% !important;
  }

  .sm\:focus\:max-h-1\/3:focus{
    max-height     : 33.333333% !important;
  }

  .sm\:focus\:max-h-2\/3:focus{
    max-height     : 66.666667% !important;
  }

  .sm\:focus\:max-h-1\/4:focus{
    max-height     : 25% !important;
  }

  .sm\:focus\:max-h-2\/4:focus{
    max-height     : 50% !important;
  }

  .sm\:focus\:max-h-3\/4:focus{
    max-height     : 75% !important;
  }

  .sm\:focus\:max-h-1\/5:focus{
    max-height     : 20% !important;
  }

  .sm\:focus\:max-h-2\/5:focus{
    max-height     : 40% !important;
  }

  .sm\:focus\:max-h-3\/5:focus{
    max-height     : 60% !important;
  }

  .sm\:focus\:max-h-4\/5:focus{
    max-height     : 80% !important;
  }

  .sm\:focus\:max-h-1\/6:focus{
    max-height     : 16.666667% !important;
  }

  .sm\:focus\:max-h-2\/6:focus{
    max-height     : 33.333333% !important;
  }

  .sm\:focus\:max-h-3\/6:focus{
    max-height     : 50% !important;
  }

  .sm\:focus\:max-h-4\/6:focus{
    max-height     : 66.666667% !important;
  }

  .sm\:focus\:max-h-5\/6:focus{
    max-height     : 83.333333% !important;
  }

  .sm\:focus\:max-h-1\/12:focus{
    max-height     : 8.333333% !important;
  }

  .sm\:focus\:max-h-2\/12:focus{
    max-height     : 16.666667% !important;
  }

  .sm\:focus\:max-h-3\/12:focus{
    max-height     : 25% !important;
  }

  .sm\:focus\:max-h-4\/12:focus{
    max-height     : 33.333333% !important;
  }

  .sm\:focus\:max-h-5\/12:focus{
    max-height     : 41.666667% !important;
  }

  .sm\:focus\:max-h-6\/12:focus{
    max-height     : 50% !important;
  }

  .sm\:focus\:max-h-7\/12:focus{
    max-height     : 58.333333% !important;
  }

  .sm\:focus\:max-h-8\/12:focus{
    max-height     : 66.666667% !important;
  }

  .sm\:focus\:max-h-9\/12:focus{
    max-height     : 75% !important;
  }

  .sm\:focus\:max-h-10\/12:focus{
    max-height     : 83.333333% !important;
  }

  .sm\:focus\:max-h-11\/12:focus{
    max-height     : 91.666667% !important;
  }

  .sm\:focus\:max-h-full:focus{
    max-height     : 100% !important;
  }

  .sm\:max-w-0{
    max-width     : 0rem !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-prose{
    max-width     : 65ch !important;
  }

  .sm\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .sm\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .sm\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .sm\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .group:hover .sm\:group-hover\:max-w-0{
    max-width     : 0rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-none{
    max-width     : none !important;
  }

  .group:hover .sm\:group-hover\:max-w-xs{
    max-width     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-sm{
    max-width     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-md{
    max-width     : 28rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-lg{
    max-width     : 32rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-xl{
    max-width     : 36rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-2xl{
    max-width     : 42rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-3xl{
    max-width     : 48rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-4xl{
    max-width     : 56rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-5xl{
    max-width     : 64rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-6xl{
    max-width     : 72rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-7xl{
    max-width     : 80rem !important;
  }

  .group:hover .sm\:group-hover\:max-w-full{
    max-width     : 100% !important;
  }

  .group:hover .sm\:group-hover\:max-w-min-content{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .group:hover .sm\:group-hover\:max-w-max-content{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .group:hover .sm\:group-hover\:max-w-prose{
    max-width     : 65ch !important;
  }

  .group:hover .sm\:group-hover\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .group:hover .sm\:group-hover\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .group:hover .sm\:group-hover\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .group:hover .sm\:group-hover\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .sm\:hover\:max-w-0:hover{
    max-width     : 0rem !important;
  }

  .sm\:hover\:max-w-none:hover{
    max-width     : none !important;
  }

  .sm\:hover\:max-w-xs:hover{
    max-width     : 20rem !important;
  }

  .sm\:hover\:max-w-sm:hover{
    max-width     : 24rem !important;
  }

  .sm\:hover\:max-w-md:hover{
    max-width     : 28rem !important;
  }

  .sm\:hover\:max-w-lg:hover{
    max-width     : 32rem !important;
  }

  .sm\:hover\:max-w-xl:hover{
    max-width     : 36rem !important;
  }

  .sm\:hover\:max-w-2xl:hover{
    max-width     : 42rem !important;
  }

  .sm\:hover\:max-w-3xl:hover{
    max-width     : 48rem !important;
  }

  .sm\:hover\:max-w-4xl:hover{
    max-width     : 56rem !important;
  }

  .sm\:hover\:max-w-5xl:hover{
    max-width     : 64rem !important;
  }

  .sm\:hover\:max-w-6xl:hover{
    max-width     : 72rem !important;
  }

  .sm\:hover\:max-w-7xl:hover{
    max-width     : 80rem !important;
  }

  .sm\:hover\:max-w-full:hover{
    max-width     : 100% !important;
  }

  .sm\:hover\:max-w-min-content:hover{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .sm\:hover\:max-w-max-content:hover{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .sm\:hover\:max-w-prose:hover{
    max-width     : 65ch !important;
  }

  .sm\:hover\:max-w-screen-sm:hover{
    max-width     : 640px !important;
  }

  .sm\:hover\:max-w-screen-md:hover{
    max-width     : 768px !important;
  }

  .sm\:hover\:max-w-screen-lg:hover{
    max-width     : 1024px !important;
  }

  .sm\:hover\:max-w-screen-xl:hover{
    max-width     : 1280px !important;
  }

  .sm\:focus\:max-w-0:focus{
    max-width     : 0rem !important;
  }

  .sm\:focus\:max-w-none:focus{
    max-width     : none !important;
  }

  .sm\:focus\:max-w-xs:focus{
    max-width     : 20rem !important;
  }

  .sm\:focus\:max-w-sm:focus{
    max-width     : 24rem !important;
  }

  .sm\:focus\:max-w-md:focus{
    max-width     : 28rem !important;
  }

  .sm\:focus\:max-w-lg:focus{
    max-width     : 32rem !important;
  }

  .sm\:focus\:max-w-xl:focus{
    max-width     : 36rem !important;
  }

  .sm\:focus\:max-w-2xl:focus{
    max-width     : 42rem !important;
  }

  .sm\:focus\:max-w-3xl:focus{
    max-width     : 48rem !important;
  }

  .sm\:focus\:max-w-4xl:focus{
    max-width     : 56rem !important;
  }

  .sm\:focus\:max-w-5xl:focus{
    max-width     : 64rem !important;
  }

  .sm\:focus\:max-w-6xl:focus{
    max-width     : 72rem !important;
  }

  .sm\:focus\:max-w-7xl:focus{
    max-width     : 80rem !important;
  }

  .sm\:focus\:max-w-full:focus{
    max-width     : 100% !important;
  }

  .sm\:focus\:max-w-min-content:focus{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .sm\:focus\:max-w-max-content:focus{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .sm\:focus\:max-w-prose:focus{
    max-width     : 65ch !important;
  }

  .sm\:focus\:max-w-screen-sm:focus{
    max-width     : 640px !important;
  }

  .sm\:focus\:max-w-screen-md:focus{
    max-width     : 768px !important;
  }

  .sm\:focus\:max-w-screen-lg:focus{
    max-width     : 1024px !important;
  }

  .sm\:focus\:max-w-screen-xl:focus{
    max-width     : 1280px !important;
  }

  .sm\:min-h-0{
    min-height     : 0 !important;
  }

  .sm\:min-h-full{
    min-height     : 100% !important;
  }

  .sm\:min-h-screen{
    min-height     : 100vh !important;
  }

  .group:hover .sm\:group-hover\:min-h-0{
    min-height     : 0 !important;
  }

  .group:hover .sm\:group-hover\:min-h-full{
    min-height     : 100% !important;
  }

  .group:hover .sm\:group-hover\:min-h-screen{
    min-height     : 100vh !important;
  }

  .sm\:hover\:min-h-0:hover{
    min-height     : 0 !important;
  }

  .sm\:hover\:min-h-full:hover{
    min-height     : 100% !important;
  }

  .sm\:hover\:min-h-screen:hover{
    min-height     : 100vh !important;
  }

  .sm\:focus\:min-h-0:focus{
    min-height     : 0 !important;
  }

  .sm\:focus\:min-h-full:focus{
    min-height     : 100% !important;
  }

  .sm\:focus\:min-h-screen:focus{
    min-height     : 100vh !important;
  }

  .sm\:min-w-0{
    min-width     : 0 !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;
  }

  .group:hover .sm\:group-hover\:min-w-0{
    min-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:min-w-full{
    min-width     : 100% !important;
  }

  .group:hover .sm\:group-hover\:min-w-min-content{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .group:hover .sm\:group-hover\:min-w-max-content{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .sm\:hover\:min-w-0:hover{
    min-width     : 0 !important;
  }

  .sm\:hover\:min-w-full:hover{
    min-width     : 100% !important;
  }

  .sm\:hover\:min-w-min-content:hover{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .sm\:hover\:min-w-max-content:hover{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .sm\:focus\:min-w-0:focus{
    min-width     : 0 !important;
  }

  .sm\:focus\:min-w-full:focus{
    min-width     : 100% !important;
  }

  .sm\:focus\:min-w-min-content:focus{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .sm\:focus\:min-w-max-content:focus{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !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;
  }

  .group:hover .sm\:group-hover\:object-contain{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .group:hover .sm\:group-hover\:object-cover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .group:hover .sm\:group-hover\:object-fill{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .group:hover .sm\:group-hover\:object-none{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .group:hover .sm\:group-hover\:object-scale-down{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .sm\:hover\:object-contain:hover{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .sm\:hover\:object-cover:hover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .sm\:hover\:object-fill:hover{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .sm\:hover\:object-none:hover{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .sm\:hover\:object-scale-down:hover{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .sm\:focus\:object-contain:focus{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .sm\:focus\:object-cover:focus{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .sm\:focus\:object-fill:focus{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .sm\:focus\:object-none:focus{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .sm\:focus\:object-scale-down:focus{
    -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;
  }

  .group:hover .sm\:group-hover\:object-bottom{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .group:hover .sm\:group-hover\:object-center{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .group:hover .sm\:group-hover\:object-left{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .group:hover .sm\:group-hover\:object-left-bottom{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .group:hover .sm\:group-hover\:object-left-top{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .group:hover .sm\:group-hover\:object-right{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .group:hover .sm\:group-hover\:object-right-bottom{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .group:hover .sm\:group-hover\:object-right-top{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .group:hover .sm\:group-hover\:object-top{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .sm\:hover\:object-bottom:hover{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .sm\:hover\:object-center:hover{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .sm\:hover\:object-left:hover{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .sm\:hover\:object-left-bottom:hover{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .sm\:hover\:object-left-top:hover{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .sm\:hover\:object-right:hover{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .sm\:hover\:object-right-bottom:hover{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .sm\:hover\:object-right-top:hover{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .sm\:hover\:object-top:hover{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .sm\:focus\:object-bottom:focus{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .sm\:focus\:object-center:focus{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .sm\:focus\:object-left:focus{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .sm\:focus\:object-left-bottom:focus{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .sm\:focus\:object-left-top:focus{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .sm\:focus\:object-right:focus{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .sm\:focus\:object-right-bottom:focus{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .sm\:focus\:object-right-top:focus{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .sm\:focus\:object-top:focus{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .sm\:opacity-0{
    opacity     : 0 !important;
  }

  .sm\:opacity-25{
    opacity     : 0.25 !important;
  }

  .sm\:opacity-50{
    opacity     : 0.5 !important;
  }

  .sm\:opacity-75{
    opacity     : 0.75 !important;
  }

  .sm\:opacity-100{
    opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:opacity-0{
    opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:opacity-25{
    opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:opacity-50{
    opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:opacity-75{
    opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:opacity-100{
    opacity     : 1 !important;
  }

  .sm\:hover\:opacity-0:hover{
    opacity     : 0 !important;
  }

  .sm\:hover\:opacity-25:hover{
    opacity     : 0.25 !important;
  }

  .sm\:hover\:opacity-50:hover{
    opacity     : 0.5 !important;
  }

  .sm\:hover\:opacity-75:hover{
    opacity     : 0.75 !important;
  }

  .sm\:hover\:opacity-100:hover{
    opacity     : 1 !important;
  }

  .sm\:focus\:opacity-0:focus{
    opacity     : 0 !important;
  }

  .sm\:focus\:opacity-25:focus{
    opacity     : 0.25 !important;
  }

  .sm\:focus\:opacity-50:focus{
    opacity     : 0.5 !important;
  }

  .sm\:focus\:opacity-75:focus{
    opacity     : 0.75 !important;
  }

  .sm\:focus\:opacity-100:focus{
    opacity     : 1 !important;
  }

  .sm\:outline-none{
    outline     : 0 !important;
  }

  .group:hover .sm\:group-hover\:outline-none{
    outline     : 0 !important;
  }

  .sm\:hover\:outline-none:hover{
    outline     : 0 !important;
  }

  .sm\:focus\:outline-none:focus{
    outline     : 0 !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;
  }

  .group:hover .sm\:group-hover\:overflow-auto{
    overflow     : auto !important;
  }

  .group:hover .sm\:group-hover\:overflow-hidden{
    overflow     : hidden !important;
  }

  .group:hover .sm\:group-hover\:overflow-visible{
    overflow     : visible !important;
  }

  .group:hover .sm\:group-hover\:overflow-scroll{
    overflow     : scroll !important;
  }

  .group:hover .sm\:group-hover\:overflow-x-auto{
    overflow-x     : auto !important;
  }

  .group:hover .sm\:group-hover\:overflow-y-auto{
    overflow-y     : auto !important;
  }

  .group:hover .sm\:group-hover\:overflow-x-hidden{
    overflow-x     : hidden !important;
  }

  .group:hover .sm\:group-hover\:overflow-y-hidden{
    overflow-y     : hidden !important;
  }

  .group:hover .sm\:group-hover\:overflow-x-visible{
    overflow-x     : visible !important;
  }

  .group:hover .sm\:group-hover\:overflow-y-visible{
    overflow-y     : visible !important;
  }

  .group:hover .sm\:group-hover\:overflow-x-scroll{
    overflow-x     : scroll !important;
  }

  .group:hover .sm\:group-hover\:overflow-y-scroll{
    overflow-y     : scroll !important;
  }

  .group:hover .sm\:group-hover\:scrolling-touch{
    -webkit-overflow-scrolling     : touch !important;
  }

  .group:hover .sm\:group-hover\:scrolling-auto{
    -webkit-overflow-scrolling     : auto !important;
  }

  .sm\:hover\:overflow-auto:hover{
    overflow     : auto !important;
  }

  .sm\:hover\:overflow-hidden:hover{
    overflow     : hidden !important;
  }

  .sm\:hover\:overflow-visible:hover{
    overflow     : visible !important;
  }

  .sm\:hover\:overflow-scroll:hover{
    overflow     : scroll !important;
  }

  .sm\:hover\:overflow-x-auto:hover{
    overflow-x     : auto !important;
  }

  .sm\:hover\:overflow-y-auto:hover{
    overflow-y     : auto !important;
  }

  .sm\:hover\:overflow-x-hidden:hover{
    overflow-x     : hidden !important;
  }

  .sm\:hover\:overflow-y-hidden:hover{
    overflow-y     : hidden !important;
  }

  .sm\:hover\:overflow-x-visible:hover{
    overflow-x     : visible !important;
  }

  .sm\:hover\:overflow-y-visible:hover{
    overflow-y     : visible !important;
  }

  .sm\:hover\:overflow-x-scroll:hover{
    overflow-x     : scroll !important;
  }

  .sm\:hover\:overflow-y-scroll:hover{
    overflow-y     : scroll !important;
  }

  .sm\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling     : touch !important;
  }

  .sm\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling     : auto !important;
  }

  .sm\:focus\:overflow-auto:focus{
    overflow     : auto !important;
  }

  .sm\:focus\:overflow-hidden:focus{
    overflow     : hidden !important;
  }

  .sm\:focus\:overflow-visible:focus{
    overflow     : visible !important;
  }

  .sm\:focus\:overflow-scroll:focus{
    overflow     : scroll !important;
  }

  .sm\:focus\:overflow-x-auto:focus{
    overflow-x     : auto !important;
  }

  .sm\:focus\:overflow-y-auto:focus{
    overflow-y     : auto !important;
  }

  .sm\:focus\:overflow-x-hidden:focus{
    overflow-x     : hidden !important;
  }

  .sm\:focus\:overflow-y-hidden:focus{
    overflow-y     : hidden !important;
  }

  .sm\:focus\:overflow-x-visible:focus{
    overflow-x     : visible !important;
  }

  .sm\:focus\:overflow-y-visible:focus{
    overflow-y     : visible !important;
  }

  .sm\:focus\:overflow-x-scroll:focus{
    overflow-x     : scroll !important;
  }

  .sm\:focus\:overflow-y-scroll:focus{
    overflow-y     : scroll !important;
  }

  .sm\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling     : touch !important;
  }

  .sm\:focus\:scrolling-auto:focus{
    -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;
  }

  .group:hover .sm\:group-hover\:overscroll-auto{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .group:hover .sm\:group-hover\:overscroll-contain{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .group:hover .sm\:group-hover\:overscroll-none{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .group:hover .sm\:group-hover\:overscroll-y-auto{
    overscroll-behavior-y     : auto !important;
  }

  .group:hover .sm\:group-hover\:overscroll-y-contain{
    overscroll-behavior-y     : contain !important;
  }

  .group:hover .sm\:group-hover\:overscroll-y-none{
    overscroll-behavior-y     : none !important;
  }

  .group:hover .sm\:group-hover\:overscroll-x-auto{
    overscroll-behavior-x     : auto !important;
  }

  .group:hover .sm\:group-hover\:overscroll-x-contain{
    overscroll-behavior-x     : contain !important;
  }

  .group:hover .sm\:group-hover\:overscroll-x-none{
    overscroll-behavior-x     : none !important;
  }

  .sm\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .sm\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .sm\:hover\:overscroll-none:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .sm\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y     : auto !important;
  }

  .sm\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y     : contain !important;
  }

  .sm\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y     : none !important;
  }

  .sm\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x     : auto !important;
  }

  .sm\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x     : contain !important;
  }

  .sm\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x     : none !important;
  }

  .sm\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .sm\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .sm\:focus\:overscroll-none:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .sm\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y     : auto !important;
  }

  .sm\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y     : contain !important;
  }

  .sm\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y     : none !important;
  }

  .sm\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x     : auto !important;
  }

  .sm\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x     : contain !important;
  }

  .sm\:focus\:overscroll-x-none:focus{
    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-20{
    padding     : 5rem !important;
  }

  .sm\:p-24{
    padding     : 6rem !important;
  }

  .sm\:p-28{
    padding     : 7rem !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-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-96{
    padding     : 24rem !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\: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-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .sm\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 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-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .sm\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !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-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-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .sm\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !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\: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-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-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-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-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-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-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-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;
  }

  .group:hover .sm\:group-hover\:p-0{
    padding     : 0 !important;
  }

  .group:hover .sm\:group-hover\:p-1{
    padding     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:p-2{
    padding     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:p-3{
    padding     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:p-4{
    padding     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:p-5{
    padding     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:p-6{
    padding     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:p-7{
    padding     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:p-8{
    padding     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:p-9{
    padding     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:p-10{
    padding     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:p-11{
    padding     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:p-12{
    padding     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:p-13{
    padding     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:p-14{
    padding     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:p-15{
    padding     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:p-16{
    padding     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:p-20{
    padding     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:p-24{
    padding     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:p-28{
    padding     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:p-32{
    padding     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:p-36{
    padding     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:p-40{
    padding     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:p-44{
    padding     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:p-48{
    padding     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:p-52{
    padding     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:p-56{
    padding     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:p-60{
    padding     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:p-64{
    padding     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:p-72{
    padding     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:p-80{
    padding     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:p-96{
    padding     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:p-px{
    padding     : 1px !important;
  }

  .group:hover .sm\:group-hover\:p-0\.5{
    padding     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:p-1\.5{
    padding     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:p-2\.5{
    padding     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:p-3\.5{
    padding     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:p-1\/2{
    padding     : 50% !important;
  }

  .group:hover .sm\:group-hover\:p-1\/3{
    padding     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-2\/3{
    padding     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-1\/4{
    padding     : 25% !important;
  }

  .group:hover .sm\:group-hover\:p-2\/4{
    padding     : 50% !important;
  }

  .group:hover .sm\:group-hover\:p-3\/4{
    padding     : 75% !important;
  }

  .group:hover .sm\:group-hover\:p-1\/5{
    padding     : 20% !important;
  }

  .group:hover .sm\:group-hover\:p-2\/5{
    padding     : 40% !important;
  }

  .group:hover .sm\:group-hover\:p-3\/5{
    padding     : 60% !important;
  }

  .group:hover .sm\:group-hover\:p-4\/5{
    padding     : 80% !important;
  }

  .group:hover .sm\:group-hover\:p-1\/6{
    padding     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-2\/6{
    padding     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-3\/6{
    padding     : 50% !important;
  }

  .group:hover .sm\:group-hover\:p-4\/6{
    padding     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-5\/6{
    padding     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-1\/12{
    padding     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-2\/12{
    padding     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-3\/12{
    padding     : 25% !important;
  }

  .group:hover .sm\:group-hover\:p-4\/12{
    padding     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-5\/12{
    padding     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-6\/12{
    padding     : 50% !important;
  }

  .group:hover .sm\:group-hover\:p-7\/12{
    padding     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-8\/12{
    padding     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-9\/12{
    padding     : 75% !important;
  }

  .group:hover .sm\:group-hover\:p-10\/12{
    padding     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:p-11\/12{
    padding     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:p-full{
    padding     : 100% !important;
  }

  .group:hover .sm\:group-hover\:py-0{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:px-0{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .group:hover .sm\:group-hover\:py-1{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:px-1{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:py-2{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:px-2{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:py-3{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:px-3{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:py-4{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:px-4{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:py-5{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:px-5{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:py-6{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:px-6{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:py-7{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:px-7{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:py-8{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:px-8{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:py-9{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:px-9{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:py-10{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:px-10{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:py-11{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:px-11{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:py-12{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:px-12{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:py-13{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:px-13{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:py-14{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:px-14{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:py-15{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:px-15{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:py-16{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:px-16{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:py-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:py-24{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:px-24{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:py-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:py-32{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:px-32{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:py-36{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:px-36{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:py-40{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:px-40{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:py-44{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:px-44{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:py-48{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:px-48{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:py-52{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:px-52{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:py-56{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:px-56{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:py-60{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:px-60{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:py-64{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:px-64{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:py-72{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:px-72{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:py-80{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:px-80{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:py-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:py-px{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:px-px{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .group:hover .sm\:group-hover\:py-0\.5{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:px-0\.5{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:py-1\.5{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:px-1\.5{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:py-2\.5{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:px-2\.5{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:py-3\.5{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:px-3\.5{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:py-1\/2{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/2{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:py-1\/3{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/3{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-2\/3{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-2\/3{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-1\/4{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/4{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:py-2\/4{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:px-2\/4{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:py-3\/4{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:px-3\/4{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:py-1\/5{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/5{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .group:hover .sm\:group-hover\:py-2\/5{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:px-2\/5{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .group:hover .sm\:group-hover\:py-3\/5{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:px-3\/5{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .group:hover .sm\:group-hover\:py-4\/5{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:px-4\/5{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .group:hover .sm\:group-hover\:py-1\/6{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/6{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-2\/6{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-2\/6{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-3\/6{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:px-3\/6{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:py-4\/6{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-4\/6{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-5\/6{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-5\/6{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-1\/12{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-1\/12{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-2\/12{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-2\/12{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-3\/12{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:px-3\/12{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:py-4\/12{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-4\/12{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-5\/12{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-5\/12{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-6\/12{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:px-6\/12{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:py-7\/12{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-7\/12{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-8\/12{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-8\/12{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-9\/12{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:px-9\/12{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:py-10\/12{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:px-10\/12{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:py-11\/12{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:px-11\/12{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:py-full{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:px-full{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .group:hover .sm\:group-hover\:pt-0{
    padding-top     : 0 !important;
  }

  .group:hover .sm\:group-hover\:pr-0{
    padding-right     : 0 !important;
  }

  .group:hover .sm\:group-hover\:pb-0{
    padding-bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:pl-0{
    padding-left     : 0 !important;
  }

  .group:hover .sm\:group-hover\:pt-1{
    padding-top     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:pr-1{
    padding-right     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:pb-1{
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:pl-1{
    padding-left     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:pt-2{
    padding-top     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:pr-2{
    padding-right     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:pb-2{
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:pl-2{
    padding-left     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:pt-3{
    padding-top     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:pr-3{
    padding-right     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:pb-3{
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:pl-3{
    padding-left     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:pt-4{
    padding-top     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:pr-4{
    padding-right     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:pb-4{
    padding-bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:pl-4{
    padding-left     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:pt-5{
    padding-top     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:pr-5{
    padding-right     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:pb-5{
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:pl-5{
    padding-left     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:pt-6{
    padding-top     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:pr-6{
    padding-right     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:pb-6{
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:pl-6{
    padding-left     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:pt-7{
    padding-top     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:pr-7{
    padding-right     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:pb-7{
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:pl-7{
    padding-left     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:pt-8{
    padding-top     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:pr-8{
    padding-right     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:pb-8{
    padding-bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:pl-8{
    padding-left     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:pt-9{
    padding-top     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:pr-9{
    padding-right     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:pb-9{
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:pl-9{
    padding-left     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:pt-10{
    padding-top     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:pr-10{
    padding-right     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:pb-10{
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:pl-10{
    padding-left     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:pt-11{
    padding-top     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:pr-11{
    padding-right     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:pb-11{
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:pl-11{
    padding-left     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:pt-12{
    padding-top     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:pr-12{
    padding-right     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:pb-12{
    padding-bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:pl-12{
    padding-left     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:pt-13{
    padding-top     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:pr-13{
    padding-right     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:pb-13{
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:pl-13{
    padding-left     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:pt-14{
    padding-top     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:pr-14{
    padding-right     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:pb-14{
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:pl-14{
    padding-left     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:pt-15{
    padding-top     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:pr-15{
    padding-right     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:pb-15{
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:pl-15{
    padding-left     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:pt-16{
    padding-top     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:pr-16{
    padding-right     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:pb-16{
    padding-bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:pl-16{
    padding-left     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:pt-20{
    padding-top     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:pr-20{
    padding-right     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:pb-20{
    padding-bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:pl-20{
    padding-left     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:pt-24{
    padding-top     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:pr-24{
    padding-right     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:pb-24{
    padding-bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:pl-24{
    padding-left     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:pt-28{
    padding-top     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:pr-28{
    padding-right     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:pb-28{
    padding-bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:pl-28{
    padding-left     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:pt-32{
    padding-top     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:pr-32{
    padding-right     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:pb-32{
    padding-bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:pl-32{
    padding-left     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:pt-36{
    padding-top     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:pr-36{
    padding-right     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:pb-36{
    padding-bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:pl-36{
    padding-left     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:pt-40{
    padding-top     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:pr-40{
    padding-right     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:pb-40{
    padding-bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:pl-40{
    padding-left     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:pt-44{
    padding-top     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:pr-44{
    padding-right     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:pb-44{
    padding-bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:pl-44{
    padding-left     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:pt-48{
    padding-top     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:pr-48{
    padding-right     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:pb-48{
    padding-bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:pl-48{
    padding-left     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:pt-52{
    padding-top     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:pr-52{
    padding-right     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:pb-52{
    padding-bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:pl-52{
    padding-left     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:pt-56{
    padding-top     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:pr-56{
    padding-right     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:pb-56{
    padding-bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:pl-56{
    padding-left     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:pt-60{
    padding-top     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:pr-60{
    padding-right     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:pb-60{
    padding-bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:pl-60{
    padding-left     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:pt-64{
    padding-top     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:pr-64{
    padding-right     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:pb-64{
    padding-bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:pl-64{
    padding-left     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:pt-72{
    padding-top     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:pr-72{
    padding-right     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:pb-72{
    padding-bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:pl-72{
    padding-left     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:pt-80{
    padding-top     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:pr-80{
    padding-right     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:pb-80{
    padding-bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:pl-80{
    padding-left     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:pt-96{
    padding-top     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:pr-96{
    padding-right     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:pb-96{
    padding-bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:pl-96{
    padding-left     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:pt-px{
    padding-top     : 1px !important;
  }

  .group:hover .sm\:group-hover\:pr-px{
    padding-right     : 1px !important;
  }

  .group:hover .sm\:group-hover\:pb-px{
    padding-bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:pl-px{
    padding-left     : 1px !important;
  }

  .group:hover .sm\:group-hover\:pt-0\.5{
    padding-top     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:pr-0\.5{
    padding-right     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:pb-0\.5{
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:pl-0\.5{
    padding-left     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:pt-1\.5{
    padding-top     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:pr-1\.5{
    padding-right     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:pb-1\.5{
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:pl-1\.5{
    padding-left     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:pt-2\.5{
    padding-top     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:pr-2\.5{
    padding-right     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:pb-2\.5{
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:pl-2\.5{
    padding-left     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:pt-3\.5{
    padding-top     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:pr-3\.5{
    padding-right     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:pb-3\.5{
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:pl-3\.5{
    padding-left     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/2{
    padding-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/2{
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/2{
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/2{
    padding-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/3{
    padding-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/3{
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/3{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/3{
    padding-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-2\/3{
    padding-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-2\/3{
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-2\/3{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-2\/3{
    padding-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/4{
    padding-top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/4{
    padding-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/4{
    padding-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/4{
    padding-left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pt-2\/4{
    padding-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pr-2\/4{
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pb-2\/4{
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pl-2\/4{
    padding-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pt-3\/4{
    padding-top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pr-3\/4{
    padding-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pb-3\/4{
    padding-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pl-3\/4{
    padding-left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/5{
    padding-top     : 20% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/5{
    padding-right     : 20% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/5{
    padding-bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/5{
    padding-left     : 20% !important;
  }

  .group:hover .sm\:group-hover\:pt-2\/5{
    padding-top     : 40% !important;
  }

  .group:hover .sm\:group-hover\:pr-2\/5{
    padding-right     : 40% !important;
  }

  .group:hover .sm\:group-hover\:pb-2\/5{
    padding-bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:pl-2\/5{
    padding-left     : 40% !important;
  }

  .group:hover .sm\:group-hover\:pt-3\/5{
    padding-top     : 60% !important;
  }

  .group:hover .sm\:group-hover\:pr-3\/5{
    padding-right     : 60% !important;
  }

  .group:hover .sm\:group-hover\:pb-3\/5{
    padding-bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:pl-3\/5{
    padding-left     : 60% !important;
  }

  .group:hover .sm\:group-hover\:pt-4\/5{
    padding-top     : 80% !important;
  }

  .group:hover .sm\:group-hover\:pr-4\/5{
    padding-right     : 80% !important;
  }

  .group:hover .sm\:group-hover\:pb-4\/5{
    padding-bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:pl-4\/5{
    padding-left     : 80% !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/6{
    padding-top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/6{
    padding-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/6{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/6{
    padding-left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-2\/6{
    padding-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-2\/6{
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-2\/6{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-2\/6{
    padding-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-3\/6{
    padding-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pr-3\/6{
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pb-3\/6{
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pl-3\/6{
    padding-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pt-4\/6{
    padding-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-4\/6{
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-4\/6{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-4\/6{
    padding-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-5\/6{
    padding-top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-5\/6{
    padding-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-5\/6{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-5\/6{
    padding-left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-1\/12{
    padding-top     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-1\/12{
    padding-right     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-1\/12{
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-1\/12{
    padding-left     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-2\/12{
    padding-top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-2\/12{
    padding-right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-2\/12{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-2\/12{
    padding-left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-3\/12{
    padding-top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pr-3\/12{
    padding-right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pb-3\/12{
    padding-bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pl-3\/12{
    padding-left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:pt-4\/12{
    padding-top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-4\/12{
    padding-right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-4\/12{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-4\/12{
    padding-left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-5\/12{
    padding-top     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-5\/12{
    padding-right     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-5\/12{
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-5\/12{
    padding-left     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-6\/12{
    padding-top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pr-6\/12{
    padding-right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pb-6\/12{
    padding-bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pl-6\/12{
    padding-left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:pt-7\/12{
    padding-top     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-7\/12{
    padding-right     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-7\/12{
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-7\/12{
    padding-left     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-8\/12{
    padding-top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-8\/12{
    padding-right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-8\/12{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-8\/12{
    padding-left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-9\/12{
    padding-top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pr-9\/12{
    padding-right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pb-9\/12{
    padding-bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pl-9\/12{
    padding-left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:pt-10\/12{
    padding-top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pr-10\/12{
    padding-right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pb-10\/12{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pl-10\/12{
    padding-left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:pt-11\/12{
    padding-top     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:pr-11\/12{
    padding-right     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:pb-11\/12{
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:pl-11\/12{
    padding-left     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:pt-full{
    padding-top     : 100% !important;
  }

  .group:hover .sm\:group-hover\:pr-full{
    padding-right     : 100% !important;
  }

  .group:hover .sm\:group-hover\:pb-full{
    padding-bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:pl-full{
    padding-left     : 100% !important;
  }

  .sm\:hover\:p-0:hover{
    padding     : 0 !important;
  }

  .sm\:hover\:p-1:hover{
    padding     : 0.25rem !important;
  }

  .sm\:hover\:p-2:hover{
    padding     : 0.5rem !important;
  }

  .sm\:hover\:p-3:hover{
    padding     : 0.75rem !important;
  }

  .sm\:hover\:p-4:hover{
    padding     : 1rem !important;
  }

  .sm\:hover\:p-5:hover{
    padding     : 1.25rem !important;
  }

  .sm\:hover\:p-6:hover{
    padding     : 1.5rem !important;
  }

  .sm\:hover\:p-7:hover{
    padding     : 1.75rem !important;
  }

  .sm\:hover\:p-8:hover{
    padding     : 2rem !important;
  }

  .sm\:hover\:p-9:hover{
    padding     : 2.25rem !important;
  }

  .sm\:hover\:p-10:hover{
    padding     : 2.5rem !important;
  }

  .sm\:hover\:p-11:hover{
    padding     : 2.75rem !important;
  }

  .sm\:hover\:p-12:hover{
    padding     : 3rem !important;
  }

  .sm\:hover\:p-13:hover{
    padding     : 3.25rem !important;
  }

  .sm\:hover\:p-14:hover{
    padding     : 3.5rem !important;
  }

  .sm\:hover\:p-15:hover{
    padding     : 3.75rem !important;
  }

  .sm\:hover\:p-16:hover{
    padding     : 4rem !important;
  }

  .sm\:hover\:p-20:hover{
    padding     : 5rem !important;
  }

  .sm\:hover\:p-24:hover{
    padding     : 6rem !important;
  }

  .sm\:hover\:p-28:hover{
    padding     : 7rem !important;
  }

  .sm\:hover\:p-32:hover{
    padding     : 8rem !important;
  }

  .sm\:hover\:p-36:hover{
    padding     : 9rem !important;
  }

  .sm\:hover\:p-40:hover{
    padding     : 10rem !important;
  }

  .sm\:hover\:p-44:hover{
    padding     : 11rem !important;
  }

  .sm\:hover\:p-48:hover{
    padding     : 12rem !important;
  }

  .sm\:hover\:p-52:hover{
    padding     : 13rem !important;
  }

  .sm\:hover\:p-56:hover{
    padding     : 14rem !important;
  }

  .sm\:hover\:p-60:hover{
    padding     : 15rem !important;
  }

  .sm\:hover\:p-64:hover{
    padding     : 16rem !important;
  }

  .sm\:hover\:p-72:hover{
    padding     : 18rem !important;
  }

  .sm\:hover\:p-80:hover{
    padding     : 20rem !important;
  }

  .sm\:hover\:p-96:hover{
    padding     : 24rem !important;
  }

  .sm\:hover\:p-px:hover{
    padding     : 1px !important;
  }

  .sm\:hover\:p-0\.5:hover{
    padding     : 0.125rem !important;
  }

  .sm\:hover\:p-1\.5:hover{
    padding     : 0.375rem !important;
  }

  .sm\:hover\:p-2\.5:hover{
    padding     : 0.625rem !important;
  }

  .sm\:hover\:p-3\.5:hover{
    padding     : 0.875rem !important;
  }

  .sm\:hover\:p-1\/2:hover{
    padding     : 50% !important;
  }

  .sm\:hover\:p-1\/3:hover{
    padding     : 33.333333% !important;
  }

  .sm\:hover\:p-2\/3:hover{
    padding     : 66.666667% !important;
  }

  .sm\:hover\:p-1\/4:hover{
    padding     : 25% !important;
  }

  .sm\:hover\:p-2\/4:hover{
    padding     : 50% !important;
  }

  .sm\:hover\:p-3\/4:hover{
    padding     : 75% !important;
  }

  .sm\:hover\:p-1\/5:hover{
    padding     : 20% !important;
  }

  .sm\:hover\:p-2\/5:hover{
    padding     : 40% !important;
  }

  .sm\:hover\:p-3\/5:hover{
    padding     : 60% !important;
  }

  .sm\:hover\:p-4\/5:hover{
    padding     : 80% !important;
  }

  .sm\:hover\:p-1\/6:hover{
    padding     : 16.666667% !important;
  }

  .sm\:hover\:p-2\/6:hover{
    padding     : 33.333333% !important;
  }

  .sm\:hover\:p-3\/6:hover{
    padding     : 50% !important;
  }

  .sm\:hover\:p-4\/6:hover{
    padding     : 66.666667% !important;
  }

  .sm\:hover\:p-5\/6:hover{
    padding     : 83.333333% !important;
  }

  .sm\:hover\:p-1\/12:hover{
    padding     : 8.333333% !important;
  }

  .sm\:hover\:p-2\/12:hover{
    padding     : 16.666667% !important;
  }

  .sm\:hover\:p-3\/12:hover{
    padding     : 25% !important;
  }

  .sm\:hover\:p-4\/12:hover{
    padding     : 33.333333% !important;
  }

  .sm\:hover\:p-5\/12:hover{
    padding     : 41.666667% !important;
  }

  .sm\:hover\:p-6\/12:hover{
    padding     : 50% !important;
  }

  .sm\:hover\:p-7\/12:hover{
    padding     : 58.333333% !important;
  }

  .sm\:hover\:p-8\/12:hover{
    padding     : 66.666667% !important;
  }

  .sm\:hover\:p-9\/12:hover{
    padding     : 75% !important;
  }

  .sm\:hover\:p-10\/12:hover{
    padding     : 83.333333% !important;
  }

  .sm\:hover\:p-11\/12:hover{
    padding     : 91.666667% !important;
  }

  .sm\:hover\:p-full:hover{
    padding     : 100% !important;
  }

  .sm\:hover\:py-0:hover{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .sm\:hover\:px-0:hover{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .sm\:hover\:py-1:hover{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .sm\:hover\:px-1:hover{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .sm\:hover\:py-2:hover{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .sm\:hover\:px-2:hover{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .sm\:hover\:py-3:hover{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .sm\:hover\:px-3:hover{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .sm\:hover\:py-4:hover{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .sm\:hover\:px-4:hover{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .sm\:hover\:py-5:hover{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .sm\:hover\:px-5:hover{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .sm\:hover\:py-6:hover{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .sm\:hover\:px-6:hover{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .sm\:hover\:py-7:hover{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .sm\:hover\:px-7:hover{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .sm\:hover\:py-8:hover{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .sm\:hover\:px-8:hover{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .sm\:hover\:py-9:hover{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .sm\:hover\:px-9:hover{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .sm\:hover\:py-10:hover{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .sm\:hover\:px-10:hover{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .sm\:hover\:py-11:hover{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .sm\:hover\:px-11:hover{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .sm\:hover\:py-12:hover{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .sm\:hover\:px-12:hover{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .sm\:hover\:py-13:hover{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .sm\:hover\:px-13:hover{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .sm\:hover\:py-14:hover{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .sm\:hover\:px-14:hover{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .sm\:hover\:py-15:hover{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .sm\:hover\:px-15:hover{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .sm\:hover\:py-16:hover{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .sm\:hover\:px-16:hover{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .sm\:hover\:py-20:hover{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .sm\:hover\:px-20:hover{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .sm\:hover\:py-24:hover{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .sm\:hover\:px-24:hover{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .sm\:hover\:py-28:hover{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .sm\:hover\:px-28:hover{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .sm\:hover\:py-32:hover{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .sm\:hover\:px-32:hover{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .sm\:hover\:py-36:hover{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .sm\:hover\:px-36:hover{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .sm\:hover\:py-40:hover{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .sm\:hover\:px-40:hover{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .sm\:hover\:py-44:hover{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .sm\:hover\:px-44:hover{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .sm\:hover\:py-48:hover{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .sm\:hover\:px-48:hover{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .sm\:hover\:py-52:hover{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .sm\:hover\:px-52:hover{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .sm\:hover\:py-56:hover{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .sm\:hover\:px-56:hover{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .sm\:hover\:py-60:hover{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .sm\:hover\:px-60:hover{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .sm\:hover\:py-64:hover{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .sm\:hover\:px-64:hover{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .sm\:hover\:py-72:hover{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .sm\:hover\:px-72:hover{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .sm\:hover\:py-80:hover{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .sm\:hover\:px-80:hover{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .sm\:hover\:py-96:hover{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .sm\:hover\:px-96:hover{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .sm\:hover\:py-px:hover{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .sm\:hover\:px-px:hover{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .sm\:hover\:py-0\.5:hover{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .sm\:hover\:px-0\.5:hover{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .sm\:hover\:py-1\.5:hover{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .sm\:hover\:px-1\.5:hover{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .sm\:hover\:py-2\.5:hover{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .sm\:hover\:px-2\.5:hover{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .sm\:hover\:py-3\.5:hover{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .sm\:hover\:px-3\.5:hover{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .sm\:hover\:py-1\/2:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:px-1\/2:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:hover\:py-1\/3:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:px-1\/3:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:py-2\/3:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:px-2\/3:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:py-1\/4:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .sm\:hover\:px-1\/4:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .sm\:hover\:py-2\/4:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:px-2\/4:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:hover\:py-3\/4:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .sm\:hover\:px-3\/4:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .sm\:hover\:py-1\/5:hover{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .sm\:hover\:px-1\/5:hover{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .sm\:hover\:py-2\/5:hover{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .sm\:hover\:px-2\/5:hover{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .sm\:hover\:py-3\/5:hover{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .sm\:hover\:px-3\/5:hover{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .sm\:hover\:py-4\/5:hover{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .sm\:hover\:px-4\/5:hover{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .sm\:hover\:py-1\/6:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .sm\:hover\:px-1\/6:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .sm\:hover\:py-2\/6:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:px-2\/6:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:py-3\/6:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:px-3\/6:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:hover\:py-4\/6:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:px-4\/6:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:py-5\/6:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .sm\:hover\:px-5\/6:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .sm\:hover\:py-1\/12:hover{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .sm\:hover\:px-1\/12:hover{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .sm\:hover\:py-2\/12:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .sm\:hover\:px-2\/12:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .sm\:hover\:py-3\/12:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .sm\:hover\:px-3\/12:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .sm\:hover\:py-4\/12:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:px-4\/12:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:py-5\/12:hover{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .sm\:hover\:px-5\/12:hover{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .sm\:hover\:py-6\/12:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:px-6\/12:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:hover\:py-7\/12:hover{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .sm\:hover\:px-7\/12:hover{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .sm\:hover\:py-8\/12:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:px-8\/12:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:py-9\/12:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .sm\:hover\:px-9\/12:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .sm\:hover\:py-10\/12:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .sm\:hover\:px-10\/12:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .sm\:hover\:py-11\/12:hover{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .sm\:hover\:px-11\/12:hover{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .sm\:hover\:py-full:hover{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .sm\:hover\:px-full:hover{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .sm\:hover\:pt-0:hover{
    padding-top     : 0 !important;
  }

  .sm\:hover\:pr-0:hover{
    padding-right     : 0 !important;
  }

  .sm\:hover\:pb-0:hover{
    padding-bottom     : 0 !important;
  }

  .sm\:hover\:pl-0:hover{
    padding-left     : 0 !important;
  }

  .sm\:hover\:pt-1:hover{
    padding-top     : 0.25rem !important;
  }

  .sm\:hover\:pr-1:hover{
    padding-right     : 0.25rem !important;
  }

  .sm\:hover\:pb-1:hover{
    padding-bottom     : 0.25rem !important;
  }

  .sm\:hover\:pl-1:hover{
    padding-left     : 0.25rem !important;
  }

  .sm\:hover\:pt-2:hover{
    padding-top     : 0.5rem !important;
  }

  .sm\:hover\:pr-2:hover{
    padding-right     : 0.5rem !important;
  }

  .sm\:hover\:pb-2:hover{
    padding-bottom     : 0.5rem !important;
  }

  .sm\:hover\:pl-2:hover{
    padding-left     : 0.5rem !important;
  }

  .sm\:hover\:pt-3:hover{
    padding-top     : 0.75rem !important;
  }

  .sm\:hover\:pr-3:hover{
    padding-right     : 0.75rem !important;
  }

  .sm\:hover\:pb-3:hover{
    padding-bottom     : 0.75rem !important;
  }

  .sm\:hover\:pl-3:hover{
    padding-left     : 0.75rem !important;
  }

  .sm\:hover\:pt-4:hover{
    padding-top     : 1rem !important;
  }

  .sm\:hover\:pr-4:hover{
    padding-right     : 1rem !important;
  }

  .sm\:hover\:pb-4:hover{
    padding-bottom     : 1rem !important;
  }

  .sm\:hover\:pl-4:hover{
    padding-left     : 1rem !important;
  }

  .sm\:hover\:pt-5:hover{
    padding-top     : 1.25rem !important;
  }

  .sm\:hover\:pr-5:hover{
    padding-right     : 1.25rem !important;
  }

  .sm\:hover\:pb-5:hover{
    padding-bottom     : 1.25rem !important;
  }

  .sm\:hover\:pl-5:hover{
    padding-left     : 1.25rem !important;
  }

  .sm\:hover\:pt-6:hover{
    padding-top     : 1.5rem !important;
  }

  .sm\:hover\:pr-6:hover{
    padding-right     : 1.5rem !important;
  }

  .sm\:hover\:pb-6:hover{
    padding-bottom     : 1.5rem !important;
  }

  .sm\:hover\:pl-6:hover{
    padding-left     : 1.5rem !important;
  }

  .sm\:hover\:pt-7:hover{
    padding-top     : 1.75rem !important;
  }

  .sm\:hover\:pr-7:hover{
    padding-right     : 1.75rem !important;
  }

  .sm\:hover\:pb-7:hover{
    padding-bottom     : 1.75rem !important;
  }

  .sm\:hover\:pl-7:hover{
    padding-left     : 1.75rem !important;
  }

  .sm\:hover\:pt-8:hover{
    padding-top     : 2rem !important;
  }

  .sm\:hover\:pr-8:hover{
    padding-right     : 2rem !important;
  }

  .sm\:hover\:pb-8:hover{
    padding-bottom     : 2rem !important;
  }

  .sm\:hover\:pl-8:hover{
    padding-left     : 2rem !important;
  }

  .sm\:hover\:pt-9:hover{
    padding-top     : 2.25rem !important;
  }

  .sm\:hover\:pr-9:hover{
    padding-right     : 2.25rem !important;
  }

  .sm\:hover\:pb-9:hover{
    padding-bottom     : 2.25rem !important;
  }

  .sm\:hover\:pl-9:hover{
    padding-left     : 2.25rem !important;
  }

  .sm\:hover\:pt-10:hover{
    padding-top     : 2.5rem !important;
  }

  .sm\:hover\:pr-10:hover{
    padding-right     : 2.5rem !important;
  }

  .sm\:hover\:pb-10:hover{
    padding-bottom     : 2.5rem !important;
  }

  .sm\:hover\:pl-10:hover{
    padding-left     : 2.5rem !important;
  }

  .sm\:hover\:pt-11:hover{
    padding-top     : 2.75rem !important;
  }

  .sm\:hover\:pr-11:hover{
    padding-right     : 2.75rem !important;
  }

  .sm\:hover\:pb-11:hover{
    padding-bottom     : 2.75rem !important;
  }

  .sm\:hover\:pl-11:hover{
    padding-left     : 2.75rem !important;
  }

  .sm\:hover\:pt-12:hover{
    padding-top     : 3rem !important;
  }

  .sm\:hover\:pr-12:hover{
    padding-right     : 3rem !important;
  }

  .sm\:hover\:pb-12:hover{
    padding-bottom     : 3rem !important;
  }

  .sm\:hover\:pl-12:hover{
    padding-left     : 3rem !important;
  }

  .sm\:hover\:pt-13:hover{
    padding-top     : 3.25rem !important;
  }

  .sm\:hover\:pr-13:hover{
    padding-right     : 3.25rem !important;
  }

  .sm\:hover\:pb-13:hover{
    padding-bottom     : 3.25rem !important;
  }

  .sm\:hover\:pl-13:hover{
    padding-left     : 3.25rem !important;
  }

  .sm\:hover\:pt-14:hover{
    padding-top     : 3.5rem !important;
  }

  .sm\:hover\:pr-14:hover{
    padding-right     : 3.5rem !important;
  }

  .sm\:hover\:pb-14:hover{
    padding-bottom     : 3.5rem !important;
  }

  .sm\:hover\:pl-14:hover{
    padding-left     : 3.5rem !important;
  }

  .sm\:hover\:pt-15:hover{
    padding-top     : 3.75rem !important;
  }

  .sm\:hover\:pr-15:hover{
    padding-right     : 3.75rem !important;
  }

  .sm\:hover\:pb-15:hover{
    padding-bottom     : 3.75rem !important;
  }

  .sm\:hover\:pl-15:hover{
    padding-left     : 3.75rem !important;
  }

  .sm\:hover\:pt-16:hover{
    padding-top     : 4rem !important;
  }

  .sm\:hover\:pr-16:hover{
    padding-right     : 4rem !important;
  }

  .sm\:hover\:pb-16:hover{
    padding-bottom     : 4rem !important;
  }

  .sm\:hover\:pl-16:hover{
    padding-left     : 4rem !important;
  }

  .sm\:hover\:pt-20:hover{
    padding-top     : 5rem !important;
  }

  .sm\:hover\:pr-20:hover{
    padding-right     : 5rem !important;
  }

  .sm\:hover\:pb-20:hover{
    padding-bottom     : 5rem !important;
  }

  .sm\:hover\:pl-20:hover{
    padding-left     : 5rem !important;
  }

  .sm\:hover\:pt-24:hover{
    padding-top     : 6rem !important;
  }

  .sm\:hover\:pr-24:hover{
    padding-right     : 6rem !important;
  }

  .sm\:hover\:pb-24:hover{
    padding-bottom     : 6rem !important;
  }

  .sm\:hover\:pl-24:hover{
    padding-left     : 6rem !important;
  }

  .sm\:hover\:pt-28:hover{
    padding-top     : 7rem !important;
  }

  .sm\:hover\:pr-28:hover{
    padding-right     : 7rem !important;
  }

  .sm\:hover\:pb-28:hover{
    padding-bottom     : 7rem !important;
  }

  .sm\:hover\:pl-28:hover{
    padding-left     : 7rem !important;
  }

  .sm\:hover\:pt-32:hover{
    padding-top     : 8rem !important;
  }

  .sm\:hover\:pr-32:hover{
    padding-right     : 8rem !important;
  }

  .sm\:hover\:pb-32:hover{
    padding-bottom     : 8rem !important;
  }

  .sm\:hover\:pl-32:hover{
    padding-left     : 8rem !important;
  }

  .sm\:hover\:pt-36:hover{
    padding-top     : 9rem !important;
  }

  .sm\:hover\:pr-36:hover{
    padding-right     : 9rem !important;
  }

  .sm\:hover\:pb-36:hover{
    padding-bottom     : 9rem !important;
  }

  .sm\:hover\:pl-36:hover{
    padding-left     : 9rem !important;
  }

  .sm\:hover\:pt-40:hover{
    padding-top     : 10rem !important;
  }

  .sm\:hover\:pr-40:hover{
    padding-right     : 10rem !important;
  }

  .sm\:hover\:pb-40:hover{
    padding-bottom     : 10rem !important;
  }

  .sm\:hover\:pl-40:hover{
    padding-left     : 10rem !important;
  }

  .sm\:hover\:pt-44:hover{
    padding-top     : 11rem !important;
  }

  .sm\:hover\:pr-44:hover{
    padding-right     : 11rem !important;
  }

  .sm\:hover\:pb-44:hover{
    padding-bottom     : 11rem !important;
  }

  .sm\:hover\:pl-44:hover{
    padding-left     : 11rem !important;
  }

  .sm\:hover\:pt-48:hover{
    padding-top     : 12rem !important;
  }

  .sm\:hover\:pr-48:hover{
    padding-right     : 12rem !important;
  }

  .sm\:hover\:pb-48:hover{
    padding-bottom     : 12rem !important;
  }

  .sm\:hover\:pl-48:hover{
    padding-left     : 12rem !important;
  }

  .sm\:hover\:pt-52:hover{
    padding-top     : 13rem !important;
  }

  .sm\:hover\:pr-52:hover{
    padding-right     : 13rem !important;
  }

  .sm\:hover\:pb-52:hover{
    padding-bottom     : 13rem !important;
  }

  .sm\:hover\:pl-52:hover{
    padding-left     : 13rem !important;
  }

  .sm\:hover\:pt-56:hover{
    padding-top     : 14rem !important;
  }

  .sm\:hover\:pr-56:hover{
    padding-right     : 14rem !important;
  }

  .sm\:hover\:pb-56:hover{
    padding-bottom     : 14rem !important;
  }

  .sm\:hover\:pl-56:hover{
    padding-left     : 14rem !important;
  }

  .sm\:hover\:pt-60:hover{
    padding-top     : 15rem !important;
  }

  .sm\:hover\:pr-60:hover{
    padding-right     : 15rem !important;
  }

  .sm\:hover\:pb-60:hover{
    padding-bottom     : 15rem !important;
  }

  .sm\:hover\:pl-60:hover{
    padding-left     : 15rem !important;
  }

  .sm\:hover\:pt-64:hover{
    padding-top     : 16rem !important;
  }

  .sm\:hover\:pr-64:hover{
    padding-right     : 16rem !important;
  }

  .sm\:hover\:pb-64:hover{
    padding-bottom     : 16rem !important;
  }

  .sm\:hover\:pl-64:hover{
    padding-left     : 16rem !important;
  }

  .sm\:hover\:pt-72:hover{
    padding-top     : 18rem !important;
  }

  .sm\:hover\:pr-72:hover{
    padding-right     : 18rem !important;
  }

  .sm\:hover\:pb-72:hover{
    padding-bottom     : 18rem !important;
  }

  .sm\:hover\:pl-72:hover{
    padding-left     : 18rem !important;
  }

  .sm\:hover\:pt-80:hover{
    padding-top     : 20rem !important;
  }

  .sm\:hover\:pr-80:hover{
    padding-right     : 20rem !important;
  }

  .sm\:hover\:pb-80:hover{
    padding-bottom     : 20rem !important;
  }

  .sm\:hover\:pl-80:hover{
    padding-left     : 20rem !important;
  }

  .sm\:hover\:pt-96:hover{
    padding-top     : 24rem !important;
  }

  .sm\:hover\:pr-96:hover{
    padding-right     : 24rem !important;
  }

  .sm\:hover\:pb-96:hover{
    padding-bottom     : 24rem !important;
  }

  .sm\:hover\:pl-96:hover{
    padding-left     : 24rem !important;
  }

  .sm\:hover\:pt-px:hover{
    padding-top     : 1px !important;
  }

  .sm\:hover\:pr-px:hover{
    padding-right     : 1px !important;
  }

  .sm\:hover\:pb-px:hover{
    padding-bottom     : 1px !important;
  }

  .sm\:hover\:pl-px:hover{
    padding-left     : 1px !important;
  }

  .sm\:hover\:pt-0\.5:hover{
    padding-top     : 0.125rem !important;
  }

  .sm\:hover\:pr-0\.5:hover{
    padding-right     : 0.125rem !important;
  }

  .sm\:hover\:pb-0\.5:hover{
    padding-bottom     : 0.125rem !important;
  }

  .sm\:hover\:pl-0\.5:hover{
    padding-left     : 0.125rem !important;
  }

  .sm\:hover\:pt-1\.5:hover{
    padding-top     : 0.375rem !important;
  }

  .sm\:hover\:pr-1\.5:hover{
    padding-right     : 0.375rem !important;
  }

  .sm\:hover\:pb-1\.5:hover{
    padding-bottom     : 0.375rem !important;
  }

  .sm\:hover\:pl-1\.5:hover{
    padding-left     : 0.375rem !important;
  }

  .sm\:hover\:pt-2\.5:hover{
    padding-top     : 0.625rem !important;
  }

  .sm\:hover\:pr-2\.5:hover{
    padding-right     : 0.625rem !important;
  }

  .sm\:hover\:pb-2\.5:hover{
    padding-bottom     : 0.625rem !important;
  }

  .sm\:hover\:pl-2\.5:hover{
    padding-left     : 0.625rem !important;
  }

  .sm\:hover\:pt-3\.5:hover{
    padding-top     : 0.875rem !important;
  }

  .sm\:hover\:pr-3\.5:hover{
    padding-right     : 0.875rem !important;
  }

  .sm\:hover\:pb-3\.5:hover{
    padding-bottom     : 0.875rem !important;
  }

  .sm\:hover\:pl-3\.5:hover{
    padding-left     : 0.875rem !important;
  }

  .sm\:hover\:pt-1\/2:hover{
    padding-top     : 50% !important;
  }

  .sm\:hover\:pr-1\/2:hover{
    padding-right     : 50% !important;
  }

  .sm\:hover\:pb-1\/2:hover{
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:pl-1\/2:hover{
    padding-left     : 50% !important;
  }

  .sm\:hover\:pt-1\/3:hover{
    padding-top     : 33.333333% !important;
  }

  .sm\:hover\:pr-1\/3:hover{
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:pb-1\/3:hover{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:pl-1\/3:hover{
    padding-left     : 33.333333% !important;
  }

  .sm\:hover\:pt-2\/3:hover{
    padding-top     : 66.666667% !important;
  }

  .sm\:hover\:pr-2\/3:hover{
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:pb-2\/3:hover{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:pl-2\/3:hover{
    padding-left     : 66.666667% !important;
  }

  .sm\:hover\:pt-1\/4:hover{
    padding-top     : 25% !important;
  }

  .sm\:hover\:pr-1\/4:hover{
    padding-right     : 25% !important;
  }

  .sm\:hover\:pb-1\/4:hover{
    padding-bottom     : 25% !important;
  }

  .sm\:hover\:pl-1\/4:hover{
    padding-left     : 25% !important;
  }

  .sm\:hover\:pt-2\/4:hover{
    padding-top     : 50% !important;
  }

  .sm\:hover\:pr-2\/4:hover{
    padding-right     : 50% !important;
  }

  .sm\:hover\:pb-2\/4:hover{
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:pl-2\/4:hover{
    padding-left     : 50% !important;
  }

  .sm\:hover\:pt-3\/4:hover{
    padding-top     : 75% !important;
  }

  .sm\:hover\:pr-3\/4:hover{
    padding-right     : 75% !important;
  }

  .sm\:hover\:pb-3\/4:hover{
    padding-bottom     : 75% !important;
  }

  .sm\:hover\:pl-3\/4:hover{
    padding-left     : 75% !important;
  }

  .sm\:hover\:pt-1\/5:hover{
    padding-top     : 20% !important;
  }

  .sm\:hover\:pr-1\/5:hover{
    padding-right     : 20% !important;
  }

  .sm\:hover\:pb-1\/5:hover{
    padding-bottom     : 20% !important;
  }

  .sm\:hover\:pl-1\/5:hover{
    padding-left     : 20% !important;
  }

  .sm\:hover\:pt-2\/5:hover{
    padding-top     : 40% !important;
  }

  .sm\:hover\:pr-2\/5:hover{
    padding-right     : 40% !important;
  }

  .sm\:hover\:pb-2\/5:hover{
    padding-bottom     : 40% !important;
  }

  .sm\:hover\:pl-2\/5:hover{
    padding-left     : 40% !important;
  }

  .sm\:hover\:pt-3\/5:hover{
    padding-top     : 60% !important;
  }

  .sm\:hover\:pr-3\/5:hover{
    padding-right     : 60% !important;
  }

  .sm\:hover\:pb-3\/5:hover{
    padding-bottom     : 60% !important;
  }

  .sm\:hover\:pl-3\/5:hover{
    padding-left     : 60% !important;
  }

  .sm\:hover\:pt-4\/5:hover{
    padding-top     : 80% !important;
  }

  .sm\:hover\:pr-4\/5:hover{
    padding-right     : 80% !important;
  }

  .sm\:hover\:pb-4\/5:hover{
    padding-bottom     : 80% !important;
  }

  .sm\:hover\:pl-4\/5:hover{
    padding-left     : 80% !important;
  }

  .sm\:hover\:pt-1\/6:hover{
    padding-top     : 16.666667% !important;
  }

  .sm\:hover\:pr-1\/6:hover{
    padding-right     : 16.666667% !important;
  }

  .sm\:hover\:pb-1\/6:hover{
    padding-bottom     : 16.666667% !important;
  }

  .sm\:hover\:pl-1\/6:hover{
    padding-left     : 16.666667% !important;
  }

  .sm\:hover\:pt-2\/6:hover{
    padding-top     : 33.333333% !important;
  }

  .sm\:hover\:pr-2\/6:hover{
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:pb-2\/6:hover{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:pl-2\/6:hover{
    padding-left     : 33.333333% !important;
  }

  .sm\:hover\:pt-3\/6:hover{
    padding-top     : 50% !important;
  }

  .sm\:hover\:pr-3\/6:hover{
    padding-right     : 50% !important;
  }

  .sm\:hover\:pb-3\/6:hover{
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:pl-3\/6:hover{
    padding-left     : 50% !important;
  }

  .sm\:hover\:pt-4\/6:hover{
    padding-top     : 66.666667% !important;
  }

  .sm\:hover\:pr-4\/6:hover{
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:pb-4\/6:hover{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:pl-4\/6:hover{
    padding-left     : 66.666667% !important;
  }

  .sm\:hover\:pt-5\/6:hover{
    padding-top     : 83.333333% !important;
  }

  .sm\:hover\:pr-5\/6:hover{
    padding-right     : 83.333333% !important;
  }

  .sm\:hover\:pb-5\/6:hover{
    padding-bottom     : 83.333333% !important;
  }

  .sm\:hover\:pl-5\/6:hover{
    padding-left     : 83.333333% !important;
  }

  .sm\:hover\:pt-1\/12:hover{
    padding-top     : 8.333333% !important;
  }

  .sm\:hover\:pr-1\/12:hover{
    padding-right     : 8.333333% !important;
  }

  .sm\:hover\:pb-1\/12:hover{
    padding-bottom     : 8.333333% !important;
  }

  .sm\:hover\:pl-1\/12:hover{
    padding-left     : 8.333333% !important;
  }

  .sm\:hover\:pt-2\/12:hover{
    padding-top     : 16.666667% !important;
  }

  .sm\:hover\:pr-2\/12:hover{
    padding-right     : 16.666667% !important;
  }

  .sm\:hover\:pb-2\/12:hover{
    padding-bottom     : 16.666667% !important;
  }

  .sm\:hover\:pl-2\/12:hover{
    padding-left     : 16.666667% !important;
  }

  .sm\:hover\:pt-3\/12:hover{
    padding-top     : 25% !important;
  }

  .sm\:hover\:pr-3\/12:hover{
    padding-right     : 25% !important;
  }

  .sm\:hover\:pb-3\/12:hover{
    padding-bottom     : 25% !important;
  }

  .sm\:hover\:pl-3\/12:hover{
    padding-left     : 25% !important;
  }

  .sm\:hover\:pt-4\/12:hover{
    padding-top     : 33.333333% !important;
  }

  .sm\:hover\:pr-4\/12:hover{
    padding-right     : 33.333333% !important;
  }

  .sm\:hover\:pb-4\/12:hover{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:hover\:pl-4\/12:hover{
    padding-left     : 33.333333% !important;
  }

  .sm\:hover\:pt-5\/12:hover{
    padding-top     : 41.666667% !important;
  }

  .sm\:hover\:pr-5\/12:hover{
    padding-right     : 41.666667% !important;
  }

  .sm\:hover\:pb-5\/12:hover{
    padding-bottom     : 41.666667% !important;
  }

  .sm\:hover\:pl-5\/12:hover{
    padding-left     : 41.666667% !important;
  }

  .sm\:hover\:pt-6\/12:hover{
    padding-top     : 50% !important;
  }

  .sm\:hover\:pr-6\/12:hover{
    padding-right     : 50% !important;
  }

  .sm\:hover\:pb-6\/12:hover{
    padding-bottom     : 50% !important;
  }

  .sm\:hover\:pl-6\/12:hover{
    padding-left     : 50% !important;
  }

  .sm\:hover\:pt-7\/12:hover{
    padding-top     : 58.333333% !important;
  }

  .sm\:hover\:pr-7\/12:hover{
    padding-right     : 58.333333% !important;
  }

  .sm\:hover\:pb-7\/12:hover{
    padding-bottom     : 58.333333% !important;
  }

  .sm\:hover\:pl-7\/12:hover{
    padding-left     : 58.333333% !important;
  }

  .sm\:hover\:pt-8\/12:hover{
    padding-top     : 66.666667% !important;
  }

  .sm\:hover\:pr-8\/12:hover{
    padding-right     : 66.666667% !important;
  }

  .sm\:hover\:pb-8\/12:hover{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:hover\:pl-8\/12:hover{
    padding-left     : 66.666667% !important;
  }

  .sm\:hover\:pt-9\/12:hover{
    padding-top     : 75% !important;
  }

  .sm\:hover\:pr-9\/12:hover{
    padding-right     : 75% !important;
  }

  .sm\:hover\:pb-9\/12:hover{
    padding-bottom     : 75% !important;
  }

  .sm\:hover\:pl-9\/12:hover{
    padding-left     : 75% !important;
  }

  .sm\:hover\:pt-10\/12:hover{
    padding-top     : 83.333333% !important;
  }

  .sm\:hover\:pr-10\/12:hover{
    padding-right     : 83.333333% !important;
  }

  .sm\:hover\:pb-10\/12:hover{
    padding-bottom     : 83.333333% !important;
  }

  .sm\:hover\:pl-10\/12:hover{
    padding-left     : 83.333333% !important;
  }

  .sm\:hover\:pt-11\/12:hover{
    padding-top     : 91.666667% !important;
  }

  .sm\:hover\:pr-11\/12:hover{
    padding-right     : 91.666667% !important;
  }

  .sm\:hover\:pb-11\/12:hover{
    padding-bottom     : 91.666667% !important;
  }

  .sm\:hover\:pl-11\/12:hover{
    padding-left     : 91.666667% !important;
  }

  .sm\:hover\:pt-full:hover{
    padding-top     : 100% !important;
  }

  .sm\:hover\:pr-full:hover{
    padding-right     : 100% !important;
  }

  .sm\:hover\:pb-full:hover{
    padding-bottom     : 100% !important;
  }

  .sm\:hover\:pl-full:hover{
    padding-left     : 100% !important;
  }

  .sm\:focus\:p-0:focus{
    padding     : 0 !important;
  }

  .sm\:focus\:p-1:focus{
    padding     : 0.25rem !important;
  }

  .sm\:focus\:p-2:focus{
    padding     : 0.5rem !important;
  }

  .sm\:focus\:p-3:focus{
    padding     : 0.75rem !important;
  }

  .sm\:focus\:p-4:focus{
    padding     : 1rem !important;
  }

  .sm\:focus\:p-5:focus{
    padding     : 1.25rem !important;
  }

  .sm\:focus\:p-6:focus{
    padding     : 1.5rem !important;
  }

  .sm\:focus\:p-7:focus{
    padding     : 1.75rem !important;
  }

  .sm\:focus\:p-8:focus{
    padding     : 2rem !important;
  }

  .sm\:focus\:p-9:focus{
    padding     : 2.25rem !important;
  }

  .sm\:focus\:p-10:focus{
    padding     : 2.5rem !important;
  }

  .sm\:focus\:p-11:focus{
    padding     : 2.75rem !important;
  }

  .sm\:focus\:p-12:focus{
    padding     : 3rem !important;
  }

  .sm\:focus\:p-13:focus{
    padding     : 3.25rem !important;
  }

  .sm\:focus\:p-14:focus{
    padding     : 3.5rem !important;
  }

  .sm\:focus\:p-15:focus{
    padding     : 3.75rem !important;
  }

  .sm\:focus\:p-16:focus{
    padding     : 4rem !important;
  }

  .sm\:focus\:p-20:focus{
    padding     : 5rem !important;
  }

  .sm\:focus\:p-24:focus{
    padding     : 6rem !important;
  }

  .sm\:focus\:p-28:focus{
    padding     : 7rem !important;
  }

  .sm\:focus\:p-32:focus{
    padding     : 8rem !important;
  }

  .sm\:focus\:p-36:focus{
    padding     : 9rem !important;
  }

  .sm\:focus\:p-40:focus{
    padding     : 10rem !important;
  }

  .sm\:focus\:p-44:focus{
    padding     : 11rem !important;
  }

  .sm\:focus\:p-48:focus{
    padding     : 12rem !important;
  }

  .sm\:focus\:p-52:focus{
    padding     : 13rem !important;
  }

  .sm\:focus\:p-56:focus{
    padding     : 14rem !important;
  }

  .sm\:focus\:p-60:focus{
    padding     : 15rem !important;
  }

  .sm\:focus\:p-64:focus{
    padding     : 16rem !important;
  }

  .sm\:focus\:p-72:focus{
    padding     : 18rem !important;
  }

  .sm\:focus\:p-80:focus{
    padding     : 20rem !important;
  }

  .sm\:focus\:p-96:focus{
    padding     : 24rem !important;
  }

  .sm\:focus\:p-px:focus{
    padding     : 1px !important;
  }

  .sm\:focus\:p-0\.5:focus{
    padding     : 0.125rem !important;
  }

  .sm\:focus\:p-1\.5:focus{
    padding     : 0.375rem !important;
  }

  .sm\:focus\:p-2\.5:focus{
    padding     : 0.625rem !important;
  }

  .sm\:focus\:p-3\.5:focus{
    padding     : 0.875rem !important;
  }

  .sm\:focus\:p-1\/2:focus{
    padding     : 50% !important;
  }

  .sm\:focus\:p-1\/3:focus{
    padding     : 33.333333% !important;
  }

  .sm\:focus\:p-2\/3:focus{
    padding     : 66.666667% !important;
  }

  .sm\:focus\:p-1\/4:focus{
    padding     : 25% !important;
  }

  .sm\:focus\:p-2\/4:focus{
    padding     : 50% !important;
  }

  .sm\:focus\:p-3\/4:focus{
    padding     : 75% !important;
  }

  .sm\:focus\:p-1\/5:focus{
    padding     : 20% !important;
  }

  .sm\:focus\:p-2\/5:focus{
    padding     : 40% !important;
  }

  .sm\:focus\:p-3\/5:focus{
    padding     : 60% !important;
  }

  .sm\:focus\:p-4\/5:focus{
    padding     : 80% !important;
  }

  .sm\:focus\:p-1\/6:focus{
    padding     : 16.666667% !important;
  }

  .sm\:focus\:p-2\/6:focus{
    padding     : 33.333333% !important;
  }

  .sm\:focus\:p-3\/6:focus{
    padding     : 50% !important;
  }

  .sm\:focus\:p-4\/6:focus{
    padding     : 66.666667% !important;
  }

  .sm\:focus\:p-5\/6:focus{
    padding     : 83.333333% !important;
  }

  .sm\:focus\:p-1\/12:focus{
    padding     : 8.333333% !important;
  }

  .sm\:focus\:p-2\/12:focus{
    padding     : 16.666667% !important;
  }

  .sm\:focus\:p-3\/12:focus{
    padding     : 25% !important;
  }

  .sm\:focus\:p-4\/12:focus{
    padding     : 33.333333% !important;
  }

  .sm\:focus\:p-5\/12:focus{
    padding     : 41.666667% !important;
  }

  .sm\:focus\:p-6\/12:focus{
    padding     : 50% !important;
  }

  .sm\:focus\:p-7\/12:focus{
    padding     : 58.333333% !important;
  }

  .sm\:focus\:p-8\/12:focus{
    padding     : 66.666667% !important;
  }

  .sm\:focus\:p-9\/12:focus{
    padding     : 75% !important;
  }

  .sm\:focus\:p-10\/12:focus{
    padding     : 83.333333% !important;
  }

  .sm\:focus\:p-11\/12:focus{
    padding     : 91.666667% !important;
  }

  .sm\:focus\:p-full:focus{
    padding     : 100% !important;
  }

  .sm\:focus\:py-0:focus{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .sm\:focus\:px-0:focus{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .sm\:focus\:py-1:focus{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .sm\:focus\:px-1:focus{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .sm\:focus\:py-2:focus{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .sm\:focus\:px-2:focus{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .sm\:focus\:py-3:focus{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .sm\:focus\:px-3:focus{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .sm\:focus\:py-4:focus{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .sm\:focus\:px-4:focus{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .sm\:focus\:py-5:focus{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .sm\:focus\:px-5:focus{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .sm\:focus\:py-6:focus{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .sm\:focus\:px-6:focus{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .sm\:focus\:py-7:focus{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .sm\:focus\:px-7:focus{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .sm\:focus\:py-8:focus{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .sm\:focus\:px-8:focus{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .sm\:focus\:py-9:focus{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .sm\:focus\:px-9:focus{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .sm\:focus\:py-10:focus{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .sm\:focus\:px-10:focus{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .sm\:focus\:py-11:focus{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .sm\:focus\:px-11:focus{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .sm\:focus\:py-12:focus{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .sm\:focus\:px-12:focus{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .sm\:focus\:py-13:focus{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .sm\:focus\:px-13:focus{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .sm\:focus\:py-14:focus{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .sm\:focus\:px-14:focus{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .sm\:focus\:py-15:focus{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .sm\:focus\:px-15:focus{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .sm\:focus\:py-16:focus{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .sm\:focus\:px-16:focus{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .sm\:focus\:py-20:focus{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .sm\:focus\:px-20:focus{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .sm\:focus\:py-24:focus{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .sm\:focus\:px-24:focus{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .sm\:focus\:py-28:focus{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .sm\:focus\:px-28:focus{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .sm\:focus\:py-32:focus{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .sm\:focus\:px-32:focus{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .sm\:focus\:py-36:focus{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .sm\:focus\:px-36:focus{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .sm\:focus\:py-40:focus{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .sm\:focus\:px-40:focus{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .sm\:focus\:py-44:focus{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .sm\:focus\:px-44:focus{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .sm\:focus\:py-48:focus{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .sm\:focus\:px-48:focus{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .sm\:focus\:py-52:focus{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .sm\:focus\:px-52:focus{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .sm\:focus\:py-56:focus{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .sm\:focus\:px-56:focus{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .sm\:focus\:py-60:focus{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .sm\:focus\:px-60:focus{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .sm\:focus\:py-64:focus{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .sm\:focus\:px-64:focus{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .sm\:focus\:py-72:focus{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .sm\:focus\:px-72:focus{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .sm\:focus\:py-80:focus{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .sm\:focus\:px-80:focus{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .sm\:focus\:py-96:focus{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .sm\:focus\:px-96:focus{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .sm\:focus\:py-px:focus{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .sm\:focus\:px-px:focus{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .sm\:focus\:py-0\.5:focus{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .sm\:focus\:px-0\.5:focus{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .sm\:focus\:py-1\.5:focus{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .sm\:focus\:px-1\.5:focus{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .sm\:focus\:py-2\.5:focus{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .sm\:focus\:px-2\.5:focus{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .sm\:focus\:py-3\.5:focus{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .sm\:focus\:px-3\.5:focus{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .sm\:focus\:py-1\/2:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:px-1\/2:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:focus\:py-1\/3:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:px-1\/3:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:py-2\/3:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:px-2\/3:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:py-1\/4:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .sm\:focus\:px-1\/4:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .sm\:focus\:py-2\/4:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:px-2\/4:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:focus\:py-3\/4:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .sm\:focus\:px-3\/4:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .sm\:focus\:py-1\/5:focus{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .sm\:focus\:px-1\/5:focus{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .sm\:focus\:py-2\/5:focus{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .sm\:focus\:px-2\/5:focus{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .sm\:focus\:py-3\/5:focus{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .sm\:focus\:px-3\/5:focus{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .sm\:focus\:py-4\/5:focus{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .sm\:focus\:px-4\/5:focus{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .sm\:focus\:py-1\/6:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .sm\:focus\:px-1\/6:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .sm\:focus\:py-2\/6:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:px-2\/6:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:py-3\/6:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:px-3\/6:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:focus\:py-4\/6:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:px-4\/6:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:py-5\/6:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .sm\:focus\:px-5\/6:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .sm\:focus\:py-1\/12:focus{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .sm\:focus\:px-1\/12:focus{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .sm\:focus\:py-2\/12:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .sm\:focus\:px-2\/12:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .sm\:focus\:py-3\/12:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .sm\:focus\:px-3\/12:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .sm\:focus\:py-4\/12:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:px-4\/12:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:py-5\/12:focus{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .sm\:focus\:px-5\/12:focus{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .sm\:focus\:py-6\/12:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:px-6\/12:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .sm\:focus\:py-7\/12:focus{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .sm\:focus\:px-7\/12:focus{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .sm\:focus\:py-8\/12:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:px-8\/12:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:py-9\/12:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .sm\:focus\:px-9\/12:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .sm\:focus\:py-10\/12:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .sm\:focus\:px-10\/12:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .sm\:focus\:py-11\/12:focus{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .sm\:focus\:px-11\/12:focus{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .sm\:focus\:py-full:focus{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .sm\:focus\:px-full:focus{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .sm\:focus\:pt-0:focus{
    padding-top     : 0 !important;
  }

  .sm\:focus\:pr-0:focus{
    padding-right     : 0 !important;
  }

  .sm\:focus\:pb-0:focus{
    padding-bottom     : 0 !important;
  }

  .sm\:focus\:pl-0:focus{
    padding-left     : 0 !important;
  }

  .sm\:focus\:pt-1:focus{
    padding-top     : 0.25rem !important;
  }

  .sm\:focus\:pr-1:focus{
    padding-right     : 0.25rem !important;
  }

  .sm\:focus\:pb-1:focus{
    padding-bottom     : 0.25rem !important;
  }

  .sm\:focus\:pl-1:focus{
    padding-left     : 0.25rem !important;
  }

  .sm\:focus\:pt-2:focus{
    padding-top     : 0.5rem !important;
  }

  .sm\:focus\:pr-2:focus{
    padding-right     : 0.5rem !important;
  }

  .sm\:focus\:pb-2:focus{
    padding-bottom     : 0.5rem !important;
  }

  .sm\:focus\:pl-2:focus{
    padding-left     : 0.5rem !important;
  }

  .sm\:focus\:pt-3:focus{
    padding-top     : 0.75rem !important;
  }

  .sm\:focus\:pr-3:focus{
    padding-right     : 0.75rem !important;
  }

  .sm\:focus\:pb-3:focus{
    padding-bottom     : 0.75rem !important;
  }

  .sm\:focus\:pl-3:focus{
    padding-left     : 0.75rem !important;
  }

  .sm\:focus\:pt-4:focus{
    padding-top     : 1rem !important;
  }

  .sm\:focus\:pr-4:focus{
    padding-right     : 1rem !important;
  }

  .sm\:focus\:pb-4:focus{
    padding-bottom     : 1rem !important;
  }

  .sm\:focus\:pl-4:focus{
    padding-left     : 1rem !important;
  }

  .sm\:focus\:pt-5:focus{
    padding-top     : 1.25rem !important;
  }

  .sm\:focus\:pr-5:focus{
    padding-right     : 1.25rem !important;
  }

  .sm\:focus\:pb-5:focus{
    padding-bottom     : 1.25rem !important;
  }

  .sm\:focus\:pl-5:focus{
    padding-left     : 1.25rem !important;
  }

  .sm\:focus\:pt-6:focus{
    padding-top     : 1.5rem !important;
  }

  .sm\:focus\:pr-6:focus{
    padding-right     : 1.5rem !important;
  }

  .sm\:focus\:pb-6:focus{
    padding-bottom     : 1.5rem !important;
  }

  .sm\:focus\:pl-6:focus{
    padding-left     : 1.5rem !important;
  }

  .sm\:focus\:pt-7:focus{
    padding-top     : 1.75rem !important;
  }

  .sm\:focus\:pr-7:focus{
    padding-right     : 1.75rem !important;
  }

  .sm\:focus\:pb-7:focus{
    padding-bottom     : 1.75rem !important;
  }

  .sm\:focus\:pl-7:focus{
    padding-left     : 1.75rem !important;
  }

  .sm\:focus\:pt-8:focus{
    padding-top     : 2rem !important;
  }

  .sm\:focus\:pr-8:focus{
    padding-right     : 2rem !important;
  }

  .sm\:focus\:pb-8:focus{
    padding-bottom     : 2rem !important;
  }

  .sm\:focus\:pl-8:focus{
    padding-left     : 2rem !important;
  }

  .sm\:focus\:pt-9:focus{
    padding-top     : 2.25rem !important;
  }

  .sm\:focus\:pr-9:focus{
    padding-right     : 2.25rem !important;
  }

  .sm\:focus\:pb-9:focus{
    padding-bottom     : 2.25rem !important;
  }

  .sm\:focus\:pl-9:focus{
    padding-left     : 2.25rem !important;
  }

  .sm\:focus\:pt-10:focus{
    padding-top     : 2.5rem !important;
  }

  .sm\:focus\:pr-10:focus{
    padding-right     : 2.5rem !important;
  }

  .sm\:focus\:pb-10:focus{
    padding-bottom     : 2.5rem !important;
  }

  .sm\:focus\:pl-10:focus{
    padding-left     : 2.5rem !important;
  }

  .sm\:focus\:pt-11:focus{
    padding-top     : 2.75rem !important;
  }

  .sm\:focus\:pr-11:focus{
    padding-right     : 2.75rem !important;
  }

  .sm\:focus\:pb-11:focus{
    padding-bottom     : 2.75rem !important;
  }

  .sm\:focus\:pl-11:focus{
    padding-left     : 2.75rem !important;
  }

  .sm\:focus\:pt-12:focus{
    padding-top     : 3rem !important;
  }

  .sm\:focus\:pr-12:focus{
    padding-right     : 3rem !important;
  }

  .sm\:focus\:pb-12:focus{
    padding-bottom     : 3rem !important;
  }

  .sm\:focus\:pl-12:focus{
    padding-left     : 3rem !important;
  }

  .sm\:focus\:pt-13:focus{
    padding-top     : 3.25rem !important;
  }

  .sm\:focus\:pr-13:focus{
    padding-right     : 3.25rem !important;
  }

  .sm\:focus\:pb-13:focus{
    padding-bottom     : 3.25rem !important;
  }

  .sm\:focus\:pl-13:focus{
    padding-left     : 3.25rem !important;
  }

  .sm\:focus\:pt-14:focus{
    padding-top     : 3.5rem !important;
  }

  .sm\:focus\:pr-14:focus{
    padding-right     : 3.5rem !important;
  }

  .sm\:focus\:pb-14:focus{
    padding-bottom     : 3.5rem !important;
  }

  .sm\:focus\:pl-14:focus{
    padding-left     : 3.5rem !important;
  }

  .sm\:focus\:pt-15:focus{
    padding-top     : 3.75rem !important;
  }

  .sm\:focus\:pr-15:focus{
    padding-right     : 3.75rem !important;
  }

  .sm\:focus\:pb-15:focus{
    padding-bottom     : 3.75rem !important;
  }

  .sm\:focus\:pl-15:focus{
    padding-left     : 3.75rem !important;
  }

  .sm\:focus\:pt-16:focus{
    padding-top     : 4rem !important;
  }

  .sm\:focus\:pr-16:focus{
    padding-right     : 4rem !important;
  }

  .sm\:focus\:pb-16:focus{
    padding-bottom     : 4rem !important;
  }

  .sm\:focus\:pl-16:focus{
    padding-left     : 4rem !important;
  }

  .sm\:focus\:pt-20:focus{
    padding-top     : 5rem !important;
  }

  .sm\:focus\:pr-20:focus{
    padding-right     : 5rem !important;
  }

  .sm\:focus\:pb-20:focus{
    padding-bottom     : 5rem !important;
  }

  .sm\:focus\:pl-20:focus{
    padding-left     : 5rem !important;
  }

  .sm\:focus\:pt-24:focus{
    padding-top     : 6rem !important;
  }

  .sm\:focus\:pr-24:focus{
    padding-right     : 6rem !important;
  }

  .sm\:focus\:pb-24:focus{
    padding-bottom     : 6rem !important;
  }

  .sm\:focus\:pl-24:focus{
    padding-left     : 6rem !important;
  }

  .sm\:focus\:pt-28:focus{
    padding-top     : 7rem !important;
  }

  .sm\:focus\:pr-28:focus{
    padding-right     : 7rem !important;
  }

  .sm\:focus\:pb-28:focus{
    padding-bottom     : 7rem !important;
  }

  .sm\:focus\:pl-28:focus{
    padding-left     : 7rem !important;
  }

  .sm\:focus\:pt-32:focus{
    padding-top     : 8rem !important;
  }

  .sm\:focus\:pr-32:focus{
    padding-right     : 8rem !important;
  }

  .sm\:focus\:pb-32:focus{
    padding-bottom     : 8rem !important;
  }

  .sm\:focus\:pl-32:focus{
    padding-left     : 8rem !important;
  }

  .sm\:focus\:pt-36:focus{
    padding-top     : 9rem !important;
  }

  .sm\:focus\:pr-36:focus{
    padding-right     : 9rem !important;
  }

  .sm\:focus\:pb-36:focus{
    padding-bottom     : 9rem !important;
  }

  .sm\:focus\:pl-36:focus{
    padding-left     : 9rem !important;
  }

  .sm\:focus\:pt-40:focus{
    padding-top     : 10rem !important;
  }

  .sm\:focus\:pr-40:focus{
    padding-right     : 10rem !important;
  }

  .sm\:focus\:pb-40:focus{
    padding-bottom     : 10rem !important;
  }

  .sm\:focus\:pl-40:focus{
    padding-left     : 10rem !important;
  }

  .sm\:focus\:pt-44:focus{
    padding-top     : 11rem !important;
  }

  .sm\:focus\:pr-44:focus{
    padding-right     : 11rem !important;
  }

  .sm\:focus\:pb-44:focus{
    padding-bottom     : 11rem !important;
  }

  .sm\:focus\:pl-44:focus{
    padding-left     : 11rem !important;
  }

  .sm\:focus\:pt-48:focus{
    padding-top     : 12rem !important;
  }

  .sm\:focus\:pr-48:focus{
    padding-right     : 12rem !important;
  }

  .sm\:focus\:pb-48:focus{
    padding-bottom     : 12rem !important;
  }

  .sm\:focus\:pl-48:focus{
    padding-left     : 12rem !important;
  }

  .sm\:focus\:pt-52:focus{
    padding-top     : 13rem !important;
  }

  .sm\:focus\:pr-52:focus{
    padding-right     : 13rem !important;
  }

  .sm\:focus\:pb-52:focus{
    padding-bottom     : 13rem !important;
  }

  .sm\:focus\:pl-52:focus{
    padding-left     : 13rem !important;
  }

  .sm\:focus\:pt-56:focus{
    padding-top     : 14rem !important;
  }

  .sm\:focus\:pr-56:focus{
    padding-right     : 14rem !important;
  }

  .sm\:focus\:pb-56:focus{
    padding-bottom     : 14rem !important;
  }

  .sm\:focus\:pl-56:focus{
    padding-left     : 14rem !important;
  }

  .sm\:focus\:pt-60:focus{
    padding-top     : 15rem !important;
  }

  .sm\:focus\:pr-60:focus{
    padding-right     : 15rem !important;
  }

  .sm\:focus\:pb-60:focus{
    padding-bottom     : 15rem !important;
  }

  .sm\:focus\:pl-60:focus{
    padding-left     : 15rem !important;
  }

  .sm\:focus\:pt-64:focus{
    padding-top     : 16rem !important;
  }

  .sm\:focus\:pr-64:focus{
    padding-right     : 16rem !important;
  }

  .sm\:focus\:pb-64:focus{
    padding-bottom     : 16rem !important;
  }

  .sm\:focus\:pl-64:focus{
    padding-left     : 16rem !important;
  }

  .sm\:focus\:pt-72:focus{
    padding-top     : 18rem !important;
  }

  .sm\:focus\:pr-72:focus{
    padding-right     : 18rem !important;
  }

  .sm\:focus\:pb-72:focus{
    padding-bottom     : 18rem !important;
  }

  .sm\:focus\:pl-72:focus{
    padding-left     : 18rem !important;
  }

  .sm\:focus\:pt-80:focus{
    padding-top     : 20rem !important;
  }

  .sm\:focus\:pr-80:focus{
    padding-right     : 20rem !important;
  }

  .sm\:focus\:pb-80:focus{
    padding-bottom     : 20rem !important;
  }

  .sm\:focus\:pl-80:focus{
    padding-left     : 20rem !important;
  }

  .sm\:focus\:pt-96:focus{
    padding-top     : 24rem !important;
  }

  .sm\:focus\:pr-96:focus{
    padding-right     : 24rem !important;
  }

  .sm\:focus\:pb-96:focus{
    padding-bottom     : 24rem !important;
  }

  .sm\:focus\:pl-96:focus{
    padding-left     : 24rem !important;
  }

  .sm\:focus\:pt-px:focus{
    padding-top     : 1px !important;
  }

  .sm\:focus\:pr-px:focus{
    padding-right     : 1px !important;
  }

  .sm\:focus\:pb-px:focus{
    padding-bottom     : 1px !important;
  }

  .sm\:focus\:pl-px:focus{
    padding-left     : 1px !important;
  }

  .sm\:focus\:pt-0\.5:focus{
    padding-top     : 0.125rem !important;
  }

  .sm\:focus\:pr-0\.5:focus{
    padding-right     : 0.125rem !important;
  }

  .sm\:focus\:pb-0\.5:focus{
    padding-bottom     : 0.125rem !important;
  }

  .sm\:focus\:pl-0\.5:focus{
    padding-left     : 0.125rem !important;
  }

  .sm\:focus\:pt-1\.5:focus{
    padding-top     : 0.375rem !important;
  }

  .sm\:focus\:pr-1\.5:focus{
    padding-right     : 0.375rem !important;
  }

  .sm\:focus\:pb-1\.5:focus{
    padding-bottom     : 0.375rem !important;
  }

  .sm\:focus\:pl-1\.5:focus{
    padding-left     : 0.375rem !important;
  }

  .sm\:focus\:pt-2\.5:focus{
    padding-top     : 0.625rem !important;
  }

  .sm\:focus\:pr-2\.5:focus{
    padding-right     : 0.625rem !important;
  }

  .sm\:focus\:pb-2\.5:focus{
    padding-bottom     : 0.625rem !important;
  }

  .sm\:focus\:pl-2\.5:focus{
    padding-left     : 0.625rem !important;
  }

  .sm\:focus\:pt-3\.5:focus{
    padding-top     : 0.875rem !important;
  }

  .sm\:focus\:pr-3\.5:focus{
    padding-right     : 0.875rem !important;
  }

  .sm\:focus\:pb-3\.5:focus{
    padding-bottom     : 0.875rem !important;
  }

  .sm\:focus\:pl-3\.5:focus{
    padding-left     : 0.875rem !important;
  }

  .sm\:focus\:pt-1\/2:focus{
    padding-top     : 50% !important;
  }

  .sm\:focus\:pr-1\/2:focus{
    padding-right     : 50% !important;
  }

  .sm\:focus\:pb-1\/2:focus{
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:pl-1\/2:focus{
    padding-left     : 50% !important;
  }

  .sm\:focus\:pt-1\/3:focus{
    padding-top     : 33.333333% !important;
  }

  .sm\:focus\:pr-1\/3:focus{
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:pb-1\/3:focus{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:pl-1\/3:focus{
    padding-left     : 33.333333% !important;
  }

  .sm\:focus\:pt-2\/3:focus{
    padding-top     : 66.666667% !important;
  }

  .sm\:focus\:pr-2\/3:focus{
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:pb-2\/3:focus{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:pl-2\/3:focus{
    padding-left     : 66.666667% !important;
  }

  .sm\:focus\:pt-1\/4:focus{
    padding-top     : 25% !important;
  }

  .sm\:focus\:pr-1\/4:focus{
    padding-right     : 25% !important;
  }

  .sm\:focus\:pb-1\/4:focus{
    padding-bottom     : 25% !important;
  }

  .sm\:focus\:pl-1\/4:focus{
    padding-left     : 25% !important;
  }

  .sm\:focus\:pt-2\/4:focus{
    padding-top     : 50% !important;
  }

  .sm\:focus\:pr-2\/4:focus{
    padding-right     : 50% !important;
  }

  .sm\:focus\:pb-2\/4:focus{
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:pl-2\/4:focus{
    padding-left     : 50% !important;
  }

  .sm\:focus\:pt-3\/4:focus{
    padding-top     : 75% !important;
  }

  .sm\:focus\:pr-3\/4:focus{
    padding-right     : 75% !important;
  }

  .sm\:focus\:pb-3\/4:focus{
    padding-bottom     : 75% !important;
  }

  .sm\:focus\:pl-3\/4:focus{
    padding-left     : 75% !important;
  }

  .sm\:focus\:pt-1\/5:focus{
    padding-top     : 20% !important;
  }

  .sm\:focus\:pr-1\/5:focus{
    padding-right     : 20% !important;
  }

  .sm\:focus\:pb-1\/5:focus{
    padding-bottom     : 20% !important;
  }

  .sm\:focus\:pl-1\/5:focus{
    padding-left     : 20% !important;
  }

  .sm\:focus\:pt-2\/5:focus{
    padding-top     : 40% !important;
  }

  .sm\:focus\:pr-2\/5:focus{
    padding-right     : 40% !important;
  }

  .sm\:focus\:pb-2\/5:focus{
    padding-bottom     : 40% !important;
  }

  .sm\:focus\:pl-2\/5:focus{
    padding-left     : 40% !important;
  }

  .sm\:focus\:pt-3\/5:focus{
    padding-top     : 60% !important;
  }

  .sm\:focus\:pr-3\/5:focus{
    padding-right     : 60% !important;
  }

  .sm\:focus\:pb-3\/5:focus{
    padding-bottom     : 60% !important;
  }

  .sm\:focus\:pl-3\/5:focus{
    padding-left     : 60% !important;
  }

  .sm\:focus\:pt-4\/5:focus{
    padding-top     : 80% !important;
  }

  .sm\:focus\:pr-4\/5:focus{
    padding-right     : 80% !important;
  }

  .sm\:focus\:pb-4\/5:focus{
    padding-bottom     : 80% !important;
  }

  .sm\:focus\:pl-4\/5:focus{
    padding-left     : 80% !important;
  }

  .sm\:focus\:pt-1\/6:focus{
    padding-top     : 16.666667% !important;
  }

  .sm\:focus\:pr-1\/6:focus{
    padding-right     : 16.666667% !important;
  }

  .sm\:focus\:pb-1\/6:focus{
    padding-bottom     : 16.666667% !important;
  }

  .sm\:focus\:pl-1\/6:focus{
    padding-left     : 16.666667% !important;
  }

  .sm\:focus\:pt-2\/6:focus{
    padding-top     : 33.333333% !important;
  }

  .sm\:focus\:pr-2\/6:focus{
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:pb-2\/6:focus{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:pl-2\/6:focus{
    padding-left     : 33.333333% !important;
  }

  .sm\:focus\:pt-3\/6:focus{
    padding-top     : 50% !important;
  }

  .sm\:focus\:pr-3\/6:focus{
    padding-right     : 50% !important;
  }

  .sm\:focus\:pb-3\/6:focus{
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:pl-3\/6:focus{
    padding-left     : 50% !important;
  }

  .sm\:focus\:pt-4\/6:focus{
    padding-top     : 66.666667% !important;
  }

  .sm\:focus\:pr-4\/6:focus{
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:pb-4\/6:focus{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:pl-4\/6:focus{
    padding-left     : 66.666667% !important;
  }

  .sm\:focus\:pt-5\/6:focus{
    padding-top     : 83.333333% !important;
  }

  .sm\:focus\:pr-5\/6:focus{
    padding-right     : 83.333333% !important;
  }

  .sm\:focus\:pb-5\/6:focus{
    padding-bottom     : 83.333333% !important;
  }

  .sm\:focus\:pl-5\/6:focus{
    padding-left     : 83.333333% !important;
  }

  .sm\:focus\:pt-1\/12:focus{
    padding-top     : 8.333333% !important;
  }

  .sm\:focus\:pr-1\/12:focus{
    padding-right     : 8.333333% !important;
  }

  .sm\:focus\:pb-1\/12:focus{
    padding-bottom     : 8.333333% !important;
  }

  .sm\:focus\:pl-1\/12:focus{
    padding-left     : 8.333333% !important;
  }

  .sm\:focus\:pt-2\/12:focus{
    padding-top     : 16.666667% !important;
  }

  .sm\:focus\:pr-2\/12:focus{
    padding-right     : 16.666667% !important;
  }

  .sm\:focus\:pb-2\/12:focus{
    padding-bottom     : 16.666667% !important;
  }

  .sm\:focus\:pl-2\/12:focus{
    padding-left     : 16.666667% !important;
  }

  .sm\:focus\:pt-3\/12:focus{
    padding-top     : 25% !important;
  }

  .sm\:focus\:pr-3\/12:focus{
    padding-right     : 25% !important;
  }

  .sm\:focus\:pb-3\/12:focus{
    padding-bottom     : 25% !important;
  }

  .sm\:focus\:pl-3\/12:focus{
    padding-left     : 25% !important;
  }

  .sm\:focus\:pt-4\/12:focus{
    padding-top     : 33.333333% !important;
  }

  .sm\:focus\:pr-4\/12:focus{
    padding-right     : 33.333333% !important;
  }

  .sm\:focus\:pb-4\/12:focus{
    padding-bottom     : 33.333333% !important;
  }

  .sm\:focus\:pl-4\/12:focus{
    padding-left     : 33.333333% !important;
  }

  .sm\:focus\:pt-5\/12:focus{
    padding-top     : 41.666667% !important;
  }

  .sm\:focus\:pr-5\/12:focus{
    padding-right     : 41.666667% !important;
  }

  .sm\:focus\:pb-5\/12:focus{
    padding-bottom     : 41.666667% !important;
  }

  .sm\:focus\:pl-5\/12:focus{
    padding-left     : 41.666667% !important;
  }

  .sm\:focus\:pt-6\/12:focus{
    padding-top     : 50% !important;
  }

  .sm\:focus\:pr-6\/12:focus{
    padding-right     : 50% !important;
  }

  .sm\:focus\:pb-6\/12:focus{
    padding-bottom     : 50% !important;
  }

  .sm\:focus\:pl-6\/12:focus{
    padding-left     : 50% !important;
  }

  .sm\:focus\:pt-7\/12:focus{
    padding-top     : 58.333333% !important;
  }

  .sm\:focus\:pr-7\/12:focus{
    padding-right     : 58.333333% !important;
  }

  .sm\:focus\:pb-7\/12:focus{
    padding-bottom     : 58.333333% !important;
  }

  .sm\:focus\:pl-7\/12:focus{
    padding-left     : 58.333333% !important;
  }

  .sm\:focus\:pt-8\/12:focus{
    padding-top     : 66.666667% !important;
  }

  .sm\:focus\:pr-8\/12:focus{
    padding-right     : 66.666667% !important;
  }

  .sm\:focus\:pb-8\/12:focus{
    padding-bottom     : 66.666667% !important;
  }

  .sm\:focus\:pl-8\/12:focus{
    padding-left     : 66.666667% !important;
  }

  .sm\:focus\:pt-9\/12:focus{
    padding-top     : 75% !important;
  }

  .sm\:focus\:pr-9\/12:focus{
    padding-right     : 75% !important;
  }

  .sm\:focus\:pb-9\/12:focus{
    padding-bottom     : 75% !important;
  }

  .sm\:focus\:pl-9\/12:focus{
    padding-left     : 75% !important;
  }

  .sm\:focus\:pt-10\/12:focus{
    padding-top     : 83.333333% !important;
  }

  .sm\:focus\:pr-10\/12:focus{
    padding-right     : 83.333333% !important;
  }

  .sm\:focus\:pb-10\/12:focus{
    padding-bottom     : 83.333333% !important;
  }

  .sm\:focus\:pl-10\/12:focus{
    padding-left     : 83.333333% !important;
  }

  .sm\:focus\:pt-11\/12:focus{
    padding-top     : 91.666667% !important;
  }

  .sm\:focus\:pr-11\/12:focus{
    padding-right     : 91.666667% !important;
  }

  .sm\:focus\:pb-11\/12:focus{
    padding-bottom     : 91.666667% !important;
  }

  .sm\:focus\:pl-11\/12:focus{
    padding-left     : 91.666667% !important;
  }

  .sm\:focus\:pt-full:focus{
    padding-top     : 100% !important;
  }

  .sm\:focus\:pr-full:focus{
    padding-right     : 100% !important;
  }

  .sm\:focus\:pb-full:focus{
    padding-bottom     : 100% !important;
  }

  .sm\:focus\:pl-full:focus{
    padding-left     : 100% !important;
  }

  .sm\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .sm\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .sm\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color     : transparent !important;
  }

  .sm\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:hover\:placeholder-transparent:hover::-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:hover\:placeholder-transparent:hover::placeholder{
    color     : transparent !important;
  }

  .sm\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-white:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-black:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-cool-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-red-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-orange-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-yellow-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-green-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-teal-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-indigo-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-purple-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-pink-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-brand:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-brand:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-brand:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:hover\:placeholder-blue-brand:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color     : transparent !important;
  }

  .sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color     : transparent !important;
  }

  .sm\:focus\:placeholder-transparent:focus::placeholder{
    color     : transparent !important;
  }

  .sm\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-cool-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-red-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-orange-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-yellow-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-green-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-teal-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-indigo-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-purple-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-pink-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-brand:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-brand:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-brand:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:placeholder-blue-brand:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .sm\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:hover\:placeholder-opacity-0:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:hover\:placeholder-opacity-25:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:hover\:placeholder-opacity-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:hover\:placeholder-opacity-75:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:hover\:placeholder-opacity-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .sm\:pointer-events-none{
    pointer-events     : none !important;
  }

  .sm\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .group:hover .sm\:group-hover\:pointer-events-none{
    pointer-events     : none !important;
  }

  .group:hover .sm\:group-hover\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .sm\:hover\:pointer-events-none:hover{
    pointer-events     : none !important;
  }

  .sm\:hover\:pointer-events-auto:hover{
    pointer-events     : auto !important;
  }

  .sm\:focus\:pointer-events-none:focus{
    pointer-events     : none !important;
  }

  .sm\:focus\:pointer-events-auto:focus{
    pointer-events     : auto !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;
  }

  .group:hover .sm\:group-hover\:static{
    position     : static !important;
  }

  .group:hover .sm\:group-hover\:fixed{
    position     : fixed !important;
  }

  .group:hover .sm\:group-hover\:absolute{
    position     : absolute !important;
  }

  .group:hover .sm\:group-hover\:relative{
    position     : relative !important;
  }

  .group:hover .sm\:group-hover\:sticky{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .sm\:hover\:static:hover{
    position     : static !important;
  }

  .sm\:hover\:fixed:hover{
    position     : fixed !important;
  }

  .sm\:hover\:absolute:hover{
    position     : absolute !important;
  }

  .sm\:hover\:relative:hover{
    position     : relative !important;
  }

  .sm\:hover\:sticky:hover{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .sm\:focus\:static:focus{
    position     : static !important;
  }

  .sm\:focus\:fixed:focus{
    position     : fixed !important;
  }

  .sm\:focus\:absolute:focus{
    position     : absolute !important;
  }

  .sm\:focus\:relative:focus{
    position     : relative !important;
  }

  .sm\:focus\:sticky:focus{
    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-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .sm\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .sm\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !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-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-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .sm\:inset-x-20{
    right     : 5rem !important;
    left     : 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-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .sm\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .sm\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !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\: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-20{
    top     : 5rem !important;
  }

  .sm\:right-20{
    right     : 5rem !important;
  }

  .sm\:bottom-20{
    bottom     : 5rem !important;
  }

  .sm\:left-20{
    left     : 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-28{
    top     : 7rem !important;
  }

  .sm\:right-28{
    right     : 7rem !important;
  }

  .sm\:bottom-28{
    bottom     : 7rem !important;
  }

  .sm\:left-28{
    left     : 7rem !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-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-96{
    top     : 24rem !important;
  }

  .sm\:right-96{
    right     : 24rem !important;
  }

  .sm\:bottom-96{
    bottom     : 24rem !important;
  }

  .sm\:left-96{
    left     : 24rem !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;
  }

  .group:hover .sm\:group-hover\:inset-0{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .sm\:group-hover\:inset-1{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-2{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-3{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-4{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:inset-5{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-6{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-7{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-8{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:inset-9{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-10{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-11{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-12{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:inset-13{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-14{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-15{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-16{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:inset-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:inset-32{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:inset-36{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:inset-40{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:inset-44{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:inset-48{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:inset-52{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:inset-56{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:inset-60{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:inset-64{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:inset-72{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:inset-80{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:inset-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:inset-auto{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .group:hover .sm\:group-hover\:inset-px{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .sm\:group-hover\:inset-0\.5{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:inset-1\.5{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:inset-2\.5{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:inset-3\.5{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/2{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/3{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-2\/3{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/4{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-2\/4{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-3\/4{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/5{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .sm\:group-hover\:inset-2\/5{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .sm\:group-hover\:inset-3\/5{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .sm\:group-hover\:inset-4\/5{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/6{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-2\/6{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-3\/6{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-4\/6{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-5\/6{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-1\/12{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-2\/12{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-3\/12{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-4\/12{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-5\/12{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-6\/12{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-7\/12{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-8\/12{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-9\/12{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-10\/12{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-11\/12{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-full{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-0{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:inset-x-0{
    right     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-4{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-4{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-5{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-5{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-6{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-6{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-7{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-7{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-8{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-8{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-9{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-9{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-10{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-10{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-11{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-11{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-12{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-12{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-13{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-13{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-14{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-14{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-15{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-15{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-16{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-16{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-20{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-24{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-24{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-32{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-32{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-36{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-36{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-40{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-40{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-44{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-44{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-48{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-48{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-52{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-52{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-56{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-56{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-60{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-60{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-64{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-64{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-72{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-72{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-80{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-80{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-auto{
    top     : auto !important;
    bottom     : auto !important;
  }

  .group:hover .sm\:group-hover\:inset-x-auto{
    right     : auto !important;
    left     : auto !important;
  }

  .group:hover .sm\:group-hover\:inset-y-px{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:inset-x-px{
    right     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .sm\:group-hover\:inset-y-0\.5{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-0\.5{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\.5{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\.5{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\.5{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\.5{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3\.5{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3\.5{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/2{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/2{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/3{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/3{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\/3{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\/3{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/4{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/4{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\/4{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\/4{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3\/4{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3\/4{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/5{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/5{
    right     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\/5{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\/5{
    right     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3\/5{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3\/5{
    right     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-4\/5{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-4\/5{
    right     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/6{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/6{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\/6{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\/6{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3\/6{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3\/6{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-4\/6{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-4\/6{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-5\/6{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-5\/6{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-1\/12{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-1\/12{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-2\/12{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-2\/12{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-3\/12{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-3\/12{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-4\/12{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-4\/12{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-5\/12{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-5\/12{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-6\/12{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-6\/12{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-7\/12{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-7\/12{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-8\/12{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-8\/12{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-9\/12{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-9\/12{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-10\/12{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-10\/12{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-11\/12{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-11\/12{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:inset-y-full{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:inset-x-full{
    right     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .sm\:group-hover\:top-0{
    top     : 0 !important;
  }

  .group:hover .sm\:group-hover\:right-0{
    right     : 0 !important;
  }

  .group:hover .sm\:group-hover\:bottom-0{
    bottom     : 0 !important;
  }

  .group:hover .sm\:group-hover\:left-0{
    left     : 0 !important;
  }

  .group:hover .sm\:group-hover\:top-1{
    top     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:right-1{
    right     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-1{
    bottom     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:left-1{
    left     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:top-2{
    top     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:right-2{
    right     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-2{
    bottom     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:left-2{
    left     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:top-3{
    top     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:right-3{
    right     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-3{
    bottom     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:left-3{
    left     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:top-4{
    top     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:right-4{
    right     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-4{
    bottom     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:left-4{
    left     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:top-5{
    top     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:right-5{
    right     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-5{
    bottom     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:left-5{
    left     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:top-6{
    top     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:right-6{
    right     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-6{
    bottom     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:left-6{
    left     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:top-7{
    top     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:right-7{
    right     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-7{
    bottom     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:left-7{
    left     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:top-8{
    top     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:right-8{
    right     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-8{
    bottom     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:left-8{
    left     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:top-9{
    top     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:right-9{
    right     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-9{
    bottom     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:left-9{
    left     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:top-10{
    top     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:right-10{
    right     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-10{
    bottom     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:left-10{
    left     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:top-11{
    top     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:right-11{
    right     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-11{
    bottom     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:left-11{
    left     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:top-12{
    top     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:right-12{
    right     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-12{
    bottom     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:left-12{
    left     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:top-13{
    top     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:right-13{
    right     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-13{
    bottom     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:left-13{
    left     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:top-14{
    top     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:right-14{
    right     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-14{
    bottom     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:left-14{
    left     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:top-15{
    top     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:right-15{
    right     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-15{
    bottom     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:left-15{
    left     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:top-16{
    top     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:right-16{
    right     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-16{
    bottom     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:left-16{
    left     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:top-20{
    top     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:right-20{
    right     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-20{
    bottom     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:left-20{
    left     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:top-24{
    top     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:right-24{
    right     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-24{
    bottom     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:left-24{
    left     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:top-28{
    top     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:right-28{
    right     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-28{
    bottom     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:left-28{
    left     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:top-32{
    top     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:right-32{
    right     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-32{
    bottom     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:left-32{
    left     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:top-36{
    top     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:right-36{
    right     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-36{
    bottom     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:left-36{
    left     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:top-40{
    top     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:right-40{
    right     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-40{
    bottom     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:left-40{
    left     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:top-44{
    top     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:right-44{
    right     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-44{
    bottom     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:left-44{
    left     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:top-48{
    top     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:right-48{
    right     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-48{
    bottom     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:left-48{
    left     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:top-52{
    top     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:right-52{
    right     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-52{
    bottom     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:left-52{
    left     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:top-56{
    top     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:right-56{
    right     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-56{
    bottom     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:left-56{
    left     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:top-60{
    top     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:right-60{
    right     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-60{
    bottom     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:left-60{
    left     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:top-64{
    top     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:right-64{
    right     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-64{
    bottom     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:left-64{
    left     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:top-72{
    top     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:right-72{
    right     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-72{
    bottom     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:left-72{
    left     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:top-80{
    top     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:right-80{
    right     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-80{
    bottom     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:left-80{
    left     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:top-96{
    top     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:right-96{
    right     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-96{
    bottom     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:left-96{
    left     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:top-auto{
    top     : auto !important;
  }

  .group:hover .sm\:group-hover\:right-auto{
    right     : auto !important;
  }

  .group:hover .sm\:group-hover\:bottom-auto{
    bottom     : auto !important;
  }

  .group:hover .sm\:group-hover\:left-auto{
    left     : auto !important;
  }

  .group:hover .sm\:group-hover\:top-px{
    top     : 1px !important;
  }

  .group:hover .sm\:group-hover\:right-px{
    right     : 1px !important;
  }

  .group:hover .sm\:group-hover\:bottom-px{
    bottom     : 1px !important;
  }

  .group:hover .sm\:group-hover\:left-px{
    left     : 1px !important;
  }

  .group:hover .sm\:group-hover\:top-0\.5{
    top     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:right-0\.5{
    right     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-0\.5{
    bottom     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:left-0\.5{
    left     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:top-1\.5{
    top     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:right-1\.5{
    right     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\.5{
    bottom     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:left-1\.5{
    left     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:top-2\.5{
    top     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:right-2\.5{
    right     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\.5{
    bottom     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:left-2\.5{
    left     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:top-3\.5{
    top     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:right-3\.5{
    right     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:bottom-3\.5{
    bottom     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:left-3\.5{
    left     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:top-1\/2{
    top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/2{
    right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/2{
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/2{
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:top-1\/3{
    top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/3{
    right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/3{
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/3{
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-2\/3{
    top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-2\/3{
    right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\/3{
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-2\/3{
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-1\/4{
    top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/4{
    right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/4{
    bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/4{
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:top-2\/4{
    top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:right-2\/4{
    right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\/4{
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:left-2\/4{
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:top-3\/4{
    top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:right-3\/4{
    right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:bottom-3\/4{
    bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:left-3\/4{
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:top-1\/5{
    top     : 20% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/5{
    right     : 20% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/5{
    bottom     : 20% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/5{
    left     : 20% !important;
  }

  .group:hover .sm\:group-hover\:top-2\/5{
    top     : 40% !important;
  }

  .group:hover .sm\:group-hover\:right-2\/5{
    right     : 40% !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\/5{
    bottom     : 40% !important;
  }

  .group:hover .sm\:group-hover\:left-2\/5{
    left     : 40% !important;
  }

  .group:hover .sm\:group-hover\:top-3\/5{
    top     : 60% !important;
  }

  .group:hover .sm\:group-hover\:right-3\/5{
    right     : 60% !important;
  }

  .group:hover .sm\:group-hover\:bottom-3\/5{
    bottom     : 60% !important;
  }

  .group:hover .sm\:group-hover\:left-3\/5{
    left     : 60% !important;
  }

  .group:hover .sm\:group-hover\:top-4\/5{
    top     : 80% !important;
  }

  .group:hover .sm\:group-hover\:right-4\/5{
    right     : 80% !important;
  }

  .group:hover .sm\:group-hover\:bottom-4\/5{
    bottom     : 80% !important;
  }

  .group:hover .sm\:group-hover\:left-4\/5{
    left     : 80% !important;
  }

  .group:hover .sm\:group-hover\:top-1\/6{
    top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/6{
    right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/6{
    bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/6{
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-2\/6{
    top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-2\/6{
    right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\/6{
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-2\/6{
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-3\/6{
    top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:right-3\/6{
    right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:bottom-3\/6{
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:left-3\/6{
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:top-4\/6{
    top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-4\/6{
    right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-4\/6{
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-4\/6{
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-5\/6{
    top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-5\/6{
    right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-5\/6{
    bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-5\/6{
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-1\/12{
    top     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-1\/12{
    right     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-1\/12{
    bottom     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-1\/12{
    left     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-2\/12{
    top     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-2\/12{
    right     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-2\/12{
    bottom     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-2\/12{
    left     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-3\/12{
    top     : 25% !important;
  }

  .group:hover .sm\:group-hover\:right-3\/12{
    right     : 25% !important;
  }

  .group:hover .sm\:group-hover\:bottom-3\/12{
    bottom     : 25% !important;
  }

  .group:hover .sm\:group-hover\:left-3\/12{
    left     : 25% !important;
  }

  .group:hover .sm\:group-hover\:top-4\/12{
    top     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-4\/12{
    right     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-4\/12{
    bottom     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-4\/12{
    left     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-5\/12{
    top     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-5\/12{
    right     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-5\/12{
    bottom     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-5\/12{
    left     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-6\/12{
    top     : 50% !important;
  }

  .group:hover .sm\:group-hover\:right-6\/12{
    right     : 50% !important;
  }

  .group:hover .sm\:group-hover\:bottom-6\/12{
    bottom     : 50% !important;
  }

  .group:hover .sm\:group-hover\:left-6\/12{
    left     : 50% !important;
  }

  .group:hover .sm\:group-hover\:top-7\/12{
    top     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-7\/12{
    right     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-7\/12{
    bottom     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-7\/12{
    left     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-8\/12{
    top     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-8\/12{
    right     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-8\/12{
    bottom     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-8\/12{
    left     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-9\/12{
    top     : 75% !important;
  }

  .group:hover .sm\:group-hover\:right-9\/12{
    right     : 75% !important;
  }

  .group:hover .sm\:group-hover\:bottom-9\/12{
    bottom     : 75% !important;
  }

  .group:hover .sm\:group-hover\:left-9\/12{
    left     : 75% !important;
  }

  .group:hover .sm\:group-hover\:top-10\/12{
    top     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:right-10\/12{
    right     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:bottom-10\/12{
    bottom     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:left-10\/12{
    left     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:top-11\/12{
    top     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:right-11\/12{
    right     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:bottom-11\/12{
    bottom     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:left-11\/12{
    left     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:top-full{
    top     : 100% !important;
  }

  .group:hover .sm\:group-hover\:right-full{
    right     : 100% !important;
  }

  .group:hover .sm\:group-hover\:bottom-full{
    bottom     : 100% !important;
  }

  .group:hover .sm\:group-hover\:left-full{
    left     : 100% !important;
  }

  .sm\:hover\:inset-0:hover{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .sm\:hover\:inset-1:hover{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .sm\:hover\:inset-2:hover{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .sm\:hover\:inset-3:hover{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .sm\:hover\:inset-4:hover{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .sm\:hover\:inset-5:hover{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .sm\:hover\:inset-6:hover{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .sm\:hover\:inset-7:hover{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .sm\:hover\:inset-8:hover{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .sm\:hover\:inset-9:hover{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .sm\:hover\:inset-10:hover{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .sm\:hover\:inset-11:hover{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .sm\:hover\:inset-12:hover{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .sm\:hover\:inset-13:hover{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .sm\:hover\:inset-14:hover{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .sm\:hover\:inset-15:hover{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .sm\:hover\:inset-16:hover{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .sm\:hover\:inset-20:hover{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .sm\:hover\:inset-24:hover{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .sm\:hover\:inset-28:hover{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .sm\:hover\:inset-32:hover{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .sm\:hover\:inset-36:hover{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .sm\:hover\:inset-40:hover{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .sm\:hover\:inset-44:hover{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .sm\:hover\:inset-48:hover{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .sm\:hover\:inset-52:hover{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .sm\:hover\:inset-56:hover{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .sm\:hover\:inset-60:hover{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .sm\:hover\:inset-64:hover{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .sm\:hover\:inset-72:hover{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .sm\:hover\:inset-80:hover{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .sm\:hover\:inset-96:hover{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .sm\:hover\:inset-auto:hover{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .sm\:hover\:inset-px:hover{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .sm\:hover\:inset-0\.5:hover{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .sm\:hover\:inset-1\.5:hover{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .sm\:hover\:inset-2\.5:hover{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .sm\:hover\:inset-3\.5:hover{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .sm\:hover\:inset-1\/2:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-1\/3:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-2\/3:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-1\/4:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .sm\:hover\:inset-2\/4:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-3\/4:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .sm\:hover\:inset-1\/5:hover{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .sm\:hover\:inset-2\/5:hover{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .sm\:hover\:inset-3\/5:hover{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .sm\:hover\:inset-4\/5:hover{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .sm\:hover\:inset-1\/6:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:hover\:inset-2\/6:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-3\/6:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-4\/6:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-5\/6:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:hover\:inset-1\/12:hover{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .sm\:hover\:inset-2\/12:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:hover\:inset-3\/12:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .sm\:hover\:inset-4\/12:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-5\/12:hover{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .sm\:hover\:inset-6\/12:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-7\/12:hover{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .sm\:hover\:inset-8\/12:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-9\/12:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .sm\:hover\:inset-10\/12:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:hover\:inset-11\/12:hover{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .sm\:hover\:inset-full:hover{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .sm\:hover\:inset-y-0:hover{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .sm\:hover\:inset-x-0:hover{
    right     : 0 !important;
    left     : 0 !important;
  }

  .sm\:hover\:inset-y-1:hover{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .sm\:hover\:inset-x-1:hover{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .sm\:hover\:inset-y-2:hover{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .sm\:hover\:inset-x-2:hover{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .sm\:hover\:inset-y-3:hover{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .sm\:hover\:inset-x-3:hover{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .sm\:hover\:inset-y-4:hover{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .sm\:hover\:inset-x-4:hover{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .sm\:hover\:inset-y-5:hover{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .sm\:hover\:inset-x-5:hover{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .sm\:hover\:inset-y-6:hover{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .sm\:hover\:inset-x-6:hover{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .sm\:hover\:inset-y-7:hover{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .sm\:hover\:inset-x-7:hover{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .sm\:hover\:inset-y-8:hover{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .sm\:hover\:inset-x-8:hover{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .sm\:hover\:inset-y-9:hover{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .sm\:hover\:inset-x-9:hover{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .sm\:hover\:inset-y-10:hover{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .sm\:hover\:inset-x-10:hover{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .sm\:hover\:inset-y-11:hover{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .sm\:hover\:inset-x-11:hover{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .sm\:hover\:inset-y-12:hover{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .sm\:hover\:inset-x-12:hover{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .sm\:hover\:inset-y-13:hover{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .sm\:hover\:inset-x-13:hover{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .sm\:hover\:inset-y-14:hover{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .sm\:hover\:inset-x-14:hover{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .sm\:hover\:inset-y-15:hover{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .sm\:hover\:inset-x-15:hover{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .sm\:hover\:inset-y-16:hover{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .sm\:hover\:inset-x-16:hover{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .sm\:hover\:inset-y-20:hover{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .sm\:hover\:inset-x-20:hover{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .sm\:hover\:inset-y-24:hover{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .sm\:hover\:inset-x-24:hover{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .sm\:hover\:inset-y-28:hover{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .sm\:hover\:inset-x-28:hover{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .sm\:hover\:inset-y-32:hover{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .sm\:hover\:inset-x-32:hover{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .sm\:hover\:inset-y-36:hover{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .sm\:hover\:inset-x-36:hover{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .sm\:hover\:inset-y-40:hover{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .sm\:hover\:inset-x-40:hover{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .sm\:hover\:inset-y-44:hover{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .sm\:hover\:inset-x-44:hover{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .sm\:hover\:inset-y-48:hover{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .sm\:hover\:inset-x-48:hover{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .sm\:hover\:inset-y-52:hover{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .sm\:hover\:inset-x-52:hover{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .sm\:hover\:inset-y-56:hover{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .sm\:hover\:inset-x-56:hover{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .sm\:hover\:inset-y-60:hover{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .sm\:hover\:inset-x-60:hover{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .sm\:hover\:inset-y-64:hover{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .sm\:hover\:inset-x-64:hover{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .sm\:hover\:inset-y-72:hover{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .sm\:hover\:inset-x-72:hover{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .sm\:hover\:inset-y-80:hover{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .sm\:hover\:inset-x-80:hover{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .sm\:hover\:inset-y-96:hover{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .sm\:hover\:inset-x-96:hover{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .sm\:hover\:inset-y-auto:hover{
    top     : auto !important;
    bottom     : auto !important;
  }

  .sm\:hover\:inset-x-auto:hover{
    right     : auto !important;
    left     : auto !important;
  }

  .sm\:hover\:inset-y-px:hover{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .sm\:hover\:inset-x-px:hover{
    right     : 1px !important;
    left     : 1px !important;
  }

  .sm\:hover\:inset-y-0\.5:hover{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .sm\:hover\:inset-x-0\.5:hover{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .sm\:hover\:inset-y-1\.5:hover{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .sm\:hover\:inset-x-1\.5:hover{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .sm\:hover\:inset-y-2\.5:hover{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .sm\:hover\:inset-x-2\.5:hover{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .sm\:hover\:inset-y-3\.5:hover{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .sm\:hover\:inset-x-3\.5:hover{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .sm\:hover\:inset-y-1\/2:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:hover\:inset-x-1\/2:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-y-1\/3:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:inset-x-1\/3:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-y-2\/3:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:inset-x-2\/3:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-y-1\/4:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .sm\:hover\:inset-x-1\/4:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .sm\:hover\:inset-y-2\/4:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:hover\:inset-x-2\/4:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-y-3\/4:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .sm\:hover\:inset-x-3\/4:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .sm\:hover\:inset-y-1\/5:hover{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .sm\:hover\:inset-x-1\/5:hover{
    right     : 20% !important;
    left     : 20% !important;
  }

  .sm\:hover\:inset-y-2\/5:hover{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .sm\:hover\:inset-x-2\/5:hover{
    right     : 40% !important;
    left     : 40% !important;
  }

  .sm\:hover\:inset-y-3\/5:hover{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .sm\:hover\:inset-x-3\/5:hover{
    right     : 60% !important;
    left     : 60% !important;
  }

  .sm\:hover\:inset-y-4\/5:hover{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .sm\:hover\:inset-x-4\/5:hover{
    right     : 80% !important;
    left     : 80% !important;
  }

  .sm\:hover\:inset-y-1\/6:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .sm\:hover\:inset-x-1\/6:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:hover\:inset-y-2\/6:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:inset-x-2\/6:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-y-3\/6:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:hover\:inset-x-3\/6:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-y-4\/6:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:inset-x-4\/6:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-y-5\/6:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .sm\:hover\:inset-x-5\/6:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:hover\:inset-y-1\/12:hover{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .sm\:hover\:inset-x-1\/12:hover{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .sm\:hover\:inset-y-2\/12:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .sm\:hover\:inset-x-2\/12:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:hover\:inset-y-3\/12:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .sm\:hover\:inset-x-3\/12:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .sm\:hover\:inset-y-4\/12:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:inset-x-4\/12:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:hover\:inset-y-5\/12:hover{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .sm\:hover\:inset-x-5\/12:hover{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .sm\:hover\:inset-y-6\/12:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:hover\:inset-x-6\/12:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:hover\:inset-y-7\/12:hover{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .sm\:hover\:inset-x-7\/12:hover{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .sm\:hover\:inset-y-8\/12:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:inset-x-8\/12:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:hover\:inset-y-9\/12:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .sm\:hover\:inset-x-9\/12:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .sm\:hover\:inset-y-10\/12:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .sm\:hover\:inset-x-10\/12:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:hover\:inset-y-11\/12:hover{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .sm\:hover\:inset-x-11\/12:hover{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .sm\:hover\:inset-y-full:hover{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .sm\:hover\:inset-x-full:hover{
    right     : 100% !important;
    left     : 100% !important;
  }

  .sm\:hover\:top-0:hover{
    top     : 0 !important;
  }

  .sm\:hover\:right-0:hover{
    right     : 0 !important;
  }

  .sm\:hover\:bottom-0:hover{
    bottom     : 0 !important;
  }

  .sm\:hover\:left-0:hover{
    left     : 0 !important;
  }

  .sm\:hover\:top-1:hover{
    top     : 0.25rem !important;
  }

  .sm\:hover\:right-1:hover{
    right     : 0.25rem !important;
  }

  .sm\:hover\:bottom-1:hover{
    bottom     : 0.25rem !important;
  }

  .sm\:hover\:left-1:hover{
    left     : 0.25rem !important;
  }

  .sm\:hover\:top-2:hover{
    top     : 0.5rem !important;
  }

  .sm\:hover\:right-2:hover{
    right     : 0.5rem !important;
  }

  .sm\:hover\:bottom-2:hover{
    bottom     : 0.5rem !important;
  }

  .sm\:hover\:left-2:hover{
    left     : 0.5rem !important;
  }

  .sm\:hover\:top-3:hover{
    top     : 0.75rem !important;
  }

  .sm\:hover\:right-3:hover{
    right     : 0.75rem !important;
  }

  .sm\:hover\:bottom-3:hover{
    bottom     : 0.75rem !important;
  }

  .sm\:hover\:left-3:hover{
    left     : 0.75rem !important;
  }

  .sm\:hover\:top-4:hover{
    top     : 1rem !important;
  }

  .sm\:hover\:right-4:hover{
    right     : 1rem !important;
  }

  .sm\:hover\:bottom-4:hover{
    bottom     : 1rem !important;
  }

  .sm\:hover\:left-4:hover{
    left     : 1rem !important;
  }

  .sm\:hover\:top-5:hover{
    top     : 1.25rem !important;
  }

  .sm\:hover\:right-5:hover{
    right     : 1.25rem !important;
  }

  .sm\:hover\:bottom-5:hover{
    bottom     : 1.25rem !important;
  }

  .sm\:hover\:left-5:hover{
    left     : 1.25rem !important;
  }

  .sm\:hover\:top-6:hover{
    top     : 1.5rem !important;
  }

  .sm\:hover\:right-6:hover{
    right     : 1.5rem !important;
  }

  .sm\:hover\:bottom-6:hover{
    bottom     : 1.5rem !important;
  }

  .sm\:hover\:left-6:hover{
    left     : 1.5rem !important;
  }

  .sm\:hover\:top-7:hover{
    top     : 1.75rem !important;
  }

  .sm\:hover\:right-7:hover{
    right     : 1.75rem !important;
  }

  .sm\:hover\:bottom-7:hover{
    bottom     : 1.75rem !important;
  }

  .sm\:hover\:left-7:hover{
    left     : 1.75rem !important;
  }

  .sm\:hover\:top-8:hover{
    top     : 2rem !important;
  }

  .sm\:hover\:right-8:hover{
    right     : 2rem !important;
  }

  .sm\:hover\:bottom-8:hover{
    bottom     : 2rem !important;
  }

  .sm\:hover\:left-8:hover{
    left     : 2rem !important;
  }

  .sm\:hover\:top-9:hover{
    top     : 2.25rem !important;
  }

  .sm\:hover\:right-9:hover{
    right     : 2.25rem !important;
  }

  .sm\:hover\:bottom-9:hover{
    bottom     : 2.25rem !important;
  }

  .sm\:hover\:left-9:hover{
    left     : 2.25rem !important;
  }

  .sm\:hover\:top-10:hover{
    top     : 2.5rem !important;
  }

  .sm\:hover\:right-10:hover{
    right     : 2.5rem !important;
  }

  .sm\:hover\:bottom-10:hover{
    bottom     : 2.5rem !important;
  }

  .sm\:hover\:left-10:hover{
    left     : 2.5rem !important;
  }

  .sm\:hover\:top-11:hover{
    top     : 2.75rem !important;
  }

  .sm\:hover\:right-11:hover{
    right     : 2.75rem !important;
  }

  .sm\:hover\:bottom-11:hover{
    bottom     : 2.75rem !important;
  }

  .sm\:hover\:left-11:hover{
    left     : 2.75rem !important;
  }

  .sm\:hover\:top-12:hover{
    top     : 3rem !important;
  }

  .sm\:hover\:right-12:hover{
    right     : 3rem !important;
  }

  .sm\:hover\:bottom-12:hover{
    bottom     : 3rem !important;
  }

  .sm\:hover\:left-12:hover{
    left     : 3rem !important;
  }

  .sm\:hover\:top-13:hover{
    top     : 3.25rem !important;
  }

  .sm\:hover\:right-13:hover{
    right     : 3.25rem !important;
  }

  .sm\:hover\:bottom-13:hover{
    bottom     : 3.25rem !important;
  }

  .sm\:hover\:left-13:hover{
    left     : 3.25rem !important;
  }

  .sm\:hover\:top-14:hover{
    top     : 3.5rem !important;
  }

  .sm\:hover\:right-14:hover{
    right     : 3.5rem !important;
  }

  .sm\:hover\:bottom-14:hover{
    bottom     : 3.5rem !important;
  }

  .sm\:hover\:left-14:hover{
    left     : 3.5rem !important;
  }

  .sm\:hover\:top-15:hover{
    top     : 3.75rem !important;
  }

  .sm\:hover\:right-15:hover{
    right     : 3.75rem !important;
  }

  .sm\:hover\:bottom-15:hover{
    bottom     : 3.75rem !important;
  }

  .sm\:hover\:left-15:hover{
    left     : 3.75rem !important;
  }

  .sm\:hover\:top-16:hover{
    top     : 4rem !important;
  }

  .sm\:hover\:right-16:hover{
    right     : 4rem !important;
  }

  .sm\:hover\:bottom-16:hover{
    bottom     : 4rem !important;
  }

  .sm\:hover\:left-16:hover{
    left     : 4rem !important;
  }

  .sm\:hover\:top-20:hover{
    top     : 5rem !important;
  }

  .sm\:hover\:right-20:hover{
    right     : 5rem !important;
  }

  .sm\:hover\:bottom-20:hover{
    bottom     : 5rem !important;
  }

  .sm\:hover\:left-20:hover{
    left     : 5rem !important;
  }

  .sm\:hover\:top-24:hover{
    top     : 6rem !important;
  }

  .sm\:hover\:right-24:hover{
    right     : 6rem !important;
  }

  .sm\:hover\:bottom-24:hover{
    bottom     : 6rem !important;
  }

  .sm\:hover\:left-24:hover{
    left     : 6rem !important;
  }

  .sm\:hover\:top-28:hover{
    top     : 7rem !important;
  }

  .sm\:hover\:right-28:hover{
    right     : 7rem !important;
  }

  .sm\:hover\:bottom-28:hover{
    bottom     : 7rem !important;
  }

  .sm\:hover\:left-28:hover{
    left     : 7rem !important;
  }

  .sm\:hover\:top-32:hover{
    top     : 8rem !important;
  }

  .sm\:hover\:right-32:hover{
    right     : 8rem !important;
  }

  .sm\:hover\:bottom-32:hover{
    bottom     : 8rem !important;
  }

  .sm\:hover\:left-32:hover{
    left     : 8rem !important;
  }

  .sm\:hover\:top-36:hover{
    top     : 9rem !important;
  }

  .sm\:hover\:right-36:hover{
    right     : 9rem !important;
  }

  .sm\:hover\:bottom-36:hover{
    bottom     : 9rem !important;
  }

  .sm\:hover\:left-36:hover{
    left     : 9rem !important;
  }

  .sm\:hover\:top-40:hover{
    top     : 10rem !important;
  }

  .sm\:hover\:right-40:hover{
    right     : 10rem !important;
  }

  .sm\:hover\:bottom-40:hover{
    bottom     : 10rem !important;
  }

  .sm\:hover\:left-40:hover{
    left     : 10rem !important;
  }

  .sm\:hover\:top-44:hover{
    top     : 11rem !important;
  }

  .sm\:hover\:right-44:hover{
    right     : 11rem !important;
  }

  .sm\:hover\:bottom-44:hover{
    bottom     : 11rem !important;
  }

  .sm\:hover\:left-44:hover{
    left     : 11rem !important;
  }

  .sm\:hover\:top-48:hover{
    top     : 12rem !important;
  }

  .sm\:hover\:right-48:hover{
    right     : 12rem !important;
  }

  .sm\:hover\:bottom-48:hover{
    bottom     : 12rem !important;
  }

  .sm\:hover\:left-48:hover{
    left     : 12rem !important;
  }

  .sm\:hover\:top-52:hover{
    top     : 13rem !important;
  }

  .sm\:hover\:right-52:hover{
    right     : 13rem !important;
  }

  .sm\:hover\:bottom-52:hover{
    bottom     : 13rem !important;
  }

  .sm\:hover\:left-52:hover{
    left     : 13rem !important;
  }

  .sm\:hover\:top-56:hover{
    top     : 14rem !important;
  }

  .sm\:hover\:right-56:hover{
    right     : 14rem !important;
  }

  .sm\:hover\:bottom-56:hover{
    bottom     : 14rem !important;
  }

  .sm\:hover\:left-56:hover{
    left     : 14rem !important;
  }

  .sm\:hover\:top-60:hover{
    top     : 15rem !important;
  }

  .sm\:hover\:right-60:hover{
    right     : 15rem !important;
  }

  .sm\:hover\:bottom-60:hover{
    bottom     : 15rem !important;
  }

  .sm\:hover\:left-60:hover{
    left     : 15rem !important;
  }

  .sm\:hover\:top-64:hover{
    top     : 16rem !important;
  }

  .sm\:hover\:right-64:hover{
    right     : 16rem !important;
  }

  .sm\:hover\:bottom-64:hover{
    bottom     : 16rem !important;
  }

  .sm\:hover\:left-64:hover{
    left     : 16rem !important;
  }

  .sm\:hover\:top-72:hover{
    top     : 18rem !important;
  }

  .sm\:hover\:right-72:hover{
    right     : 18rem !important;
  }

  .sm\:hover\:bottom-72:hover{
    bottom     : 18rem !important;
  }

  .sm\:hover\:left-72:hover{
    left     : 18rem !important;
  }

  .sm\:hover\:top-80:hover{
    top     : 20rem !important;
  }

  .sm\:hover\:right-80:hover{
    right     : 20rem !important;
  }

  .sm\:hover\:bottom-80:hover{
    bottom     : 20rem !important;
  }

  .sm\:hover\:left-80:hover{
    left     : 20rem !important;
  }

  .sm\:hover\:top-96:hover{
    top     : 24rem !important;
  }

  .sm\:hover\:right-96:hover{
    right     : 24rem !important;
  }

  .sm\:hover\:bottom-96:hover{
    bottom     : 24rem !important;
  }

  .sm\:hover\:left-96:hover{
    left     : 24rem !important;
  }

  .sm\:hover\:top-auto:hover{
    top     : auto !important;
  }

  .sm\:hover\:right-auto:hover{
    right     : auto !important;
  }

  .sm\:hover\:bottom-auto:hover{
    bottom     : auto !important;
  }

  .sm\:hover\:left-auto:hover{
    left     : auto !important;
  }

  .sm\:hover\:top-px:hover{
    top     : 1px !important;
  }

  .sm\:hover\:right-px:hover{
    right     : 1px !important;
  }

  .sm\:hover\:bottom-px:hover{
    bottom     : 1px !important;
  }

  .sm\:hover\:left-px:hover{
    left     : 1px !important;
  }

  .sm\:hover\:top-0\.5:hover{
    top     : 0.125rem !important;
  }

  .sm\:hover\:right-0\.5:hover{
    right     : 0.125rem !important;
  }

  .sm\:hover\:bottom-0\.5:hover{
    bottom     : 0.125rem !important;
  }

  .sm\:hover\:left-0\.5:hover{
    left     : 0.125rem !important;
  }

  .sm\:hover\:top-1\.5:hover{
    top     : 0.375rem !important;
  }

  .sm\:hover\:right-1\.5:hover{
    right     : 0.375rem !important;
  }

  .sm\:hover\:bottom-1\.5:hover{
    bottom     : 0.375rem !important;
  }

  .sm\:hover\:left-1\.5:hover{
    left     : 0.375rem !important;
  }

  .sm\:hover\:top-2\.5:hover{
    top     : 0.625rem !important;
  }

  .sm\:hover\:right-2\.5:hover{
    right     : 0.625rem !important;
  }

  .sm\:hover\:bottom-2\.5:hover{
    bottom     : 0.625rem !important;
  }

  .sm\:hover\:left-2\.5:hover{
    left     : 0.625rem !important;
  }

  .sm\:hover\:top-3\.5:hover{
    top     : 0.875rem !important;
  }

  .sm\:hover\:right-3\.5:hover{
    right     : 0.875rem !important;
  }

  .sm\:hover\:bottom-3\.5:hover{
    bottom     : 0.875rem !important;
  }

  .sm\:hover\:left-3\.5:hover{
    left     : 0.875rem !important;
  }

  .sm\:hover\:top-1\/2:hover{
    top     : 50% !important;
  }

  .sm\:hover\:right-1\/2:hover{
    right     : 50% !important;
  }

  .sm\:hover\:bottom-1\/2:hover{
    bottom     : 50% !important;
  }

  .sm\:hover\:left-1\/2:hover{
    left     : 50% !important;
  }

  .sm\:hover\:top-1\/3:hover{
    top     : 33.333333% !important;
  }

  .sm\:hover\:right-1\/3:hover{
    right     : 33.333333% !important;
  }

  .sm\:hover\:bottom-1\/3:hover{
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:left-1\/3:hover{
    left     : 33.333333% !important;
  }

  .sm\:hover\:top-2\/3:hover{
    top     : 66.666667% !important;
  }

  .sm\:hover\:right-2\/3:hover{
    right     : 66.666667% !important;
  }

  .sm\:hover\:bottom-2\/3:hover{
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:left-2\/3:hover{
    left     : 66.666667% !important;
  }

  .sm\:hover\:top-1\/4:hover{
    top     : 25% !important;
  }

  .sm\:hover\:right-1\/4:hover{
    right     : 25% !important;
  }

  .sm\:hover\:bottom-1\/4:hover{
    bottom     : 25% !important;
  }

  .sm\:hover\:left-1\/4:hover{
    left     : 25% !important;
  }

  .sm\:hover\:top-2\/4:hover{
    top     : 50% !important;
  }

  .sm\:hover\:right-2\/4:hover{
    right     : 50% !important;
  }

  .sm\:hover\:bottom-2\/4:hover{
    bottom     : 50% !important;
  }

  .sm\:hover\:left-2\/4:hover{
    left     : 50% !important;
  }

  .sm\:hover\:top-3\/4:hover{
    top     : 75% !important;
  }

  .sm\:hover\:right-3\/4:hover{
    right     : 75% !important;
  }

  .sm\:hover\:bottom-3\/4:hover{
    bottom     : 75% !important;
  }

  .sm\:hover\:left-3\/4:hover{
    left     : 75% !important;
  }

  .sm\:hover\:top-1\/5:hover{
    top     : 20% !important;
  }

  .sm\:hover\:right-1\/5:hover{
    right     : 20% !important;
  }

  .sm\:hover\:bottom-1\/5:hover{
    bottom     : 20% !important;
  }

  .sm\:hover\:left-1\/5:hover{
    left     : 20% !important;
  }

  .sm\:hover\:top-2\/5:hover{
    top     : 40% !important;
  }

  .sm\:hover\:right-2\/5:hover{
    right     : 40% !important;
  }

  .sm\:hover\:bottom-2\/5:hover{
    bottom     : 40% !important;
  }

  .sm\:hover\:left-2\/5:hover{
    left     : 40% !important;
  }

  .sm\:hover\:top-3\/5:hover{
    top     : 60% !important;
  }

  .sm\:hover\:right-3\/5:hover{
    right     : 60% !important;
  }

  .sm\:hover\:bottom-3\/5:hover{
    bottom     : 60% !important;
  }

  .sm\:hover\:left-3\/5:hover{
    left     : 60% !important;
  }

  .sm\:hover\:top-4\/5:hover{
    top     : 80% !important;
  }

  .sm\:hover\:right-4\/5:hover{
    right     : 80% !important;
  }

  .sm\:hover\:bottom-4\/5:hover{
    bottom     : 80% !important;
  }

  .sm\:hover\:left-4\/5:hover{
    left     : 80% !important;
  }

  .sm\:hover\:top-1\/6:hover{
    top     : 16.666667% !important;
  }

  .sm\:hover\:right-1\/6:hover{
    right     : 16.666667% !important;
  }

  .sm\:hover\:bottom-1\/6:hover{
    bottom     : 16.666667% !important;
  }

  .sm\:hover\:left-1\/6:hover{
    left     : 16.666667% !important;
  }

  .sm\:hover\:top-2\/6:hover{
    top     : 33.333333% !important;
  }

  .sm\:hover\:right-2\/6:hover{
    right     : 33.333333% !important;
  }

  .sm\:hover\:bottom-2\/6:hover{
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:left-2\/6:hover{
    left     : 33.333333% !important;
  }

  .sm\:hover\:top-3\/6:hover{
    top     : 50% !important;
  }

  .sm\:hover\:right-3\/6:hover{
    right     : 50% !important;
  }

  .sm\:hover\:bottom-3\/6:hover{
    bottom     : 50% !important;
  }

  .sm\:hover\:left-3\/6:hover{
    left     : 50% !important;
  }

  .sm\:hover\:top-4\/6:hover{
    top     : 66.666667% !important;
  }

  .sm\:hover\:right-4\/6:hover{
    right     : 66.666667% !important;
  }

  .sm\:hover\:bottom-4\/6:hover{
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:left-4\/6:hover{
    left     : 66.666667% !important;
  }

  .sm\:hover\:top-5\/6:hover{
    top     : 83.333333% !important;
  }

  .sm\:hover\:right-5\/6:hover{
    right     : 83.333333% !important;
  }

  .sm\:hover\:bottom-5\/6:hover{
    bottom     : 83.333333% !important;
  }

  .sm\:hover\:left-5\/6:hover{
    left     : 83.333333% !important;
  }

  .sm\:hover\:top-1\/12:hover{
    top     : 8.333333% !important;
  }

  .sm\:hover\:right-1\/12:hover{
    right     : 8.333333% !important;
  }

  .sm\:hover\:bottom-1\/12:hover{
    bottom     : 8.333333% !important;
  }

  .sm\:hover\:left-1\/12:hover{
    left     : 8.333333% !important;
  }

  .sm\:hover\:top-2\/12:hover{
    top     : 16.666667% !important;
  }

  .sm\:hover\:right-2\/12:hover{
    right     : 16.666667% !important;
  }

  .sm\:hover\:bottom-2\/12:hover{
    bottom     : 16.666667% !important;
  }

  .sm\:hover\:left-2\/12:hover{
    left     : 16.666667% !important;
  }

  .sm\:hover\:top-3\/12:hover{
    top     : 25% !important;
  }

  .sm\:hover\:right-3\/12:hover{
    right     : 25% !important;
  }

  .sm\:hover\:bottom-3\/12:hover{
    bottom     : 25% !important;
  }

  .sm\:hover\:left-3\/12:hover{
    left     : 25% !important;
  }

  .sm\:hover\:top-4\/12:hover{
    top     : 33.333333% !important;
  }

  .sm\:hover\:right-4\/12:hover{
    right     : 33.333333% !important;
  }

  .sm\:hover\:bottom-4\/12:hover{
    bottom     : 33.333333% !important;
  }

  .sm\:hover\:left-4\/12:hover{
    left     : 33.333333% !important;
  }

  .sm\:hover\:top-5\/12:hover{
    top     : 41.666667% !important;
  }

  .sm\:hover\:right-5\/12:hover{
    right     : 41.666667% !important;
  }

  .sm\:hover\:bottom-5\/12:hover{
    bottom     : 41.666667% !important;
  }

  .sm\:hover\:left-5\/12:hover{
    left     : 41.666667% !important;
  }

  .sm\:hover\:top-6\/12:hover{
    top     : 50% !important;
  }

  .sm\:hover\:right-6\/12:hover{
    right     : 50% !important;
  }

  .sm\:hover\:bottom-6\/12:hover{
    bottom     : 50% !important;
  }

  .sm\:hover\:left-6\/12:hover{
    left     : 50% !important;
  }

  .sm\:hover\:top-7\/12:hover{
    top     : 58.333333% !important;
  }

  .sm\:hover\:right-7\/12:hover{
    right     : 58.333333% !important;
  }

  .sm\:hover\:bottom-7\/12:hover{
    bottom     : 58.333333% !important;
  }

  .sm\:hover\:left-7\/12:hover{
    left     : 58.333333% !important;
  }

  .sm\:hover\:top-8\/12:hover{
    top     : 66.666667% !important;
  }

  .sm\:hover\:right-8\/12:hover{
    right     : 66.666667% !important;
  }

  .sm\:hover\:bottom-8\/12:hover{
    bottom     : 66.666667% !important;
  }

  .sm\:hover\:left-8\/12:hover{
    left     : 66.666667% !important;
  }

  .sm\:hover\:top-9\/12:hover{
    top     : 75% !important;
  }

  .sm\:hover\:right-9\/12:hover{
    right     : 75% !important;
  }

  .sm\:hover\:bottom-9\/12:hover{
    bottom     : 75% !important;
  }

  .sm\:hover\:left-9\/12:hover{
    left     : 75% !important;
  }

  .sm\:hover\:top-10\/12:hover{
    top     : 83.333333% !important;
  }

  .sm\:hover\:right-10\/12:hover{
    right     : 83.333333% !important;
  }

  .sm\:hover\:bottom-10\/12:hover{
    bottom     : 83.333333% !important;
  }

  .sm\:hover\:left-10\/12:hover{
    left     : 83.333333% !important;
  }

  .sm\:hover\:top-11\/12:hover{
    top     : 91.666667% !important;
  }

  .sm\:hover\:right-11\/12:hover{
    right     : 91.666667% !important;
  }

  .sm\:hover\:bottom-11\/12:hover{
    bottom     : 91.666667% !important;
  }

  .sm\:hover\:left-11\/12:hover{
    left     : 91.666667% !important;
  }

  .sm\:hover\:top-full:hover{
    top     : 100% !important;
  }

  .sm\:hover\:right-full:hover{
    right     : 100% !important;
  }

  .sm\:hover\:bottom-full:hover{
    bottom     : 100% !important;
  }

  .sm\:hover\:left-full:hover{
    left     : 100% !important;
  }

  .sm\:focus\:inset-0:focus{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .sm\:focus\:inset-1:focus{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .sm\:focus\:inset-2:focus{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .sm\:focus\:inset-3:focus{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .sm\:focus\:inset-4:focus{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .sm\:focus\:inset-5:focus{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .sm\:focus\:inset-6:focus{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .sm\:focus\:inset-7:focus{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .sm\:focus\:inset-8:focus{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .sm\:focus\:inset-9:focus{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .sm\:focus\:inset-10:focus{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .sm\:focus\:inset-11:focus{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .sm\:focus\:inset-12:focus{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .sm\:focus\:inset-13:focus{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .sm\:focus\:inset-14:focus{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .sm\:focus\:inset-15:focus{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .sm\:focus\:inset-16:focus{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .sm\:focus\:inset-20:focus{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .sm\:focus\:inset-24:focus{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .sm\:focus\:inset-28:focus{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .sm\:focus\:inset-32:focus{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .sm\:focus\:inset-36:focus{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .sm\:focus\:inset-40:focus{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .sm\:focus\:inset-44:focus{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .sm\:focus\:inset-48:focus{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .sm\:focus\:inset-52:focus{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .sm\:focus\:inset-56:focus{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .sm\:focus\:inset-60:focus{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .sm\:focus\:inset-64:focus{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .sm\:focus\:inset-72:focus{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .sm\:focus\:inset-80:focus{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .sm\:focus\:inset-96:focus{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .sm\:focus\:inset-auto:focus{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .sm\:focus\:inset-px:focus{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .sm\:focus\:inset-0\.5:focus{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .sm\:focus\:inset-1\.5:focus{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .sm\:focus\:inset-2\.5:focus{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .sm\:focus\:inset-3\.5:focus{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .sm\:focus\:inset-1\/2:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-1\/3:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-2\/3:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-1\/4:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .sm\:focus\:inset-2\/4:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-3\/4:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .sm\:focus\:inset-1\/5:focus{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .sm\:focus\:inset-2\/5:focus{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .sm\:focus\:inset-3\/5:focus{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .sm\:focus\:inset-4\/5:focus{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .sm\:focus\:inset-1\/6:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:focus\:inset-2\/6:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-3\/6:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-4\/6:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-5\/6:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:focus\:inset-1\/12:focus{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .sm\:focus\:inset-2\/12:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:focus\:inset-3\/12:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .sm\:focus\:inset-4\/12:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-5\/12:focus{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .sm\:focus\:inset-6\/12:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-7\/12:focus{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .sm\:focus\:inset-8\/12:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-9\/12:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .sm\:focus\:inset-10\/12:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:focus\:inset-11\/12:focus{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .sm\:focus\:inset-full:focus{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .sm\:focus\:inset-y-0:focus{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .sm\:focus\:inset-x-0:focus{
    right     : 0 !important;
    left     : 0 !important;
  }

  .sm\:focus\:inset-y-1:focus{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .sm\:focus\:inset-x-1:focus{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .sm\:focus\:inset-y-2:focus{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .sm\:focus\:inset-x-2:focus{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .sm\:focus\:inset-y-3:focus{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .sm\:focus\:inset-x-3:focus{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .sm\:focus\:inset-y-4:focus{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .sm\:focus\:inset-x-4:focus{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .sm\:focus\:inset-y-5:focus{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .sm\:focus\:inset-x-5:focus{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .sm\:focus\:inset-y-6:focus{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .sm\:focus\:inset-x-6:focus{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .sm\:focus\:inset-y-7:focus{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .sm\:focus\:inset-x-7:focus{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .sm\:focus\:inset-y-8:focus{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .sm\:focus\:inset-x-8:focus{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .sm\:focus\:inset-y-9:focus{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .sm\:focus\:inset-x-9:focus{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .sm\:focus\:inset-y-10:focus{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .sm\:focus\:inset-x-10:focus{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .sm\:focus\:inset-y-11:focus{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .sm\:focus\:inset-x-11:focus{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .sm\:focus\:inset-y-12:focus{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .sm\:focus\:inset-x-12:focus{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .sm\:focus\:inset-y-13:focus{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .sm\:focus\:inset-x-13:focus{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .sm\:focus\:inset-y-14:focus{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .sm\:focus\:inset-x-14:focus{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .sm\:focus\:inset-y-15:focus{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .sm\:focus\:inset-x-15:focus{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .sm\:focus\:inset-y-16:focus{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .sm\:focus\:inset-x-16:focus{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .sm\:focus\:inset-y-20:focus{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .sm\:focus\:inset-x-20:focus{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .sm\:focus\:inset-y-24:focus{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .sm\:focus\:inset-x-24:focus{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .sm\:focus\:inset-y-28:focus{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .sm\:focus\:inset-x-28:focus{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .sm\:focus\:inset-y-32:focus{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .sm\:focus\:inset-x-32:focus{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .sm\:focus\:inset-y-36:focus{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .sm\:focus\:inset-x-36:focus{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .sm\:focus\:inset-y-40:focus{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .sm\:focus\:inset-x-40:focus{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .sm\:focus\:inset-y-44:focus{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .sm\:focus\:inset-x-44:focus{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .sm\:focus\:inset-y-48:focus{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .sm\:focus\:inset-x-48:focus{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .sm\:focus\:inset-y-52:focus{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .sm\:focus\:inset-x-52:focus{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .sm\:focus\:inset-y-56:focus{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .sm\:focus\:inset-x-56:focus{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .sm\:focus\:inset-y-60:focus{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .sm\:focus\:inset-x-60:focus{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .sm\:focus\:inset-y-64:focus{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .sm\:focus\:inset-x-64:focus{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .sm\:focus\:inset-y-72:focus{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .sm\:focus\:inset-x-72:focus{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .sm\:focus\:inset-y-80:focus{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .sm\:focus\:inset-x-80:focus{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .sm\:focus\:inset-y-96:focus{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .sm\:focus\:inset-x-96:focus{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .sm\:focus\:inset-y-auto:focus{
    top     : auto !important;
    bottom     : auto !important;
  }

  .sm\:focus\:inset-x-auto:focus{
    right     : auto !important;
    left     : auto !important;
  }

  .sm\:focus\:inset-y-px:focus{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .sm\:focus\:inset-x-px:focus{
    right     : 1px !important;
    left     : 1px !important;
  }

  .sm\:focus\:inset-y-0\.5:focus{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .sm\:focus\:inset-x-0\.5:focus{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .sm\:focus\:inset-y-1\.5:focus{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .sm\:focus\:inset-x-1\.5:focus{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .sm\:focus\:inset-y-2\.5:focus{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .sm\:focus\:inset-x-2\.5:focus{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .sm\:focus\:inset-y-3\.5:focus{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .sm\:focus\:inset-x-3\.5:focus{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .sm\:focus\:inset-y-1\/2:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:focus\:inset-x-1\/2:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-y-1\/3:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:inset-x-1\/3:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-y-2\/3:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:inset-x-2\/3:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-y-1\/4:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .sm\:focus\:inset-x-1\/4:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .sm\:focus\:inset-y-2\/4:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:focus\:inset-x-2\/4:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-y-3\/4:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .sm\:focus\:inset-x-3\/4:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .sm\:focus\:inset-y-1\/5:focus{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .sm\:focus\:inset-x-1\/5:focus{
    right     : 20% !important;
    left     : 20% !important;
  }

  .sm\:focus\:inset-y-2\/5:focus{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .sm\:focus\:inset-x-2\/5:focus{
    right     : 40% !important;
    left     : 40% !important;
  }

  .sm\:focus\:inset-y-3\/5:focus{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .sm\:focus\:inset-x-3\/5:focus{
    right     : 60% !important;
    left     : 60% !important;
  }

  .sm\:focus\:inset-y-4\/5:focus{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .sm\:focus\:inset-x-4\/5:focus{
    right     : 80% !important;
    left     : 80% !important;
  }

  .sm\:focus\:inset-y-1\/6:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .sm\:focus\:inset-x-1\/6:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:focus\:inset-y-2\/6:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:inset-x-2\/6:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-y-3\/6:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:focus\:inset-x-3\/6:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-y-4\/6:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:inset-x-4\/6:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-y-5\/6:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .sm\:focus\:inset-x-5\/6:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:focus\:inset-y-1\/12:focus{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .sm\:focus\:inset-x-1\/12:focus{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .sm\:focus\:inset-y-2\/12:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .sm\:focus\:inset-x-2\/12:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .sm\:focus\:inset-y-3\/12:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .sm\:focus\:inset-x-3\/12:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .sm\:focus\:inset-y-4\/12:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:inset-x-4\/12:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .sm\:focus\:inset-y-5\/12:focus{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .sm\:focus\:inset-x-5\/12:focus{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .sm\:focus\:inset-y-6\/12:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .sm\:focus\:inset-x-6\/12:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .sm\:focus\:inset-y-7\/12:focus{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .sm\:focus\:inset-x-7\/12:focus{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .sm\:focus\:inset-y-8\/12:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:inset-x-8\/12:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .sm\:focus\:inset-y-9\/12:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .sm\:focus\:inset-x-9\/12:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .sm\:focus\:inset-y-10\/12:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .sm\:focus\:inset-x-10\/12:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .sm\:focus\:inset-y-11\/12:focus{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .sm\:focus\:inset-x-11\/12:focus{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .sm\:focus\:inset-y-full:focus{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .sm\:focus\:inset-x-full:focus{
    right     : 100% !important;
    left     : 100% !important;
  }

  .sm\:focus\:top-0:focus{
    top     : 0 !important;
  }

  .sm\:focus\:right-0:focus{
    right     : 0 !important;
  }

  .sm\:focus\:bottom-0:focus{
    bottom     : 0 !important;
  }

  .sm\:focus\:left-0:focus{
    left     : 0 !important;
  }

  .sm\:focus\:top-1:focus{
    top     : 0.25rem !important;
  }

  .sm\:focus\:right-1:focus{
    right     : 0.25rem !important;
  }

  .sm\:focus\:bottom-1:focus{
    bottom     : 0.25rem !important;
  }

  .sm\:focus\:left-1:focus{
    left     : 0.25rem !important;
  }

  .sm\:focus\:top-2:focus{
    top     : 0.5rem !important;
  }

  .sm\:focus\:right-2:focus{
    right     : 0.5rem !important;
  }

  .sm\:focus\:bottom-2:focus{
    bottom     : 0.5rem !important;
  }

  .sm\:focus\:left-2:focus{
    left     : 0.5rem !important;
  }

  .sm\:focus\:top-3:focus{
    top     : 0.75rem !important;
  }

  .sm\:focus\:right-3:focus{
    right     : 0.75rem !important;
  }

  .sm\:focus\:bottom-3:focus{
    bottom     : 0.75rem !important;
  }

  .sm\:focus\:left-3:focus{
    left     : 0.75rem !important;
  }

  .sm\:focus\:top-4:focus{
    top     : 1rem !important;
  }

  .sm\:focus\:right-4:focus{
    right     : 1rem !important;
  }

  .sm\:focus\:bottom-4:focus{
    bottom     : 1rem !important;
  }

  .sm\:focus\:left-4:focus{
    left     : 1rem !important;
  }

  .sm\:focus\:top-5:focus{
    top     : 1.25rem !important;
  }

  .sm\:focus\:right-5:focus{
    right     : 1.25rem !important;
  }

  .sm\:focus\:bottom-5:focus{
    bottom     : 1.25rem !important;
  }

  .sm\:focus\:left-5:focus{
    left     : 1.25rem !important;
  }

  .sm\:focus\:top-6:focus{
    top     : 1.5rem !important;
  }

  .sm\:focus\:right-6:focus{
    right     : 1.5rem !important;
  }

  .sm\:focus\:bottom-6:focus{
    bottom     : 1.5rem !important;
  }

  .sm\:focus\:left-6:focus{
    left     : 1.5rem !important;
  }

  .sm\:focus\:top-7:focus{
    top     : 1.75rem !important;
  }

  .sm\:focus\:right-7:focus{
    right     : 1.75rem !important;
  }

  .sm\:focus\:bottom-7:focus{
    bottom     : 1.75rem !important;
  }

  .sm\:focus\:left-7:focus{
    left     : 1.75rem !important;
  }

  .sm\:focus\:top-8:focus{
    top     : 2rem !important;
  }

  .sm\:focus\:right-8:focus{
    right     : 2rem !important;
  }

  .sm\:focus\:bottom-8:focus{
    bottom     : 2rem !important;
  }

  .sm\:focus\:left-8:focus{
    left     : 2rem !important;
  }

  .sm\:focus\:top-9:focus{
    top     : 2.25rem !important;
  }

  .sm\:focus\:right-9:focus{
    right     : 2.25rem !important;
  }

  .sm\:focus\:bottom-9:focus{
    bottom     : 2.25rem !important;
  }

  .sm\:focus\:left-9:focus{
    left     : 2.25rem !important;
  }

  .sm\:focus\:top-10:focus{
    top     : 2.5rem !important;
  }

  .sm\:focus\:right-10:focus{
    right     : 2.5rem !important;
  }

  .sm\:focus\:bottom-10:focus{
    bottom     : 2.5rem !important;
  }

  .sm\:focus\:left-10:focus{
    left     : 2.5rem !important;
  }

  .sm\:focus\:top-11:focus{
    top     : 2.75rem !important;
  }

  .sm\:focus\:right-11:focus{
    right     : 2.75rem !important;
  }

  .sm\:focus\:bottom-11:focus{
    bottom     : 2.75rem !important;
  }

  .sm\:focus\:left-11:focus{
    left     : 2.75rem !important;
  }

  .sm\:focus\:top-12:focus{
    top     : 3rem !important;
  }

  .sm\:focus\:right-12:focus{
    right     : 3rem !important;
  }

  .sm\:focus\:bottom-12:focus{
    bottom     : 3rem !important;
  }

  .sm\:focus\:left-12:focus{
    left     : 3rem !important;
  }

  .sm\:focus\:top-13:focus{
    top     : 3.25rem !important;
  }

  .sm\:focus\:right-13:focus{
    right     : 3.25rem !important;
  }

  .sm\:focus\:bottom-13:focus{
    bottom     : 3.25rem !important;
  }

  .sm\:focus\:left-13:focus{
    left     : 3.25rem !important;
  }

  .sm\:focus\:top-14:focus{
    top     : 3.5rem !important;
  }

  .sm\:focus\:right-14:focus{
    right     : 3.5rem !important;
  }

  .sm\:focus\:bottom-14:focus{
    bottom     : 3.5rem !important;
  }

  .sm\:focus\:left-14:focus{
    left     : 3.5rem !important;
  }

  .sm\:focus\:top-15:focus{
    top     : 3.75rem !important;
  }

  .sm\:focus\:right-15:focus{
    right     : 3.75rem !important;
  }

  .sm\:focus\:bottom-15:focus{
    bottom     : 3.75rem !important;
  }

  .sm\:focus\:left-15:focus{
    left     : 3.75rem !important;
  }

  .sm\:focus\:top-16:focus{
    top     : 4rem !important;
  }

  .sm\:focus\:right-16:focus{
    right     : 4rem !important;
  }

  .sm\:focus\:bottom-16:focus{
    bottom     : 4rem !important;
  }

  .sm\:focus\:left-16:focus{
    left     : 4rem !important;
  }

  .sm\:focus\:top-20:focus{
    top     : 5rem !important;
  }

  .sm\:focus\:right-20:focus{
    right     : 5rem !important;
  }

  .sm\:focus\:bottom-20:focus{
    bottom     : 5rem !important;
  }

  .sm\:focus\:left-20:focus{
    left     : 5rem !important;
  }

  .sm\:focus\:top-24:focus{
    top     : 6rem !important;
  }

  .sm\:focus\:right-24:focus{
    right     : 6rem !important;
  }

  .sm\:focus\:bottom-24:focus{
    bottom     : 6rem !important;
  }

  .sm\:focus\:left-24:focus{
    left     : 6rem !important;
  }

  .sm\:focus\:top-28:focus{
    top     : 7rem !important;
  }

  .sm\:focus\:right-28:focus{
    right     : 7rem !important;
  }

  .sm\:focus\:bottom-28:focus{
    bottom     : 7rem !important;
  }

  .sm\:focus\:left-28:focus{
    left     : 7rem !important;
  }

  .sm\:focus\:top-32:focus{
    top     : 8rem !important;
  }

  .sm\:focus\:right-32:focus{
    right     : 8rem !important;
  }

  .sm\:focus\:bottom-32:focus{
    bottom     : 8rem !important;
  }

  .sm\:focus\:left-32:focus{
    left     : 8rem !important;
  }

  .sm\:focus\:top-36:focus{
    top     : 9rem !important;
  }

  .sm\:focus\:right-36:focus{
    right     : 9rem !important;
  }

  .sm\:focus\:bottom-36:focus{
    bottom     : 9rem !important;
  }

  .sm\:focus\:left-36:focus{
    left     : 9rem !important;
  }

  .sm\:focus\:top-40:focus{
    top     : 10rem !important;
  }

  .sm\:focus\:right-40:focus{
    right     : 10rem !important;
  }

  .sm\:focus\:bottom-40:focus{
    bottom     : 10rem !important;
  }

  .sm\:focus\:left-40:focus{
    left     : 10rem !important;
  }

  .sm\:focus\:top-44:focus{
    top     : 11rem !important;
  }

  .sm\:focus\:right-44:focus{
    right     : 11rem !important;
  }

  .sm\:focus\:bottom-44:focus{
    bottom     : 11rem !important;
  }

  .sm\:focus\:left-44:focus{
    left     : 11rem !important;
  }

  .sm\:focus\:top-48:focus{
    top     : 12rem !important;
  }

  .sm\:focus\:right-48:focus{
    right     : 12rem !important;
  }

  .sm\:focus\:bottom-48:focus{
    bottom     : 12rem !important;
  }

  .sm\:focus\:left-48:focus{
    left     : 12rem !important;
  }

  .sm\:focus\:top-52:focus{
    top     : 13rem !important;
  }

  .sm\:focus\:right-52:focus{
    right     : 13rem !important;
  }

  .sm\:focus\:bottom-52:focus{
    bottom     : 13rem !important;
  }

  .sm\:focus\:left-52:focus{
    left     : 13rem !important;
  }

  .sm\:focus\:top-56:focus{
    top     : 14rem !important;
  }

  .sm\:focus\:right-56:focus{
    right     : 14rem !important;
  }

  .sm\:focus\:bottom-56:focus{
    bottom     : 14rem !important;
  }

  .sm\:focus\:left-56:focus{
    left     : 14rem !important;
  }

  .sm\:focus\:top-60:focus{
    top     : 15rem !important;
  }

  .sm\:focus\:right-60:focus{
    right     : 15rem !important;
  }

  .sm\:focus\:bottom-60:focus{
    bottom     : 15rem !important;
  }

  .sm\:focus\:left-60:focus{
    left     : 15rem !important;
  }

  .sm\:focus\:top-64:focus{
    top     : 16rem !important;
  }

  .sm\:focus\:right-64:focus{
    right     : 16rem !important;
  }

  .sm\:focus\:bottom-64:focus{
    bottom     : 16rem !important;
  }

  .sm\:focus\:left-64:focus{
    left     : 16rem !important;
  }

  .sm\:focus\:top-72:focus{
    top     : 18rem !important;
  }

  .sm\:focus\:right-72:focus{
    right     : 18rem !important;
  }

  .sm\:focus\:bottom-72:focus{
    bottom     : 18rem !important;
  }

  .sm\:focus\:left-72:focus{
    left     : 18rem !important;
  }

  .sm\:focus\:top-80:focus{
    top     : 20rem !important;
  }

  .sm\:focus\:right-80:focus{
    right     : 20rem !important;
  }

  .sm\:focus\:bottom-80:focus{
    bottom     : 20rem !important;
  }

  .sm\:focus\:left-80:focus{
    left     : 20rem !important;
  }

  .sm\:focus\:top-96:focus{
    top     : 24rem !important;
  }

  .sm\:focus\:right-96:focus{
    right     : 24rem !important;
  }

  .sm\:focus\:bottom-96:focus{
    bottom     : 24rem !important;
  }

  .sm\:focus\:left-96:focus{
    left     : 24rem !important;
  }

  .sm\:focus\:top-auto:focus{
    top     : auto !important;
  }

  .sm\:focus\:right-auto:focus{
    right     : auto !important;
  }

  .sm\:focus\:bottom-auto:focus{
    bottom     : auto !important;
  }

  .sm\:focus\:left-auto:focus{
    left     : auto !important;
  }

  .sm\:focus\:top-px:focus{
    top     : 1px !important;
  }

  .sm\:focus\:right-px:focus{
    right     : 1px !important;
  }

  .sm\:focus\:bottom-px:focus{
    bottom     : 1px !important;
  }

  .sm\:focus\:left-px:focus{
    left     : 1px !important;
  }

  .sm\:focus\:top-0\.5:focus{
    top     : 0.125rem !important;
  }

  .sm\:focus\:right-0\.5:focus{
    right     : 0.125rem !important;
  }

  .sm\:focus\:bottom-0\.5:focus{
    bottom     : 0.125rem !important;
  }

  .sm\:focus\:left-0\.5:focus{
    left     : 0.125rem !important;
  }

  .sm\:focus\:top-1\.5:focus{
    top     : 0.375rem !important;
  }

  .sm\:focus\:right-1\.5:focus{
    right     : 0.375rem !important;
  }

  .sm\:focus\:bottom-1\.5:focus{
    bottom     : 0.375rem !important;
  }

  .sm\:focus\:left-1\.5:focus{
    left     : 0.375rem !important;
  }

  .sm\:focus\:top-2\.5:focus{
    top     : 0.625rem !important;
  }

  .sm\:focus\:right-2\.5:focus{
    right     : 0.625rem !important;
  }

  .sm\:focus\:bottom-2\.5:focus{
    bottom     : 0.625rem !important;
  }

  .sm\:focus\:left-2\.5:focus{
    left     : 0.625rem !important;
  }

  .sm\:focus\:top-3\.5:focus{
    top     : 0.875rem !important;
  }

  .sm\:focus\:right-3\.5:focus{
    right     : 0.875rem !important;
  }

  .sm\:focus\:bottom-3\.5:focus{
    bottom     : 0.875rem !important;
  }

  .sm\:focus\:left-3\.5:focus{
    left     : 0.875rem !important;
  }

  .sm\:focus\:top-1\/2:focus{
    top     : 50% !important;
  }

  .sm\:focus\:right-1\/2:focus{
    right     : 50% !important;
  }

  .sm\:focus\:bottom-1\/2:focus{
    bottom     : 50% !important;
  }

  .sm\:focus\:left-1\/2:focus{
    left     : 50% !important;
  }

  .sm\:focus\:top-1\/3:focus{
    top     : 33.333333% !important;
  }

  .sm\:focus\:right-1\/3:focus{
    right     : 33.333333% !important;
  }

  .sm\:focus\:bottom-1\/3:focus{
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:left-1\/3:focus{
    left     : 33.333333% !important;
  }

  .sm\:focus\:top-2\/3:focus{
    top     : 66.666667% !important;
  }

  .sm\:focus\:right-2\/3:focus{
    right     : 66.666667% !important;
  }

  .sm\:focus\:bottom-2\/3:focus{
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:left-2\/3:focus{
    left     : 66.666667% !important;
  }

  .sm\:focus\:top-1\/4:focus{
    top     : 25% !important;
  }

  .sm\:focus\:right-1\/4:focus{
    right     : 25% !important;
  }

  .sm\:focus\:bottom-1\/4:focus{
    bottom     : 25% !important;
  }

  .sm\:focus\:left-1\/4:focus{
    left     : 25% !important;
  }

  .sm\:focus\:top-2\/4:focus{
    top     : 50% !important;
  }

  .sm\:focus\:right-2\/4:focus{
    right     : 50% !important;
  }

  .sm\:focus\:bottom-2\/4:focus{
    bottom     : 50% !important;
  }

  .sm\:focus\:left-2\/4:focus{
    left     : 50% !important;
  }

  .sm\:focus\:top-3\/4:focus{
    top     : 75% !important;
  }

  .sm\:focus\:right-3\/4:focus{
    right     : 75% !important;
  }

  .sm\:focus\:bottom-3\/4:focus{
    bottom     : 75% !important;
  }

  .sm\:focus\:left-3\/4:focus{
    left     : 75% !important;
  }

  .sm\:focus\:top-1\/5:focus{
    top     : 20% !important;
  }

  .sm\:focus\:right-1\/5:focus{
    right     : 20% !important;
  }

  .sm\:focus\:bottom-1\/5:focus{
    bottom     : 20% !important;
  }

  .sm\:focus\:left-1\/5:focus{
    left     : 20% !important;
  }

  .sm\:focus\:top-2\/5:focus{
    top     : 40% !important;
  }

  .sm\:focus\:right-2\/5:focus{
    right     : 40% !important;
  }

  .sm\:focus\:bottom-2\/5:focus{
    bottom     : 40% !important;
  }

  .sm\:focus\:left-2\/5:focus{
    left     : 40% !important;
  }

  .sm\:focus\:top-3\/5:focus{
    top     : 60% !important;
  }

  .sm\:focus\:right-3\/5:focus{
    right     : 60% !important;
  }

  .sm\:focus\:bottom-3\/5:focus{
    bottom     : 60% !important;
  }

  .sm\:focus\:left-3\/5:focus{
    left     : 60% !important;
  }

  .sm\:focus\:top-4\/5:focus{
    top     : 80% !important;
  }

  .sm\:focus\:right-4\/5:focus{
    right     : 80% !important;
  }

  .sm\:focus\:bottom-4\/5:focus{
    bottom     : 80% !important;
  }

  .sm\:focus\:left-4\/5:focus{
    left     : 80% !important;
  }

  .sm\:focus\:top-1\/6:focus{
    top     : 16.666667% !important;
  }

  .sm\:focus\:right-1\/6:focus{
    right     : 16.666667% !important;
  }

  .sm\:focus\:bottom-1\/6:focus{
    bottom     : 16.666667% !important;
  }

  .sm\:focus\:left-1\/6:focus{
    left     : 16.666667% !important;
  }

  .sm\:focus\:top-2\/6:focus{
    top     : 33.333333% !important;
  }

  .sm\:focus\:right-2\/6:focus{
    right     : 33.333333% !important;
  }

  .sm\:focus\:bottom-2\/6:focus{
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:left-2\/6:focus{
    left     : 33.333333% !important;
  }

  .sm\:focus\:top-3\/6:focus{
    top     : 50% !important;
  }

  .sm\:focus\:right-3\/6:focus{
    right     : 50% !important;
  }

  .sm\:focus\:bottom-3\/6:focus{
    bottom     : 50% !important;
  }

  .sm\:focus\:left-3\/6:focus{
    left     : 50% !important;
  }

  .sm\:focus\:top-4\/6:focus{
    top     : 66.666667% !important;
  }

  .sm\:focus\:right-4\/6:focus{
    right     : 66.666667% !important;
  }

  .sm\:focus\:bottom-4\/6:focus{
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:left-4\/6:focus{
    left     : 66.666667% !important;
  }

  .sm\:focus\:top-5\/6:focus{
    top     : 83.333333% !important;
  }

  .sm\:focus\:right-5\/6:focus{
    right     : 83.333333% !important;
  }

  .sm\:focus\:bottom-5\/6:focus{
    bottom     : 83.333333% !important;
  }

  .sm\:focus\:left-5\/6:focus{
    left     : 83.333333% !important;
  }

  .sm\:focus\:top-1\/12:focus{
    top     : 8.333333% !important;
  }

  .sm\:focus\:right-1\/12:focus{
    right     : 8.333333% !important;
  }

  .sm\:focus\:bottom-1\/12:focus{
    bottom     : 8.333333% !important;
  }

  .sm\:focus\:left-1\/12:focus{
    left     : 8.333333% !important;
  }

  .sm\:focus\:top-2\/12:focus{
    top     : 16.666667% !important;
  }

  .sm\:focus\:right-2\/12:focus{
    right     : 16.666667% !important;
  }

  .sm\:focus\:bottom-2\/12:focus{
    bottom     : 16.666667% !important;
  }

  .sm\:focus\:left-2\/12:focus{
    left     : 16.666667% !important;
  }

  .sm\:focus\:top-3\/12:focus{
    top     : 25% !important;
  }

  .sm\:focus\:right-3\/12:focus{
    right     : 25% !important;
  }

  .sm\:focus\:bottom-3\/12:focus{
    bottom     : 25% !important;
  }

  .sm\:focus\:left-3\/12:focus{
    left     : 25% !important;
  }

  .sm\:focus\:top-4\/12:focus{
    top     : 33.333333% !important;
  }

  .sm\:focus\:right-4\/12:focus{
    right     : 33.333333% !important;
  }

  .sm\:focus\:bottom-4\/12:focus{
    bottom     : 33.333333% !important;
  }

  .sm\:focus\:left-4\/12:focus{
    left     : 33.333333% !important;
  }

  .sm\:focus\:top-5\/12:focus{
    top     : 41.666667% !important;
  }

  .sm\:focus\:right-5\/12:focus{
    right     : 41.666667% !important;
  }

  .sm\:focus\:bottom-5\/12:focus{
    bottom     : 41.666667% !important;
  }

  .sm\:focus\:left-5\/12:focus{
    left     : 41.666667% !important;
  }

  .sm\:focus\:top-6\/12:focus{
    top     : 50% !important;
  }

  .sm\:focus\:right-6\/12:focus{
    right     : 50% !important;
  }

  .sm\:focus\:bottom-6\/12:focus{
    bottom     : 50% !important;
  }

  .sm\:focus\:left-6\/12:focus{
    left     : 50% !important;
  }

  .sm\:focus\:top-7\/12:focus{
    top     : 58.333333% !important;
  }

  .sm\:focus\:right-7\/12:focus{
    right     : 58.333333% !important;
  }

  .sm\:focus\:bottom-7\/12:focus{
    bottom     : 58.333333% !important;
  }

  .sm\:focus\:left-7\/12:focus{
    left     : 58.333333% !important;
  }

  .sm\:focus\:top-8\/12:focus{
    top     : 66.666667% !important;
  }

  .sm\:focus\:right-8\/12:focus{
    right     : 66.666667% !important;
  }

  .sm\:focus\:bottom-8\/12:focus{
    bottom     : 66.666667% !important;
  }

  .sm\:focus\:left-8\/12:focus{
    left     : 66.666667% !important;
  }

  .sm\:focus\:top-9\/12:focus{
    top     : 75% !important;
  }

  .sm\:focus\:right-9\/12:focus{
    right     : 75% !important;
  }

  .sm\:focus\:bottom-9\/12:focus{
    bottom     : 75% !important;
  }

  .sm\:focus\:left-9\/12:focus{
    left     : 75% !important;
  }

  .sm\:focus\:top-10\/12:focus{
    top     : 83.333333% !important;
  }

  .sm\:focus\:right-10\/12:focus{
    right     : 83.333333% !important;
  }

  .sm\:focus\:bottom-10\/12:focus{
    bottom     : 83.333333% !important;
  }

  .sm\:focus\:left-10\/12:focus{
    left     : 83.333333% !important;
  }

  .sm\:focus\:top-11\/12:focus{
    top     : 91.666667% !important;
  }

  .sm\:focus\:right-11\/12:focus{
    right     : 91.666667% !important;
  }

  .sm\:focus\:bottom-11\/12:focus{
    bottom     : 91.666667% !important;
  }

  .sm\:focus\:left-11\/12:focus{
    left     : 91.666667% !important;
  }

  .sm\:focus\:top-full:focus{
    top     : 100% !important;
  }

  .sm\:focus\:right-full:focus{
    right     : 100% !important;
  }

  .sm\:focus\:bottom-full:focus{
    bottom     : 100% !important;
  }

  .sm\:focus\:left-full:focus{
    left     : 100% !important;
  }

  .sm\:resize-none{
    resize     : none !important;
  }

  .sm\:resize-y{
    resize     : vertical !important;
  }

  .sm\:resize-x{
    resize     : horizontal !important;
  }

  .sm\:resize{
    resize     : both !important;
  }

  .group:hover .sm\:group-hover\:resize-none{
    resize     : none !important;
  }

  .group:hover .sm\:group-hover\:resize-y{
    resize     : vertical !important;
  }

  .group:hover .sm\:group-hover\:resize-x{
    resize     : horizontal !important;
  }

  .group:hover .sm\:group-hover\:resize{
    resize     : both !important;
  }

  .sm\:hover\:resize-none:hover{
    resize     : none !important;
  }

  .sm\:hover\:resize-y:hover{
    resize     : vertical !important;
  }

  .sm\:hover\:resize-x:hover{
    resize     : horizontal !important;
  }

  .sm\:hover\:resize:hover{
    resize     : both !important;
  }

  .sm\:focus\:resize-none:focus{
    resize     : none !important;
  }

  .sm\:focus\:resize-y:focus{
    resize     : vertical !important;
  }

  .sm\:focus\:resize-x:focus{
    resize     : horizontal !important;
  }

  .sm\:focus\:resize:focus{
    resize     : both !important;
  }

  .sm\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .sm\:shadow-none{
    box-shadow     : none !important;
  }

  .sm\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .sm\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .sm\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .sm\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .sm\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .sm\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .sm\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .sm\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .sm\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .sm\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .sm\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .sm\:group-hover\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .sm\:group-hover\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .group:hover .sm\:group-hover\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-none{
    box-shadow     : none !important;
  }

  .group:hover .sm\:group-hover\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .group:hover .sm\:group-hover\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .sm\:hover\:shadow-xs:hover{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:shadow-sm:hover{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:shadow:hover{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:shadow-md:hover{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:shadow-lg:hover{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:shadow-xl:hover{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:hover\:shadow-2xl:hover{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:hover\:shadow-inner:hover{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:shadow-outline:hover{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .sm\:hover\:shadow-none:hover{
    box-shadow     : none !important;
  }

  .sm\:hover\:shadow-solid:hover{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .sm\:hover\:shadow-outline-gray:hover{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-blue:hover{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-teal:hover{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-green:hover{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-yellow:hover{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-orange:hover{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-red:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-pink:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-purple:hover{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .sm\:hover\:shadow-outline-indigo:hover{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .sm\:focus\:shadow-xs:focus{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:shadow-sm:focus{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:shadow:focus{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:shadow-md:focus{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:shadow-lg:focus{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:shadow-xl:focus{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:focus\:shadow-2xl:focus{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:focus\:shadow-inner:focus{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:shadow-outline:focus{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .sm\:focus\:shadow-none:focus{
    box-shadow     : none !important;
  }

  .sm\:focus\:shadow-solid:focus{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .sm\:focus\:shadow-outline-gray:focus{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-blue:focus{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-teal:focus{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-green:focus{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-yellow:focus{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-orange:focus{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-red:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-pink:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-purple:focus{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .sm\:focus\:shadow-outline-indigo:focus{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .sm\:fill-current{
    fill     : currentColor !important;
  }

  .group:hover .sm\:group-hover\:fill-current{
    fill     : currentColor !important;
  }

  .sm\:hover\:fill-current:hover{
    fill     : currentColor !important;
  }

  .sm\:focus\:fill-current:focus{
    fill     : currentColor !important;
  }

  .sm\:stroke-current{
    stroke     : currentColor !important;
  }

  .group:hover .sm\:group-hover\:stroke-current{
    stroke     : currentColor !important;
  }

  .sm\:hover\:stroke-current:hover{
    stroke     : currentColor !important;
  }

  .sm\:focus\:stroke-current:focus{
    stroke     : currentColor !important;
  }

  .sm\:stroke-0{
    stroke-width     : 0 !important;
  }

  .sm\:stroke-1{
    stroke-width     : 1 !important;
  }

  .sm\:stroke-2{
    stroke-width     : 2 !important;
  }

  .group:hover .sm\:group-hover\:stroke-0{
    stroke-width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:stroke-1{
    stroke-width     : 1 !important;
  }

  .group:hover .sm\:group-hover\:stroke-2{
    stroke-width     : 2 !important;
  }

  .sm\:hover\:stroke-0:hover{
    stroke-width     : 0 !important;
  }

  .sm\:hover\:stroke-1:hover{
    stroke-width     : 1 !important;
  }

  .sm\:hover\:stroke-2:hover{
    stroke-width     : 2 !important;
  }

  .sm\:focus\:stroke-0:focus{
    stroke-width     : 0 !important;
  }

  .sm\:focus\:stroke-1:focus{
    stroke-width     : 1 !important;
  }

  .sm\:focus\:stroke-2:focus{
    stroke-width     : 2 !important;
  }

  .sm\:table-auto{
    table-layout     : auto !important;
  }

  .sm\:table-fixed{
    table-layout     : fixed !important;
  }

  .group:hover .sm\:group-hover\:table-auto{
    table-layout     : auto !important;
  }

  .group:hover .sm\:group-hover\:table-fixed{
    table-layout     : fixed !important;
  }

  .sm\:hover\:table-auto:hover{
    table-layout     : auto !important;
  }

  .sm\:hover\:table-fixed:hover{
    table-layout     : fixed !important;
  }

  .sm\:focus\:table-auto:focus{
    table-layout     : auto !important;
  }

  .sm\:focus\:table-fixed:focus{
    table-layout     : fixed !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;
  }

  .group:hover .sm\:group-hover\:text-left{
    text-align     : left !important;
  }

  .group:hover .sm\:group-hover\:text-center{
    text-align     : center !important;
  }

  .group:hover .sm\:group-hover\:text-right{
    text-align     : right !important;
  }

  .group:hover .sm\:group-hover\:text-justify{
    text-align     : justify !important;
  }

  .sm\:hover\:text-left:hover{
    text-align     : left !important;
  }

  .sm\:hover\:text-center:hover{
    text-align     : center !important;
  }

  .sm\:hover\:text-right:hover{
    text-align     : right !important;
  }

  .sm\:hover\:text-justify:hover{
    text-align     : justify !important;
  }

  .sm\:focus\:text-left:focus{
    text-align     : left !important;
  }

  .sm\:focus\:text-center:focus{
    text-align     : center !important;
  }

  .sm\:focus\:text-right:focus{
    text-align     : right !important;
  }

  .sm\:focus\:text-justify:focus{
    text-align     : justify !important;
  }

  .sm\:text-transparent{
    color     : transparent !important;
  }

  .sm\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .sm\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .sm\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .sm\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .sm\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .sm\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .sm\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .sm\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .sm\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .sm\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .sm\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .sm\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .sm\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .sm\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .sm\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .sm\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .sm\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .sm\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .sm\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .sm\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .sm\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .sm\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .sm\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .sm\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .sm\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .sm\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .sm\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .sm\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .sm\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .sm\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .sm\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .sm\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .sm\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .sm\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .sm\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .sm\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .sm\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .sm\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .sm\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .sm\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .sm\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .sm\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .sm\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .sm\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .sm\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .sm\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .sm\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .sm\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .sm\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .sm\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .sm\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .sm\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .sm\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .sm\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .sm\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .sm\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .sm\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .sm\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .sm\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .sm\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .sm\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .sm\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .sm\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .sm\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .sm\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .sm\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .sm\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .sm\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .sm\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .sm\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .sm\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .sm\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .sm\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .sm\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .sm\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .sm\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .sm\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .sm\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .sm\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .sm\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-transparent{
    color     : transparent !important;
  }

  .group:hover .sm\:group-hover\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .group:hover .sm\:group-hover\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-transparent:hover{
    color     : transparent !important;
  }

  .sm\:hover\:text-white:hover{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-black:hover{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-cool-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-100:hover{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-200:hover{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-400:hover{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-500:hover{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-600:hover{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-700:hover{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-800:hover{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-red-900:hover{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-50:hover{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-100:hover{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-200:hover{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-300:hover{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-400:hover{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-500:hover{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-600:hover{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-700:hover{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-800:hover{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-orange-900:hover{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-100:hover{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-200:hover{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-300:hover{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-400:hover{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-500:hover{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-600:hover{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-700:hover{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-800:hover{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-yellow-900:hover{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-50:hover{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-100:hover{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-200:hover{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-300:hover{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-400:hover{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-500:hover{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-600:hover{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-700:hover{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-800:hover{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-green-900:hover{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-50:hover{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-100:hover{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-200:hover{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-300:hover{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-400:hover{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-500:hover{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-600:hover{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-700:hover{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-800:hover{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-teal-900:hover{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-50:hover{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-100:hover{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-200:hover{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-300:hover{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-400:hover{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-500:hover{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-600:hover{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-700:hover{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-800:hover{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-900:hover{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-50:hover{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-100:hover{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-200:hover{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-300:hover{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-400:hover{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-500:hover{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-600:hover{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-700:hover{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-800:hover{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-indigo-900:hover{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-50:hover{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-100:hover{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-200:hover{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-300:hover{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-400:hover{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-500:hover{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-600:hover{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-700:hover{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-800:hover{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-purple-900:hover{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-100:hover{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-200:hover{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-400:hover{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-500:hover{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-600:hover{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-700:hover{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-800:hover{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-pink-900:hover{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .sm\:hover\:text-blue-brand:hover{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-transparent:focus{
    color     : transparent !important;
  }

  .sm\:focus\:text-white:focus{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-black:focus{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-cool-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-100:focus{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-200:focus{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-400:focus{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-500:focus{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-600:focus{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-700:focus{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-800:focus{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-red-900:focus{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-50:focus{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-100:focus{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-200:focus{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-300:focus{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-400:focus{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-500:focus{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-600:focus{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-700:focus{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-800:focus{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-orange-900:focus{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-100:focus{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-200:focus{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-300:focus{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-400:focus{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-500:focus{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-600:focus{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-700:focus{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-800:focus{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-yellow-900:focus{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-50:focus{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-100:focus{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-200:focus{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-300:focus{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-400:focus{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-500:focus{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-600:focus{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-700:focus{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-800:focus{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-green-900:focus{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-50:focus{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-100:focus{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-200:focus{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-300:focus{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-400:focus{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-500:focus{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-600:focus{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-700:focus{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-800:focus{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-teal-900:focus{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-50:focus{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-100:focus{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-200:focus{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-300:focus{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-400:focus{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-500:focus{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-600:focus{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-700:focus{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-800:focus{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-900:focus{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-50:focus{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-100:focus{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-200:focus{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-300:focus{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-400:focus{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-500:focus{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-600:focus{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-700:focus{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-800:focus{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-indigo-900:focus{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-50:focus{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-100:focus{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-200:focus{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-300:focus{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-400:focus{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-500:focus{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-600:focus{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-700:focus{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-800:focus{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-purple-900:focus{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-100:focus{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-200:focus{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-400:focus{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-500:focus{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-600:focus{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-700:focus{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-800:focus{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-pink-900:focus{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .sm\:focus\:text-blue-brand:focus{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .sm\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .sm\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .sm\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .sm\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .sm\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .group:hover .sm\:group-hover\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .group:hover .sm\:group-hover\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .group:hover .sm\:group-hover\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .group:hover .sm\:group-hover\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .group:hover .sm\:group-hover\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .sm\:hover\:text-opacity-0:hover{
    --text-opacity     : 0 !important;
  }

  .sm\:hover\:text-opacity-25:hover{
    --text-opacity     : 0.25 !important;
  }

  .sm\:hover\:text-opacity-50:hover{
    --text-opacity     : 0.5 !important;
  }

  .sm\:hover\:text-opacity-75:hover{
    --text-opacity     : 0.75 !important;
  }

  .sm\:hover\:text-opacity-100:hover{
    --text-opacity     : 1 !important;
  }

  .sm\:focus\:text-opacity-0:focus{
    --text-opacity     : 0 !important;
  }

  .sm\:focus\:text-opacity-25:focus{
    --text-opacity     : 0.25 !important;
  }

  .sm\:focus\:text-opacity-50:focus{
    --text-opacity     : 0.5 !important;
  }

  .sm\:focus\:text-opacity-75:focus{
    --text-opacity     : 0.75 !important;
  }

  .sm\:focus\:text-opacity-100:focus{
    --text-opacity     : 1 !important;
  }

  .sm\:italic{
    font-style     : italic !important;
  }

  .sm\:not-italic{
    font-style     : normal !important;
  }

  .group:hover .sm\:group-hover\:italic{
    font-style     : italic !important;
  }

  .group:hover .sm\:group-hover\:not-italic{
    font-style     : normal !important;
  }

  .sm\:hover\:italic:hover{
    font-style     : italic !important;
  }

  .sm\:hover\:not-italic:hover{
    font-style     : normal !important;
  }

  .sm\:focus\:italic:focus{
    font-style     : italic !important;
  }

  .sm\:focus\:not-italic:focus{
    font-style     : normal !important;
  }

  .sm\:uppercase{
    text-transform     : uppercase !important;
  }

  .sm\:lowercase{
    text-transform     : lowercase !important;
  }

  .sm\:capitalize{
    text-transform     : capitalize !important;
  }

  .sm\:normal-case{
    text-transform     : none !important;
  }

  .group:hover .sm\:group-hover\:uppercase{
    text-transform     : uppercase !important;
  }

  .group:hover .sm\:group-hover\:lowercase{
    text-transform     : lowercase !important;
  }

  .group:hover .sm\:group-hover\:capitalize{
    text-transform     : capitalize !important;
  }

  .group:hover .sm\:group-hover\:normal-case{
    text-transform     : none !important;
  }

  .sm\:hover\:uppercase:hover{
    text-transform     : uppercase !important;
  }

  .sm\:hover\:lowercase:hover{
    text-transform     : lowercase !important;
  }

  .sm\:hover\:capitalize:hover{
    text-transform     : capitalize !important;
  }

  .sm\:hover\:normal-case:hover{
    text-transform     : none !important;
  }

  .sm\:focus\:uppercase:focus{
    text-transform     : uppercase !important;
  }

  .sm\:focus\:lowercase:focus{
    text-transform     : lowercase !important;
  }

  .sm\:focus\:capitalize:focus{
    text-transform     : capitalize !important;
  }

  .sm\:focus\:normal-case:focus{
    text-transform     : none !important;
  }

  .sm\:underline{
    text-decoration     : underline !important;
  }

  .sm\:line-through{
    text-decoration     : line-through !important;
  }

  .sm\:no-underline{
    text-decoration     : none !important;
  }

  .group:hover .sm\:group-hover\:underline{
    text-decoration     : underline !important;
  }

  .group:hover .sm\:group-hover\:line-through{
    text-decoration     : line-through !important;
  }

  .group:hover .sm\:group-hover\:no-underline{
    text-decoration     : none !important;
  }

  .sm\:hover\:underline:hover{
    text-decoration     : underline !important;
  }

  .sm\:hover\:line-through:hover{
    text-decoration     : line-through !important;
  }

  .sm\:hover\:no-underline:hover{
    text-decoration     : none !important;
  }

  .sm\:focus\:underline:focus{
    text-decoration     : underline !important;
  }

  .sm\:focus\:line-through:focus{
    text-decoration     : line-through !important;
  }

  .sm\:focus\:no-underline:focus{
    text-decoration     : none !important;
  }

  .sm\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .sm\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .group:hover .sm\:group-hover\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .group:hover .sm\:group-hover\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .sm\:hover\:antialiased:hover{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .sm\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .sm\:focus\:antialiased:focus{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .sm\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !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;
  }

  .group:hover .sm\:group-hover\:tracking-tighter{
    letter-spacing     : -0.05em !important;
  }

  .group:hover .sm\:group-hover\:tracking-tight{
    letter-spacing     : -0.025em !important;
  }

  .group:hover .sm\:group-hover\:tracking-normal{
    letter-spacing     : 0 !important;
  }

  .group:hover .sm\:group-hover\:tracking-wide{
    letter-spacing     : 0.025em !important;
  }

  .group:hover .sm\:group-hover\:tracking-wider{
    letter-spacing     : 0.05em !important;
  }

  .group:hover .sm\:group-hover\:tracking-widest{
    letter-spacing     : 0.1em !important;
  }

  .sm\:hover\:tracking-tighter:hover{
    letter-spacing     : -0.05em !important;
  }

  .sm\:hover\:tracking-tight:hover{
    letter-spacing     : -0.025em !important;
  }

  .sm\:hover\:tracking-normal:hover{
    letter-spacing     : 0 !important;
  }

  .sm\:hover\:tracking-wide:hover{
    letter-spacing     : 0.025em !important;
  }

  .sm\:hover\:tracking-wider:hover{
    letter-spacing     : 0.05em !important;
  }

  .sm\:hover\:tracking-widest:hover{
    letter-spacing     : 0.1em !important;
  }

  .sm\:focus\:tracking-tighter:focus{
    letter-spacing     : -0.05em !important;
  }

  .sm\:focus\:tracking-tight:focus{
    letter-spacing     : -0.025em !important;
  }

  .sm\:focus\:tracking-normal:focus{
    letter-spacing     : 0 !important;
  }

  .sm\:focus\:tracking-wide:focus{
    letter-spacing     : 0.025em !important;
  }

  .sm\:focus\:tracking-wider:focus{
    letter-spacing     : 0.05em !important;
  }

  .sm\:focus\:tracking-widest:focus{
    letter-spacing     : 0.1em !important;
  }

  .sm\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .sm\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .sm\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .sm\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .group:hover .sm\:group-hover\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .group:hover .sm\:group-hover\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .group:hover .sm\:group-hover\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .group:hover .sm\:group-hover\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .sm\:hover\:select-none:hover{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .sm\:hover\:select-text:hover{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .sm\:hover\:select-all:hover{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .sm\:hover\:select-auto:hover{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .sm\:focus\:select-none:focus{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .sm\:focus\:select-text:focus{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .sm\:focus\:select-all:focus{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .sm\:focus\:select-auto:focus{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .sm\:align-baseline{
    vertical-align     : baseline !important;
  }

  .sm\:align-top{
    vertical-align     : top !important;
  }

  .sm\:align-middle{
    vertical-align     : middle !important;
  }

  .sm\:align-bottom{
    vertical-align     : bottom !important;
  }

  .sm\:align-text-top{
    vertical-align     : text-top !important;
  }

  .sm\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .group:hover .sm\:group-hover\:align-baseline{
    vertical-align     : baseline !important;
  }

  .group:hover .sm\:group-hover\:align-top{
    vertical-align     : top !important;
  }

  .group:hover .sm\:group-hover\:align-middle{
    vertical-align     : middle !important;
  }

  .group:hover .sm\:group-hover\:align-bottom{
    vertical-align     : bottom !important;
  }

  .group:hover .sm\:group-hover\:align-text-top{
    vertical-align     : text-top !important;
  }

  .group:hover .sm\:group-hover\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .sm\:hover\:align-baseline:hover{
    vertical-align     : baseline !important;
  }

  .sm\:hover\:align-top:hover{
    vertical-align     : top !important;
  }

  .sm\:hover\:align-middle:hover{
    vertical-align     : middle !important;
  }

  .sm\:hover\:align-bottom:hover{
    vertical-align     : bottom !important;
  }

  .sm\:hover\:align-text-top:hover{
    vertical-align     : text-top !important;
  }

  .sm\:hover\:align-text-bottom:hover{
    vertical-align     : text-bottom !important;
  }

  .sm\:focus\:align-baseline:focus{
    vertical-align     : baseline !important;
  }

  .sm\:focus\:align-top:focus{
    vertical-align     : top !important;
  }

  .sm\:focus\:align-middle:focus{
    vertical-align     : middle !important;
  }

  .sm\:focus\:align-bottom:focus{
    vertical-align     : bottom !important;
  }

  .sm\:focus\:align-text-top:focus{
    vertical-align     : text-top !important;
  }

  .sm\:focus\:align-text-bottom:focus{
    vertical-align     : text-bottom !important;
  }

  .sm\:visible{
    visibility     : visible !important;
  }

  .sm\:invisible{
    visibility     : hidden !important;
  }

  .group:hover .sm\:group-hover\:visible{
    visibility     : visible !important;
  }

  .group:hover .sm\:group-hover\:invisible{
    visibility     : hidden !important;
  }

  .sm\:hover\:visible:hover{
    visibility     : visible !important;
  }

  .sm\:hover\:invisible:hover{
    visibility     : hidden !important;
  }

  .sm\:focus\:visible:focus{
    visibility     : visible !important;
  }

  .sm\:focus\:invisible:focus{
    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;
  }

  .group:hover .sm\:group-hover\:whitespace-normal{
    white-space     : normal !important;
  }

  .group:hover .sm\:group-hover\:whitespace-no-wrap{
    white-space     : nowrap !important;
  }

  .group:hover .sm\:group-hover\:whitespace-pre{
    white-space     : pre !important;
  }

  .group:hover .sm\:group-hover\:whitespace-pre-line{
    white-space     : pre-line !important;
  }

  .group:hover .sm\:group-hover\:whitespace-pre-wrap{
    white-space     : pre-wrap !important;
  }

  .sm\:hover\:whitespace-normal:hover{
    white-space     : normal !important;
  }

  .sm\:hover\:whitespace-no-wrap:hover{
    white-space     : nowrap !important;
  }

  .sm\:hover\:whitespace-pre:hover{
    white-space     : pre !important;
  }

  .sm\:hover\:whitespace-pre-line:hover{
    white-space     : pre-line !important;
  }

  .sm\:hover\:whitespace-pre-wrap:hover{
    white-space     : pre-wrap !important;
  }

  .sm\:focus\:whitespace-normal:focus{
    white-space     : normal !important;
  }

  .sm\:focus\:whitespace-no-wrap:focus{
    white-space     : nowrap !important;
  }

  .sm\:focus\:whitespace-pre:focus{
    white-space     : pre !important;
  }

  .sm\:focus\:whitespace-pre-line:focus{
    white-space     : pre-line !important;
  }

  .sm\:focus\:whitespace-pre-wrap:focus{
    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;
  }

  .group:hover .sm\:group-hover\:break-normal{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .group:hover .sm\:group-hover\:break-words{
    overflow-wrap     : break-word !important;
  }

  .group:hover .sm\:group-hover\:break-all{
    word-break     : break-all !important;
  }

  .group:hover .sm\:group-hover\:truncate{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .sm\:hover\:break-normal:hover{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .sm\:hover\:break-words:hover{
    overflow-wrap     : break-word !important;
  }

  .sm\:hover\:break-all:hover{
    word-break     : break-all !important;
  }

  .sm\:hover\:truncate:hover{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .sm\:focus\:break-normal:focus{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .sm\:focus\:break-words:focus{
    overflow-wrap     : break-word !important;
  }

  .sm\:focus\:break-all:focus{
    word-break     : break-all !important;
  }

  .sm\:focus\:truncate:focus{
    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-20{
    width     : 5rem !important;
  }

  .sm\:w-24{
    width     : 6rem !important;
  }

  .sm\:w-28{
    width     : 7rem !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-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-96{
    width     : 24rem !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-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;
  }

  .group:hover .sm\:group-hover\:w-0{
    width     : 0 !important;
  }

  .group:hover .sm\:group-hover\:w-1{
    width     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:w-2{
    width     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:w-3{
    width     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:w-4{
    width     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:w-5{
    width     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:w-6{
    width     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:w-7{
    width     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:w-8{
    width     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:w-9{
    width     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:w-10{
    width     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:w-11{
    width     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:w-12{
    width     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:w-13{
    width     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:w-14{
    width     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:w-15{
    width     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:w-16{
    width     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:w-20{
    width     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:w-24{
    width     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:w-28{
    width     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:w-32{
    width     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:w-36{
    width     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:w-40{
    width     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:w-44{
    width     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:w-48{
    width     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:w-52{
    width     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:w-56{
    width     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:w-60{
    width     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:w-64{
    width     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:w-72{
    width     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:w-80{
    width     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:w-96{
    width     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:w-auto{
    width     : auto !important;
  }

  .group:hover .sm\:group-hover\:w-px{
    width     : 1px !important;
  }

  .group:hover .sm\:group-hover\:w-0\.5{
    width     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:w-1\.5{
    width     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:w-2\.5{
    width     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:w-3\.5{
    width     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:w-1\/2{
    width     : 50% !important;
  }

  .group:hover .sm\:group-hover\:w-1\/3{
    width     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-2\/3{
    width     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-1\/4{
    width     : 25% !important;
  }

  .group:hover .sm\:group-hover\:w-2\/4{
    width     : 50% !important;
  }

  .group:hover .sm\:group-hover\:w-3\/4{
    width     : 75% !important;
  }

  .group:hover .sm\:group-hover\:w-1\/5{
    width     : 20% !important;
  }

  .group:hover .sm\:group-hover\:w-2\/5{
    width     : 40% !important;
  }

  .group:hover .sm\:group-hover\:w-3\/5{
    width     : 60% !important;
  }

  .group:hover .sm\:group-hover\:w-4\/5{
    width     : 80% !important;
  }

  .group:hover .sm\:group-hover\:w-1\/6{
    width     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-2\/6{
    width     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-3\/6{
    width     : 50% !important;
  }

  .group:hover .sm\:group-hover\:w-4\/6{
    width     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-5\/6{
    width     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-1\/12{
    width     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-2\/12{
    width     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-3\/12{
    width     : 25% !important;
  }

  .group:hover .sm\:group-hover\:w-4\/12{
    width     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-5\/12{
    width     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-6\/12{
    width     : 50% !important;
  }

  .group:hover .sm\:group-hover\:w-7\/12{
    width     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-8\/12{
    width     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-9\/12{
    width     : 75% !important;
  }

  .group:hover .sm\:group-hover\:w-10\/12{
    width     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:w-11\/12{
    width     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:w-full{
    width     : 100% !important;
  }

  .group:hover .sm\:group-hover\:w-screen{
    width     : 100vw !important;
  }

  .group:hover .sm\:group-hover\:w-min-content{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .group:hover .sm\:group-hover\:w-max-content{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .sm\:hover\:w-0:hover{
    width     : 0 !important;
  }

  .sm\:hover\:w-1:hover{
    width     : 0.25rem !important;
  }

  .sm\:hover\:w-2:hover{
    width     : 0.5rem !important;
  }

  .sm\:hover\:w-3:hover{
    width     : 0.75rem !important;
  }

  .sm\:hover\:w-4:hover{
    width     : 1rem !important;
  }

  .sm\:hover\:w-5:hover{
    width     : 1.25rem !important;
  }

  .sm\:hover\:w-6:hover{
    width     : 1.5rem !important;
  }

  .sm\:hover\:w-7:hover{
    width     : 1.75rem !important;
  }

  .sm\:hover\:w-8:hover{
    width     : 2rem !important;
  }

  .sm\:hover\:w-9:hover{
    width     : 2.25rem !important;
  }

  .sm\:hover\:w-10:hover{
    width     : 2.5rem !important;
  }

  .sm\:hover\:w-11:hover{
    width     : 2.75rem !important;
  }

  .sm\:hover\:w-12:hover{
    width     : 3rem !important;
  }

  .sm\:hover\:w-13:hover{
    width     : 3.25rem !important;
  }

  .sm\:hover\:w-14:hover{
    width     : 3.5rem !important;
  }

  .sm\:hover\:w-15:hover{
    width     : 3.75rem !important;
  }

  .sm\:hover\:w-16:hover{
    width     : 4rem !important;
  }

  .sm\:hover\:w-20:hover{
    width     : 5rem !important;
  }

  .sm\:hover\:w-24:hover{
    width     : 6rem !important;
  }

  .sm\:hover\:w-28:hover{
    width     : 7rem !important;
  }

  .sm\:hover\:w-32:hover{
    width     : 8rem !important;
  }

  .sm\:hover\:w-36:hover{
    width     : 9rem !important;
  }

  .sm\:hover\:w-40:hover{
    width     : 10rem !important;
  }

  .sm\:hover\:w-44:hover{
    width     : 11rem !important;
  }

  .sm\:hover\:w-48:hover{
    width     : 12rem !important;
  }

  .sm\:hover\:w-52:hover{
    width     : 13rem !important;
  }

  .sm\:hover\:w-56:hover{
    width     : 14rem !important;
  }

  .sm\:hover\:w-60:hover{
    width     : 15rem !important;
  }

  .sm\:hover\:w-64:hover{
    width     : 16rem !important;
  }

  .sm\:hover\:w-72:hover{
    width     : 18rem !important;
  }

  .sm\:hover\:w-80:hover{
    width     : 20rem !important;
  }

  .sm\:hover\:w-96:hover{
    width     : 24rem !important;
  }

  .sm\:hover\:w-auto:hover{
    width     : auto !important;
  }

  .sm\:hover\:w-px:hover{
    width     : 1px !important;
  }

  .sm\:hover\:w-0\.5:hover{
    width     : 0.125rem !important;
  }

  .sm\:hover\:w-1\.5:hover{
    width     : 0.375rem !important;
  }

  .sm\:hover\:w-2\.5:hover{
    width     : 0.625rem !important;
  }

  .sm\:hover\:w-3\.5:hover{
    width     : 0.875rem !important;
  }

  .sm\:hover\:w-1\/2:hover{
    width     : 50% !important;
  }

  .sm\:hover\:w-1\/3:hover{
    width     : 33.333333% !important;
  }

  .sm\:hover\:w-2\/3:hover{
    width     : 66.666667% !important;
  }

  .sm\:hover\:w-1\/4:hover{
    width     : 25% !important;
  }

  .sm\:hover\:w-2\/4:hover{
    width     : 50% !important;
  }

  .sm\:hover\:w-3\/4:hover{
    width     : 75% !important;
  }

  .sm\:hover\:w-1\/5:hover{
    width     : 20% !important;
  }

  .sm\:hover\:w-2\/5:hover{
    width     : 40% !important;
  }

  .sm\:hover\:w-3\/5:hover{
    width     : 60% !important;
  }

  .sm\:hover\:w-4\/5:hover{
    width     : 80% !important;
  }

  .sm\:hover\:w-1\/6:hover{
    width     : 16.666667% !important;
  }

  .sm\:hover\:w-2\/6:hover{
    width     : 33.333333% !important;
  }

  .sm\:hover\:w-3\/6:hover{
    width     : 50% !important;
  }

  .sm\:hover\:w-4\/6:hover{
    width     : 66.666667% !important;
  }

  .sm\:hover\:w-5\/6:hover{
    width     : 83.333333% !important;
  }

  .sm\:hover\:w-1\/12:hover{
    width     : 8.333333% !important;
  }

  .sm\:hover\:w-2\/12:hover{
    width     : 16.666667% !important;
  }

  .sm\:hover\:w-3\/12:hover{
    width     : 25% !important;
  }

  .sm\:hover\:w-4\/12:hover{
    width     : 33.333333% !important;
  }

  .sm\:hover\:w-5\/12:hover{
    width     : 41.666667% !important;
  }

  .sm\:hover\:w-6\/12:hover{
    width     : 50% !important;
  }

  .sm\:hover\:w-7\/12:hover{
    width     : 58.333333% !important;
  }

  .sm\:hover\:w-8\/12:hover{
    width     : 66.666667% !important;
  }

  .sm\:hover\:w-9\/12:hover{
    width     : 75% !important;
  }

  .sm\:hover\:w-10\/12:hover{
    width     : 83.333333% !important;
  }

  .sm\:hover\:w-11\/12:hover{
    width     : 91.666667% !important;
  }

  .sm\:hover\:w-full:hover{
    width     : 100% !important;
  }

  .sm\:hover\:w-screen:hover{
    width     : 100vw !important;
  }

  .sm\:hover\:w-min-content:hover{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .sm\:hover\:w-max-content:hover{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .sm\:focus\:w-0:focus{
    width     : 0 !important;
  }

  .sm\:focus\:w-1:focus{
    width     : 0.25rem !important;
  }

  .sm\:focus\:w-2:focus{
    width     : 0.5rem !important;
  }

  .sm\:focus\:w-3:focus{
    width     : 0.75rem !important;
  }

  .sm\:focus\:w-4:focus{
    width     : 1rem !important;
  }

  .sm\:focus\:w-5:focus{
    width     : 1.25rem !important;
  }

  .sm\:focus\:w-6:focus{
    width     : 1.5rem !important;
  }

  .sm\:focus\:w-7:focus{
    width     : 1.75rem !important;
  }

  .sm\:focus\:w-8:focus{
    width     : 2rem !important;
  }

  .sm\:focus\:w-9:focus{
    width     : 2.25rem !important;
  }

  .sm\:focus\:w-10:focus{
    width     : 2.5rem !important;
  }

  .sm\:focus\:w-11:focus{
    width     : 2.75rem !important;
  }

  .sm\:focus\:w-12:focus{
    width     : 3rem !important;
  }

  .sm\:focus\:w-13:focus{
    width     : 3.25rem !important;
  }

  .sm\:focus\:w-14:focus{
    width     : 3.5rem !important;
  }

  .sm\:focus\:w-15:focus{
    width     : 3.75rem !important;
  }

  .sm\:focus\:w-16:focus{
    width     : 4rem !important;
  }

  .sm\:focus\:w-20:focus{
    width     : 5rem !important;
  }

  .sm\:focus\:w-24:focus{
    width     : 6rem !important;
  }

  .sm\:focus\:w-28:focus{
    width     : 7rem !important;
  }

  .sm\:focus\:w-32:focus{
    width     : 8rem !important;
  }

  .sm\:focus\:w-36:focus{
    width     : 9rem !important;
  }

  .sm\:focus\:w-40:focus{
    width     : 10rem !important;
  }

  .sm\:focus\:w-44:focus{
    width     : 11rem !important;
  }

  .sm\:focus\:w-48:focus{
    width     : 12rem !important;
  }

  .sm\:focus\:w-52:focus{
    width     : 13rem !important;
  }

  .sm\:focus\:w-56:focus{
    width     : 14rem !important;
  }

  .sm\:focus\:w-60:focus{
    width     : 15rem !important;
  }

  .sm\:focus\:w-64:focus{
    width     : 16rem !important;
  }

  .sm\:focus\:w-72:focus{
    width     : 18rem !important;
  }

  .sm\:focus\:w-80:focus{
    width     : 20rem !important;
  }

  .sm\:focus\:w-96:focus{
    width     : 24rem !important;
  }

  .sm\:focus\:w-auto:focus{
    width     : auto !important;
  }

  .sm\:focus\:w-px:focus{
    width     : 1px !important;
  }

  .sm\:focus\:w-0\.5:focus{
    width     : 0.125rem !important;
  }

  .sm\:focus\:w-1\.5:focus{
    width     : 0.375rem !important;
  }

  .sm\:focus\:w-2\.5:focus{
    width     : 0.625rem !important;
  }

  .sm\:focus\:w-3\.5:focus{
    width     : 0.875rem !important;
  }

  .sm\:focus\:w-1\/2:focus{
    width     : 50% !important;
  }

  .sm\:focus\:w-1\/3:focus{
    width     : 33.333333% !important;
  }

  .sm\:focus\:w-2\/3:focus{
    width     : 66.666667% !important;
  }

  .sm\:focus\:w-1\/4:focus{
    width     : 25% !important;
  }

  .sm\:focus\:w-2\/4:focus{
    width     : 50% !important;
  }

  .sm\:focus\:w-3\/4:focus{
    width     : 75% !important;
  }

  .sm\:focus\:w-1\/5:focus{
    width     : 20% !important;
  }

  .sm\:focus\:w-2\/5:focus{
    width     : 40% !important;
  }

  .sm\:focus\:w-3\/5:focus{
    width     : 60% !important;
  }

  .sm\:focus\:w-4\/5:focus{
    width     : 80% !important;
  }

  .sm\:focus\:w-1\/6:focus{
    width     : 16.666667% !important;
  }

  .sm\:focus\:w-2\/6:focus{
    width     : 33.333333% !important;
  }

  .sm\:focus\:w-3\/6:focus{
    width     : 50% !important;
  }

  .sm\:focus\:w-4\/6:focus{
    width     : 66.666667% !important;
  }

  .sm\:focus\:w-5\/6:focus{
    width     : 83.333333% !important;
  }

  .sm\:focus\:w-1\/12:focus{
    width     : 8.333333% !important;
  }

  .sm\:focus\:w-2\/12:focus{
    width     : 16.666667% !important;
  }

  .sm\:focus\:w-3\/12:focus{
    width     : 25% !important;
  }

  .sm\:focus\:w-4\/12:focus{
    width     : 33.333333% !important;
  }

  .sm\:focus\:w-5\/12:focus{
    width     : 41.666667% !important;
  }

  .sm\:focus\:w-6\/12:focus{
    width     : 50% !important;
  }

  .sm\:focus\:w-7\/12:focus{
    width     : 58.333333% !important;
  }

  .sm\:focus\:w-8\/12:focus{
    width     : 66.666667% !important;
  }

  .sm\:focus\:w-9\/12:focus{
    width     : 75% !important;
  }

  .sm\:focus\:w-10\/12:focus{
    width     : 83.333333% !important;
  }

  .sm\:focus\:w-11\/12:focus{
    width     : 91.666667% !important;
  }

  .sm\:focus\:w-full:focus{
    width     : 100% !important;
  }

  .sm\:focus\:w-screen:focus{
    width     : 100vw !important;
  }

  .sm\:focus\:w-min-content:focus{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .sm\:focus\:w-max-content:focus{
    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-auto{
    z-index     : auto !important;
  }

  .group:hover .sm\:group-hover\:z-0{
    z-index     : 0 !important;
  }

  .group:hover .sm\:group-hover\:z-10{
    z-index     : 10 !important;
  }

  .group:hover .sm\:group-hover\:z-20{
    z-index     : 20 !important;
  }

  .group:hover .sm\:group-hover\:z-30{
    z-index     : 30 !important;
  }

  .group:hover .sm\:group-hover\:z-40{
    z-index     : 40 !important;
  }

  .group:hover .sm\:group-hover\:z-50{
    z-index     : 50 !important;
  }

  .group:hover .sm\:group-hover\:z-auto{
    z-index     : auto !important;
  }

  .sm\:hover\:z-0:hover{
    z-index     : 0 !important;
  }

  .sm\:hover\:z-10:hover{
    z-index     : 10 !important;
  }

  .sm\:hover\:z-20:hover{
    z-index     : 20 !important;
  }

  .sm\:hover\:z-30:hover{
    z-index     : 30 !important;
  }

  .sm\:hover\:z-40:hover{
    z-index     : 40 !important;
  }

  .sm\:hover\:z-50:hover{
    z-index     : 50 !important;
  }

  .sm\:hover\:z-auto:hover{
    z-index     : auto !important;
  }

  .sm\:focus\:z-0:focus{
    z-index     : 0 !important;
  }

  .sm\:focus\:z-10:focus{
    z-index     : 10 !important;
  }

  .sm\:focus\:z-20:focus{
    z-index     : 20 !important;
  }

  .sm\:focus\:z-30:focus{
    z-index     : 30 !important;
  }

  .sm\:focus\:z-40:focus{
    z-index     : 40 !important;
  }

  .sm\:focus\:z-50:focus{
    z-index     : 50 !important;
  }

  .sm\:focus\:z-auto:focus{
    z-index     : auto !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-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .sm\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .sm\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !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-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-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !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\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .sm\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .sm\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .sm\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .sm\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .sm\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .sm\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .sm\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .sm\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .sm\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .sm\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .sm\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .sm\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .sm\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .sm\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .sm\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .sm\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .sm\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .sm\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .sm\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .sm\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .sm\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .sm\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .sm\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .sm\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .sm\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .sm\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .sm\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .sm\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .sm\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .sm\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .sm\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .sm\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .sm\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .sm\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .sm\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .sm\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .sm\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .sm\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .sm\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .sm\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .sm\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .sm\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .sm\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .sm\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .sm\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .sm\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .sm\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .sm\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .sm\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .sm\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .sm\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .sm\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .sm\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .sm\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .sm\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .sm\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .sm\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .sm\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .sm\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .sm\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .sm\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .sm\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .sm\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .sm\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .sm\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .sm\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .sm\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .sm\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .sm\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .sm\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .sm\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .sm\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .sm\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .sm\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .sm\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .sm\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .sm\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .sm\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .sm\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .sm\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .sm\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .sm\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .sm\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .sm\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .sm\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .sm\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .sm\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .sm\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .sm\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .sm\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .sm\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .group:hover .sm\:group-hover\:gap-0{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .group:hover .sm\:group-hover\:gap-1{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:gap-2{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:gap-3{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:gap-4{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:gap-5{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:gap-6{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:gap-7{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:gap-8{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:gap-9{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:gap-10{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:gap-11{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:gap-12{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:gap-13{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:gap-14{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:gap-15{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:gap-16{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:gap-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:gap-32{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:gap-36{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:gap-40{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:gap-44{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:gap-48{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:gap-52{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:gap-56{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:gap-60{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:gap-64{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:gap-72{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:gap-80{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:gap-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:gap-px{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .group:hover .sm\:group-hover\:gap-0\.5{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:gap-1\.5{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:gap-2\.5{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:gap-3\.5{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/2{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/3{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-2\/3{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/4{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:gap-2\/4{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:gap-3\/4{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/5{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .group:hover .sm\:group-hover\:gap-2\/5{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .group:hover .sm\:group-hover\:gap-3\/5{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .group:hover .sm\:group-hover\:gap-4\/5{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/6{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-2\/6{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-3\/6{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:gap-4\/6{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-5\/6{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-1\/12{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-2\/12{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-3\/12{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:gap-4\/12{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-5\/12{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-6\/12{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:gap-7\/12{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-8\/12{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-9\/12{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:gap-10\/12{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:gap-11\/12{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:gap-full{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .group:hover .sm\:group-hover\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .group:hover .sm\:group-hover\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .sm\:hover\:gap-0:hover{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .sm\:hover\:gap-1:hover{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .sm\:hover\:gap-2:hover{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .sm\:hover\:gap-3:hover{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .sm\:hover\:gap-4:hover{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .sm\:hover\:gap-5:hover{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .sm\:hover\:gap-6:hover{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .sm\:hover\:gap-7:hover{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .sm\:hover\:gap-8:hover{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .sm\:hover\:gap-9:hover{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .sm\:hover\:gap-10:hover{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .sm\:hover\:gap-11:hover{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .sm\:hover\:gap-12:hover{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .sm\:hover\:gap-13:hover{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .sm\:hover\:gap-14:hover{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .sm\:hover\:gap-15:hover{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .sm\:hover\:gap-16:hover{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .sm\:hover\:gap-20:hover{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .sm\:hover\:gap-24:hover{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .sm\:hover\:gap-28:hover{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .sm\:hover\:gap-32:hover{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .sm\:hover\:gap-36:hover{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .sm\:hover\:gap-40:hover{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .sm\:hover\:gap-44:hover{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .sm\:hover\:gap-48:hover{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .sm\:hover\:gap-52:hover{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .sm\:hover\:gap-56:hover{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .sm\:hover\:gap-60:hover{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .sm\:hover\:gap-64:hover{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .sm\:hover\:gap-72:hover{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .sm\:hover\:gap-80:hover{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .sm\:hover\:gap-96:hover{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .sm\:hover\:gap-px:hover{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .sm\:hover\:gap-0\.5:hover{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .sm\:hover\:gap-1\.5:hover{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .sm\:hover\:gap-2\.5:hover{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .sm\:hover\:gap-3\.5:hover{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .sm\:hover\:gap-1\/2:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:hover\:gap-1\/3:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:hover\:gap-2\/3:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:hover\:gap-1\/4:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .sm\:hover\:gap-2\/4:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:hover\:gap-3\/4:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .sm\:hover\:gap-1\/5:hover{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .sm\:hover\:gap-2\/5:hover{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .sm\:hover\:gap-3\/5:hover{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .sm\:hover\:gap-4\/5:hover{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .sm\:hover\:gap-1\/6:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .sm\:hover\:gap-2\/6:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:hover\:gap-3\/6:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:hover\:gap-4\/6:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:hover\:gap-5\/6:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .sm\:hover\:gap-1\/12:hover{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .sm\:hover\:gap-2\/12:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .sm\:hover\:gap-3\/12:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .sm\:hover\:gap-4\/12:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:hover\:gap-5\/12:hover{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .sm\:hover\:gap-6\/12:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:hover\:gap-7\/12:hover{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .sm\:hover\:gap-8\/12:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:hover\:gap-9\/12:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .sm\:hover\:gap-10\/12:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .sm\:hover\:gap-11\/12:hover{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .sm\:hover\:gap-full:hover{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .sm\:hover\:col-gap-0:hover{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .sm\:hover\:col-gap-1:hover{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .sm\:hover\:col-gap-2:hover{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .sm\:hover\:col-gap-3:hover{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .sm\:hover\:col-gap-4:hover{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .sm\:hover\:col-gap-5:hover{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .sm\:hover\:col-gap-6:hover{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .sm\:hover\:col-gap-7:hover{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .sm\:hover\:col-gap-8:hover{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .sm\:hover\:col-gap-9:hover{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .sm\:hover\:col-gap-10:hover{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .sm\:hover\:col-gap-11:hover{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .sm\:hover\:col-gap-12:hover{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .sm\:hover\:col-gap-13:hover{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .sm\:hover\:col-gap-14:hover{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .sm\:hover\:col-gap-15:hover{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .sm\:hover\:col-gap-16:hover{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .sm\:hover\:col-gap-20:hover{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .sm\:hover\:col-gap-24:hover{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .sm\:hover\:col-gap-28:hover{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .sm\:hover\:col-gap-32:hover{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .sm\:hover\:col-gap-36:hover{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .sm\:hover\:col-gap-40:hover{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .sm\:hover\:col-gap-44:hover{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .sm\:hover\:col-gap-48:hover{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .sm\:hover\:col-gap-52:hover{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .sm\:hover\:col-gap-56:hover{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .sm\:hover\:col-gap-60:hover{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .sm\:hover\:col-gap-64:hover{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .sm\:hover\:col-gap-72:hover{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .sm\:hover\:col-gap-80:hover{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .sm\:hover\:col-gap-96:hover{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .sm\:hover\:col-gap-px:hover{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .sm\:hover\:col-gap-0\.5:hover{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .sm\:hover\:col-gap-1\.5:hover{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .sm\:hover\:col-gap-2\.5:hover{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .sm\:hover\:col-gap-3\.5:hover{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .sm\:hover\:col-gap-1\/2:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:hover\:col-gap-1\/3:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:hover\:col-gap-2\/3:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:hover\:col-gap-1\/4:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:hover\:col-gap-2\/4:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:hover\:col-gap-3\/4:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:hover\:col-gap-1\/5:hover{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .sm\:hover\:col-gap-2\/5:hover{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .sm\:hover\:col-gap-3\/5:hover{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .sm\:hover\:col-gap-4\/5:hover{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .sm\:hover\:col-gap-1\/6:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:hover\:col-gap-2\/6:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:hover\:col-gap-3\/6:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:hover\:col-gap-4\/6:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:hover\:col-gap-5\/6:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:hover\:col-gap-1\/12:hover{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .sm\:hover\:col-gap-2\/12:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:hover\:col-gap-3\/12:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:hover\:col-gap-4\/12:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:hover\:col-gap-5\/12:hover{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .sm\:hover\:col-gap-6\/12:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:hover\:col-gap-7\/12:hover{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .sm\:hover\:col-gap-8\/12:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:hover\:col-gap-9\/12:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:hover\:col-gap-10\/12:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:hover\:col-gap-11\/12:hover{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .sm\:hover\:col-gap-full:hover{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .sm\:hover\:row-gap-0:hover{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .sm\:hover\:row-gap-1:hover{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .sm\:hover\:row-gap-2:hover{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .sm\:hover\:row-gap-3:hover{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .sm\:hover\:row-gap-4:hover{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .sm\:hover\:row-gap-5:hover{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .sm\:hover\:row-gap-6:hover{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .sm\:hover\:row-gap-7:hover{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .sm\:hover\:row-gap-8:hover{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .sm\:hover\:row-gap-9:hover{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .sm\:hover\:row-gap-10:hover{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .sm\:hover\:row-gap-11:hover{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .sm\:hover\:row-gap-12:hover{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .sm\:hover\:row-gap-13:hover{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .sm\:hover\:row-gap-14:hover{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .sm\:hover\:row-gap-15:hover{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .sm\:hover\:row-gap-16:hover{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .sm\:hover\:row-gap-20:hover{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .sm\:hover\:row-gap-24:hover{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .sm\:hover\:row-gap-28:hover{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .sm\:hover\:row-gap-32:hover{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .sm\:hover\:row-gap-36:hover{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .sm\:hover\:row-gap-40:hover{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .sm\:hover\:row-gap-44:hover{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .sm\:hover\:row-gap-48:hover{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .sm\:hover\:row-gap-52:hover{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .sm\:hover\:row-gap-56:hover{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .sm\:hover\:row-gap-60:hover{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .sm\:hover\:row-gap-64:hover{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .sm\:hover\:row-gap-72:hover{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .sm\:hover\:row-gap-80:hover{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .sm\:hover\:row-gap-96:hover{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .sm\:hover\:row-gap-px:hover{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .sm\:hover\:row-gap-0\.5:hover{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .sm\:hover\:row-gap-1\.5:hover{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .sm\:hover\:row-gap-2\.5:hover{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .sm\:hover\:row-gap-3\.5:hover{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .sm\:hover\:row-gap-1\/2:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:hover\:row-gap-1\/3:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:hover\:row-gap-2\/3:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:hover\:row-gap-1\/4:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:hover\:row-gap-2\/4:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:hover\:row-gap-3\/4:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:hover\:row-gap-1\/5:hover{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .sm\:hover\:row-gap-2\/5:hover{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .sm\:hover\:row-gap-3\/5:hover{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .sm\:hover\:row-gap-4\/5:hover{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .sm\:hover\:row-gap-1\/6:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:hover\:row-gap-2\/6:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:hover\:row-gap-3\/6:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:hover\:row-gap-4\/6:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:hover\:row-gap-5\/6:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:hover\:row-gap-1\/12:hover{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .sm\:hover\:row-gap-2\/12:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:hover\:row-gap-3\/12:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:hover\:row-gap-4\/12:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:hover\:row-gap-5\/12:hover{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .sm\:hover\:row-gap-6\/12:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:hover\:row-gap-7\/12:hover{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .sm\:hover\:row-gap-8\/12:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:hover\:row-gap-9\/12:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:hover\:row-gap-10\/12:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:hover\:row-gap-11\/12:hover{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .sm\:hover\:row-gap-full:hover{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .sm\:focus\:gap-0:focus{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .sm\:focus\:gap-1:focus{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .sm\:focus\:gap-2:focus{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .sm\:focus\:gap-3:focus{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .sm\:focus\:gap-4:focus{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .sm\:focus\:gap-5:focus{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .sm\:focus\:gap-6:focus{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .sm\:focus\:gap-7:focus{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .sm\:focus\:gap-8:focus{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .sm\:focus\:gap-9:focus{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .sm\:focus\:gap-10:focus{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .sm\:focus\:gap-11:focus{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .sm\:focus\:gap-12:focus{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .sm\:focus\:gap-13:focus{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .sm\:focus\:gap-14:focus{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .sm\:focus\:gap-15:focus{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .sm\:focus\:gap-16:focus{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .sm\:focus\:gap-20:focus{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .sm\:focus\:gap-24:focus{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .sm\:focus\:gap-28:focus{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .sm\:focus\:gap-32:focus{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .sm\:focus\:gap-36:focus{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .sm\:focus\:gap-40:focus{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .sm\:focus\:gap-44:focus{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .sm\:focus\:gap-48:focus{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .sm\:focus\:gap-52:focus{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .sm\:focus\:gap-56:focus{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .sm\:focus\:gap-60:focus{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .sm\:focus\:gap-64:focus{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .sm\:focus\:gap-72:focus{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .sm\:focus\:gap-80:focus{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .sm\:focus\:gap-96:focus{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .sm\:focus\:gap-px:focus{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .sm\:focus\:gap-0\.5:focus{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .sm\:focus\:gap-1\.5:focus{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .sm\:focus\:gap-2\.5:focus{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .sm\:focus\:gap-3\.5:focus{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .sm\:focus\:gap-1\/2:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:focus\:gap-1\/3:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:focus\:gap-2\/3:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:focus\:gap-1\/4:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .sm\:focus\:gap-2\/4:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:focus\:gap-3\/4:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .sm\:focus\:gap-1\/5:focus{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .sm\:focus\:gap-2\/5:focus{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .sm\:focus\:gap-3\/5:focus{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .sm\:focus\:gap-4\/5:focus{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .sm\:focus\:gap-1\/6:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .sm\:focus\:gap-2\/6:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:focus\:gap-3\/6:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:focus\:gap-4\/6:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:focus\:gap-5\/6:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .sm\:focus\:gap-1\/12:focus{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .sm\:focus\:gap-2\/12:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .sm\:focus\:gap-3\/12:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .sm\:focus\:gap-4\/12:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .sm\:focus\:gap-5\/12:focus{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .sm\:focus\:gap-6\/12:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .sm\:focus\:gap-7\/12:focus{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .sm\:focus\:gap-8\/12:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .sm\:focus\:gap-9\/12:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .sm\:focus\:gap-10\/12:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .sm\:focus\:gap-11\/12:focus{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .sm\:focus\:gap-full:focus{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .sm\:focus\:col-gap-0:focus{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .sm\:focus\:col-gap-1:focus{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .sm\:focus\:col-gap-2:focus{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .sm\:focus\:col-gap-3:focus{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .sm\:focus\:col-gap-4:focus{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .sm\:focus\:col-gap-5:focus{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .sm\:focus\:col-gap-6:focus{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .sm\:focus\:col-gap-7:focus{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .sm\:focus\:col-gap-8:focus{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .sm\:focus\:col-gap-9:focus{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .sm\:focus\:col-gap-10:focus{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .sm\:focus\:col-gap-11:focus{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .sm\:focus\:col-gap-12:focus{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .sm\:focus\:col-gap-13:focus{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .sm\:focus\:col-gap-14:focus{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .sm\:focus\:col-gap-15:focus{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .sm\:focus\:col-gap-16:focus{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .sm\:focus\:col-gap-20:focus{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .sm\:focus\:col-gap-24:focus{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .sm\:focus\:col-gap-28:focus{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .sm\:focus\:col-gap-32:focus{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .sm\:focus\:col-gap-36:focus{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .sm\:focus\:col-gap-40:focus{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .sm\:focus\:col-gap-44:focus{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .sm\:focus\:col-gap-48:focus{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .sm\:focus\:col-gap-52:focus{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .sm\:focus\:col-gap-56:focus{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .sm\:focus\:col-gap-60:focus{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .sm\:focus\:col-gap-64:focus{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .sm\:focus\:col-gap-72:focus{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .sm\:focus\:col-gap-80:focus{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .sm\:focus\:col-gap-96:focus{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .sm\:focus\:col-gap-px:focus{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .sm\:focus\:col-gap-0\.5:focus{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .sm\:focus\:col-gap-1\.5:focus{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .sm\:focus\:col-gap-2\.5:focus{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .sm\:focus\:col-gap-3\.5:focus{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .sm\:focus\:col-gap-1\/2:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:focus\:col-gap-1\/3:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:focus\:col-gap-2\/3:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:focus\:col-gap-1\/4:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:focus\:col-gap-2\/4:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:focus\:col-gap-3\/4:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:focus\:col-gap-1\/5:focus{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .sm\:focus\:col-gap-2\/5:focus{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .sm\:focus\:col-gap-3\/5:focus{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .sm\:focus\:col-gap-4\/5:focus{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .sm\:focus\:col-gap-1\/6:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:focus\:col-gap-2\/6:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:focus\:col-gap-3\/6:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:focus\:col-gap-4\/6:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:focus\:col-gap-5\/6:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:focus\:col-gap-1\/12:focus{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .sm\:focus\:col-gap-2\/12:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .sm\:focus\:col-gap-3\/12:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .sm\:focus\:col-gap-4\/12:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .sm\:focus\:col-gap-5\/12:focus{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .sm\:focus\:col-gap-6\/12:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .sm\:focus\:col-gap-7\/12:focus{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .sm\:focus\:col-gap-8\/12:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .sm\:focus\:col-gap-9\/12:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .sm\:focus\:col-gap-10\/12:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .sm\:focus\:col-gap-11\/12:focus{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .sm\:focus\:col-gap-full:focus{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .sm\:focus\:row-gap-0:focus{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .sm\:focus\:row-gap-1:focus{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .sm\:focus\:row-gap-2:focus{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .sm\:focus\:row-gap-3:focus{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .sm\:focus\:row-gap-4:focus{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .sm\:focus\:row-gap-5:focus{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .sm\:focus\:row-gap-6:focus{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .sm\:focus\:row-gap-7:focus{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .sm\:focus\:row-gap-8:focus{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .sm\:focus\:row-gap-9:focus{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .sm\:focus\:row-gap-10:focus{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .sm\:focus\:row-gap-11:focus{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .sm\:focus\:row-gap-12:focus{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .sm\:focus\:row-gap-13:focus{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .sm\:focus\:row-gap-14:focus{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .sm\:focus\:row-gap-15:focus{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .sm\:focus\:row-gap-16:focus{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .sm\:focus\:row-gap-20:focus{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .sm\:focus\:row-gap-24:focus{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .sm\:focus\:row-gap-28:focus{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .sm\:focus\:row-gap-32:focus{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .sm\:focus\:row-gap-36:focus{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .sm\:focus\:row-gap-40:focus{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .sm\:focus\:row-gap-44:focus{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .sm\:focus\:row-gap-48:focus{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .sm\:focus\:row-gap-52:focus{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .sm\:focus\:row-gap-56:focus{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .sm\:focus\:row-gap-60:focus{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .sm\:focus\:row-gap-64:focus{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .sm\:focus\:row-gap-72:focus{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .sm\:focus\:row-gap-80:focus{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .sm\:focus\:row-gap-96:focus{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .sm\:focus\:row-gap-px:focus{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .sm\:focus\:row-gap-0\.5:focus{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .sm\:focus\:row-gap-1\.5:focus{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .sm\:focus\:row-gap-2\.5:focus{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .sm\:focus\:row-gap-3\.5:focus{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .sm\:focus\:row-gap-1\/2:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:focus\:row-gap-1\/3:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:focus\:row-gap-2\/3:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:focus\:row-gap-1\/4:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:focus\:row-gap-2\/4:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:focus\:row-gap-3\/4:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:focus\:row-gap-1\/5:focus{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .sm\:focus\:row-gap-2\/5:focus{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .sm\:focus\:row-gap-3\/5:focus{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .sm\:focus\:row-gap-4\/5:focus{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .sm\:focus\:row-gap-1\/6:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:focus\:row-gap-2\/6:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:focus\:row-gap-3\/6:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:focus\:row-gap-4\/6:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:focus\:row-gap-5\/6:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:focus\:row-gap-1\/12:focus{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .sm\:focus\:row-gap-2\/12:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .sm\:focus\:row-gap-3\/12:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .sm\:focus\:row-gap-4\/12:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .sm\:focus\:row-gap-5\/12:focus{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .sm\:focus\:row-gap-6\/12:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .sm\:focus\:row-gap-7\/12:focus{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .sm\:focus\:row-gap-8\/12:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .sm\:focus\:row-gap-9\/12:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .sm\:focus\:row-gap-10\/12:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .sm\:focus\:row-gap-11\/12:focus{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .sm\:focus\:row-gap-full:focus{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !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;
  }

  .group:hover .sm\:group-hover\:grid-flow-row{
    grid-auto-flow     : row !important;
  }

  .group:hover .sm\:group-hover\:grid-flow-col{
    grid-auto-flow     : column !important;
  }

  .group:hover .sm\:group-hover\:grid-flow-row-dense{
    grid-auto-flow     : row dense !important;
  }

  .group:hover .sm\:group-hover\:grid-flow-col-dense{
    grid-auto-flow     : column dense !important;
  }

  .sm\:hover\:grid-flow-row:hover{
    grid-auto-flow     : row !important;
  }

  .sm\:hover\:grid-flow-col:hover{
    grid-auto-flow     : column !important;
  }

  .sm\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow     : row dense !important;
  }

  .sm\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow     : column dense !important;
  }

  .sm\:focus\:grid-flow-row:focus{
    grid-auto-flow     : row !important;
  }

  .sm\:focus\:grid-flow-col:focus{
    grid-auto-flow     : column !important;
  }

  .sm\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow     : row dense !important;
  }

  .sm\:focus\:grid-flow-col-dense:focus{
    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;
  }

  .group:hover .sm\:group-hover\:grid-cols-1{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-2{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-3{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-4{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-5{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-6{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-7{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-8{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-9{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-10{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-11{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-12{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-cols-none{
    grid-template-columns     : none !important;
  }

  .sm\:hover\:grid-cols-1:hover{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-2:hover{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-3:hover{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-4:hover{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-5:hover{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-6:hover{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-7:hover{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-8:hover{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-9:hover{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-10:hover{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-11:hover{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-12:hover{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-cols-none:hover{
    grid-template-columns     : none !important;
  }

  .sm\:focus\:grid-cols-1:focus{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-2:focus{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-3:focus{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-4:focus{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-5:focus{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-6:focus{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-7:focus{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-8:focus{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-9:focus{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-10:focus{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-11:focus{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-12:focus{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-cols-none:focus{
    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;
  }

  .group:hover .sm\:group-hover\:col-auto{
    grid-column     : auto !important;
  }

  .group:hover .sm\:group-hover\:col-span-1{
    grid-column     : span 1 / span 1 !important;
  }

  .group:hover .sm\:group-hover\:col-span-2{
    grid-column     : span 2 / span 2 !important;
  }

  .group:hover .sm\:group-hover\:col-span-3{
    grid-column     : span 3 / span 3 !important;
  }

  .group:hover .sm\:group-hover\:col-span-4{
    grid-column     : span 4 / span 4 !important;
  }

  .group:hover .sm\:group-hover\:col-span-5{
    grid-column     : span 5 / span 5 !important;
  }

  .group:hover .sm\:group-hover\:col-span-6{
    grid-column     : span 6 / span 6 !important;
  }

  .group:hover .sm\:group-hover\:col-span-7{
    grid-column     : span 7 / span 7 !important;
  }

  .group:hover .sm\:group-hover\:col-span-8{
    grid-column     : span 8 / span 8 !important;
  }

  .group:hover .sm\:group-hover\:col-span-9{
    grid-column     : span 9 / span 9 !important;
  }

  .group:hover .sm\:group-hover\:col-span-10{
    grid-column     : span 10 / span 10 !important;
  }

  .group:hover .sm\:group-hover\:col-span-11{
    grid-column     : span 11 / span 11 !important;
  }

  .group:hover .sm\:group-hover\:col-span-12{
    grid-column     : span 12 / span 12 !important;
  }

  .sm\:hover\:col-auto:hover{
    grid-column     : auto !important;
  }

  .sm\:hover\:col-span-1:hover{
    grid-column     : span 1 / span 1 !important;
  }

  .sm\:hover\:col-span-2:hover{
    grid-column     : span 2 / span 2 !important;
  }

  .sm\:hover\:col-span-3:hover{
    grid-column     : span 3 / span 3 !important;
  }

  .sm\:hover\:col-span-4:hover{
    grid-column     : span 4 / span 4 !important;
  }

  .sm\:hover\:col-span-5:hover{
    grid-column     : span 5 / span 5 !important;
  }

  .sm\:hover\:col-span-6:hover{
    grid-column     : span 6 / span 6 !important;
  }

  .sm\:hover\:col-span-7:hover{
    grid-column     : span 7 / span 7 !important;
  }

  .sm\:hover\:col-span-8:hover{
    grid-column     : span 8 / span 8 !important;
  }

  .sm\:hover\:col-span-9:hover{
    grid-column     : span 9 / span 9 !important;
  }

  .sm\:hover\:col-span-10:hover{
    grid-column     : span 10 / span 10 !important;
  }

  .sm\:hover\:col-span-11:hover{
    grid-column     : span 11 / span 11 !important;
  }

  .sm\:hover\:col-span-12:hover{
    grid-column     : span 12 / span 12 !important;
  }

  .sm\:focus\:col-auto:focus{
    grid-column     : auto !important;
  }

  .sm\:focus\:col-span-1:focus{
    grid-column     : span 1 / span 1 !important;
  }

  .sm\:focus\:col-span-2:focus{
    grid-column     : span 2 / span 2 !important;
  }

  .sm\:focus\:col-span-3:focus{
    grid-column     : span 3 / span 3 !important;
  }

  .sm\:focus\:col-span-4:focus{
    grid-column     : span 4 / span 4 !important;
  }

  .sm\:focus\:col-span-5:focus{
    grid-column     : span 5 / span 5 !important;
  }

  .sm\:focus\:col-span-6:focus{
    grid-column     : span 6 / span 6 !important;
  }

  .sm\:focus\:col-span-7:focus{
    grid-column     : span 7 / span 7 !important;
  }

  .sm\:focus\:col-span-8:focus{
    grid-column     : span 8 / span 8 !important;
  }

  .sm\:focus\:col-span-9:focus{
    grid-column     : span 9 / span 9 !important;
  }

  .sm\:focus\:col-span-10:focus{
    grid-column     : span 10 / span 10 !important;
  }

  .sm\:focus\:col-span-11:focus{
    grid-column     : span 11 / span 11 !important;
  }

  .sm\:focus\:col-span-12:focus{
    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;
  }

  .group:hover .sm\:group-hover\:col-start-1{
    grid-column-start     : 1 !important;
  }

  .group:hover .sm\:group-hover\:col-start-2{
    grid-column-start     : 2 !important;
  }

  .group:hover .sm\:group-hover\:col-start-3{
    grid-column-start     : 3 !important;
  }

  .group:hover .sm\:group-hover\:col-start-4{
    grid-column-start     : 4 !important;
  }

  .group:hover .sm\:group-hover\:col-start-5{
    grid-column-start     : 5 !important;
  }

  .group:hover .sm\:group-hover\:col-start-6{
    grid-column-start     : 6 !important;
  }

  .group:hover .sm\:group-hover\:col-start-7{
    grid-column-start     : 7 !important;
  }

  .group:hover .sm\:group-hover\:col-start-8{
    grid-column-start     : 8 !important;
  }

  .group:hover .sm\:group-hover\:col-start-9{
    grid-column-start     : 9 !important;
  }

  .group:hover .sm\:group-hover\:col-start-10{
    grid-column-start     : 10 !important;
  }

  .group:hover .sm\:group-hover\:col-start-11{
    grid-column-start     : 11 !important;
  }

  .group:hover .sm\:group-hover\:col-start-12{
    grid-column-start     : 12 !important;
  }

  .group:hover .sm\:group-hover\:col-start-13{
    grid-column-start     : 13 !important;
  }

  .group:hover .sm\:group-hover\:col-start-auto{
    grid-column-start     : auto !important;
  }

  .sm\:hover\:col-start-1:hover{
    grid-column-start     : 1 !important;
  }

  .sm\:hover\:col-start-2:hover{
    grid-column-start     : 2 !important;
  }

  .sm\:hover\:col-start-3:hover{
    grid-column-start     : 3 !important;
  }

  .sm\:hover\:col-start-4:hover{
    grid-column-start     : 4 !important;
  }

  .sm\:hover\:col-start-5:hover{
    grid-column-start     : 5 !important;
  }

  .sm\:hover\:col-start-6:hover{
    grid-column-start     : 6 !important;
  }

  .sm\:hover\:col-start-7:hover{
    grid-column-start     : 7 !important;
  }

  .sm\:hover\:col-start-8:hover{
    grid-column-start     : 8 !important;
  }

  .sm\:hover\:col-start-9:hover{
    grid-column-start     : 9 !important;
  }

  .sm\:hover\:col-start-10:hover{
    grid-column-start     : 10 !important;
  }

  .sm\:hover\:col-start-11:hover{
    grid-column-start     : 11 !important;
  }

  .sm\:hover\:col-start-12:hover{
    grid-column-start     : 12 !important;
  }

  .sm\:hover\:col-start-13:hover{
    grid-column-start     : 13 !important;
  }

  .sm\:hover\:col-start-auto:hover{
    grid-column-start     : auto !important;
  }

  .sm\:focus\:col-start-1:focus{
    grid-column-start     : 1 !important;
  }

  .sm\:focus\:col-start-2:focus{
    grid-column-start     : 2 !important;
  }

  .sm\:focus\:col-start-3:focus{
    grid-column-start     : 3 !important;
  }

  .sm\:focus\:col-start-4:focus{
    grid-column-start     : 4 !important;
  }

  .sm\:focus\:col-start-5:focus{
    grid-column-start     : 5 !important;
  }

  .sm\:focus\:col-start-6:focus{
    grid-column-start     : 6 !important;
  }

  .sm\:focus\:col-start-7:focus{
    grid-column-start     : 7 !important;
  }

  .sm\:focus\:col-start-8:focus{
    grid-column-start     : 8 !important;
  }

  .sm\:focus\:col-start-9:focus{
    grid-column-start     : 9 !important;
  }

  .sm\:focus\:col-start-10:focus{
    grid-column-start     : 10 !important;
  }

  .sm\:focus\:col-start-11:focus{
    grid-column-start     : 11 !important;
  }

  .sm\:focus\:col-start-12:focus{
    grid-column-start     : 12 !important;
  }

  .sm\:focus\:col-start-13:focus{
    grid-column-start     : 13 !important;
  }

  .sm\:focus\:col-start-auto:focus{
    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;
  }

  .group:hover .sm\:group-hover\:col-end-1{
    grid-column-end     : 1 !important;
  }

  .group:hover .sm\:group-hover\:col-end-2{
    grid-column-end     : 2 !important;
  }

  .group:hover .sm\:group-hover\:col-end-3{
    grid-column-end     : 3 !important;
  }

  .group:hover .sm\:group-hover\:col-end-4{
    grid-column-end     : 4 !important;
  }

  .group:hover .sm\:group-hover\:col-end-5{
    grid-column-end     : 5 !important;
  }

  .group:hover .sm\:group-hover\:col-end-6{
    grid-column-end     : 6 !important;
  }

  .group:hover .sm\:group-hover\:col-end-7{
    grid-column-end     : 7 !important;
  }

  .group:hover .sm\:group-hover\:col-end-8{
    grid-column-end     : 8 !important;
  }

  .group:hover .sm\:group-hover\:col-end-9{
    grid-column-end     : 9 !important;
  }

  .group:hover .sm\:group-hover\:col-end-10{
    grid-column-end     : 10 !important;
  }

  .group:hover .sm\:group-hover\:col-end-11{
    grid-column-end     : 11 !important;
  }

  .group:hover .sm\:group-hover\:col-end-12{
    grid-column-end     : 12 !important;
  }

  .group:hover .sm\:group-hover\:col-end-13{
    grid-column-end     : 13 !important;
  }

  .group:hover .sm\:group-hover\:col-end-auto{
    grid-column-end     : auto !important;
  }

  .sm\:hover\:col-end-1:hover{
    grid-column-end     : 1 !important;
  }

  .sm\:hover\:col-end-2:hover{
    grid-column-end     : 2 !important;
  }

  .sm\:hover\:col-end-3:hover{
    grid-column-end     : 3 !important;
  }

  .sm\:hover\:col-end-4:hover{
    grid-column-end     : 4 !important;
  }

  .sm\:hover\:col-end-5:hover{
    grid-column-end     : 5 !important;
  }

  .sm\:hover\:col-end-6:hover{
    grid-column-end     : 6 !important;
  }

  .sm\:hover\:col-end-7:hover{
    grid-column-end     : 7 !important;
  }

  .sm\:hover\:col-end-8:hover{
    grid-column-end     : 8 !important;
  }

  .sm\:hover\:col-end-9:hover{
    grid-column-end     : 9 !important;
  }

  .sm\:hover\:col-end-10:hover{
    grid-column-end     : 10 !important;
  }

  .sm\:hover\:col-end-11:hover{
    grid-column-end     : 11 !important;
  }

  .sm\:hover\:col-end-12:hover{
    grid-column-end     : 12 !important;
  }

  .sm\:hover\:col-end-13:hover{
    grid-column-end     : 13 !important;
  }

  .sm\:hover\:col-end-auto:hover{
    grid-column-end     : auto !important;
  }

  .sm\:focus\:col-end-1:focus{
    grid-column-end     : 1 !important;
  }

  .sm\:focus\:col-end-2:focus{
    grid-column-end     : 2 !important;
  }

  .sm\:focus\:col-end-3:focus{
    grid-column-end     : 3 !important;
  }

  .sm\:focus\:col-end-4:focus{
    grid-column-end     : 4 !important;
  }

  .sm\:focus\:col-end-5:focus{
    grid-column-end     : 5 !important;
  }

  .sm\:focus\:col-end-6:focus{
    grid-column-end     : 6 !important;
  }

  .sm\:focus\:col-end-7:focus{
    grid-column-end     : 7 !important;
  }

  .sm\:focus\:col-end-8:focus{
    grid-column-end     : 8 !important;
  }

  .sm\:focus\:col-end-9:focus{
    grid-column-end     : 9 !important;
  }

  .sm\:focus\:col-end-10:focus{
    grid-column-end     : 10 !important;
  }

  .sm\:focus\:col-end-11:focus{
    grid-column-end     : 11 !important;
  }

  .sm\:focus\:col-end-12:focus{
    grid-column-end     : 12 !important;
  }

  .sm\:focus\:col-end-13:focus{
    grid-column-end     : 13 !important;
  }

  .sm\:focus\:col-end-auto:focus{
    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;
  }

  .group:hover .sm\:group-hover\:grid-rows-1{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-2{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-3{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-4{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-5{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-6{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .sm\:group-hover\:grid-rows-none{
    grid-template-rows     : none !important;
  }

  .sm\:hover\:grid-rows-1:hover{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-2:hover{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-3:hover{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-4:hover{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-5:hover{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-6:hover{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:hover\:grid-rows-none:hover{
    grid-template-rows     : none !important;
  }

  .sm\:focus\:grid-rows-1:focus{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-2:focus{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-3:focus{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-4:focus{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-5:focus{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-6:focus{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:focus\:grid-rows-none:focus{
    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;
  }

  .group:hover .sm\:group-hover\:row-auto{
    grid-row     : auto !important;
  }

  .group:hover .sm\:group-hover\:row-span-1{
    grid-row     : span 1 / span 1 !important;
  }

  .group:hover .sm\:group-hover\:row-span-2{
    grid-row     : span 2 / span 2 !important;
  }

  .group:hover .sm\:group-hover\:row-span-3{
    grid-row     : span 3 / span 3 !important;
  }

  .group:hover .sm\:group-hover\:row-span-4{
    grid-row     : span 4 / span 4 !important;
  }

  .group:hover .sm\:group-hover\:row-span-5{
    grid-row     : span 5 / span 5 !important;
  }

  .group:hover .sm\:group-hover\:row-span-6{
    grid-row     : span 6 / span 6 !important;
  }

  .sm\:hover\:row-auto:hover{
    grid-row     : auto !important;
  }

  .sm\:hover\:row-span-1:hover{
    grid-row     : span 1 / span 1 !important;
  }

  .sm\:hover\:row-span-2:hover{
    grid-row     : span 2 / span 2 !important;
  }

  .sm\:hover\:row-span-3:hover{
    grid-row     : span 3 / span 3 !important;
  }

  .sm\:hover\:row-span-4:hover{
    grid-row     : span 4 / span 4 !important;
  }

  .sm\:hover\:row-span-5:hover{
    grid-row     : span 5 / span 5 !important;
  }

  .sm\:hover\:row-span-6:hover{
    grid-row     : span 6 / span 6 !important;
  }

  .sm\:focus\:row-auto:focus{
    grid-row     : auto !important;
  }

  .sm\:focus\:row-span-1:focus{
    grid-row     : span 1 / span 1 !important;
  }

  .sm\:focus\:row-span-2:focus{
    grid-row     : span 2 / span 2 !important;
  }

  .sm\:focus\:row-span-3:focus{
    grid-row     : span 3 / span 3 !important;
  }

  .sm\:focus\:row-span-4:focus{
    grid-row     : span 4 / span 4 !important;
  }

  .sm\:focus\:row-span-5:focus{
    grid-row     : span 5 / span 5 !important;
  }

  .sm\:focus\:row-span-6:focus{
    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;
  }

  .group:hover .sm\:group-hover\:row-start-1{
    grid-row-start     : 1 !important;
  }

  .group:hover .sm\:group-hover\:row-start-2{
    grid-row-start     : 2 !important;
  }

  .group:hover .sm\:group-hover\:row-start-3{
    grid-row-start     : 3 !important;
  }

  .group:hover .sm\:group-hover\:row-start-4{
    grid-row-start     : 4 !important;
  }

  .group:hover .sm\:group-hover\:row-start-5{
    grid-row-start     : 5 !important;
  }

  .group:hover .sm\:group-hover\:row-start-6{
    grid-row-start     : 6 !important;
  }

  .group:hover .sm\:group-hover\:row-start-7{
    grid-row-start     : 7 !important;
  }

  .group:hover .sm\:group-hover\:row-start-auto{
    grid-row-start     : auto !important;
  }

  .sm\:hover\:row-start-1:hover{
    grid-row-start     : 1 !important;
  }

  .sm\:hover\:row-start-2:hover{
    grid-row-start     : 2 !important;
  }

  .sm\:hover\:row-start-3:hover{
    grid-row-start     : 3 !important;
  }

  .sm\:hover\:row-start-4:hover{
    grid-row-start     : 4 !important;
  }

  .sm\:hover\:row-start-5:hover{
    grid-row-start     : 5 !important;
  }

  .sm\:hover\:row-start-6:hover{
    grid-row-start     : 6 !important;
  }

  .sm\:hover\:row-start-7:hover{
    grid-row-start     : 7 !important;
  }

  .sm\:hover\:row-start-auto:hover{
    grid-row-start     : auto !important;
  }

  .sm\:focus\:row-start-1:focus{
    grid-row-start     : 1 !important;
  }

  .sm\:focus\:row-start-2:focus{
    grid-row-start     : 2 !important;
  }

  .sm\:focus\:row-start-3:focus{
    grid-row-start     : 3 !important;
  }

  .sm\:focus\:row-start-4:focus{
    grid-row-start     : 4 !important;
  }

  .sm\:focus\:row-start-5:focus{
    grid-row-start     : 5 !important;
  }

  .sm\:focus\:row-start-6:focus{
    grid-row-start     : 6 !important;
  }

  .sm\:focus\:row-start-7:focus{
    grid-row-start     : 7 !important;
  }

  .sm\:focus\:row-start-auto:focus{
    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;
  }

  .group:hover .sm\:group-hover\:row-end-1{
    grid-row-end     : 1 !important;
  }

  .group:hover .sm\:group-hover\:row-end-2{
    grid-row-end     : 2 !important;
  }

  .group:hover .sm\:group-hover\:row-end-3{
    grid-row-end     : 3 !important;
  }

  .group:hover .sm\:group-hover\:row-end-4{
    grid-row-end     : 4 !important;
  }

  .group:hover .sm\:group-hover\:row-end-5{
    grid-row-end     : 5 !important;
  }

  .group:hover .sm\:group-hover\:row-end-6{
    grid-row-end     : 6 !important;
  }

  .group:hover .sm\:group-hover\:row-end-7{
    grid-row-end     : 7 !important;
  }

  .group:hover .sm\:group-hover\:row-end-auto{
    grid-row-end     : auto !important;
  }

  .sm\:hover\:row-end-1:hover{
    grid-row-end     : 1 !important;
  }

  .sm\:hover\:row-end-2:hover{
    grid-row-end     : 2 !important;
  }

  .sm\:hover\:row-end-3:hover{
    grid-row-end     : 3 !important;
  }

  .sm\:hover\:row-end-4:hover{
    grid-row-end     : 4 !important;
  }

  .sm\:hover\:row-end-5:hover{
    grid-row-end     : 5 !important;
  }

  .sm\:hover\:row-end-6:hover{
    grid-row-end     : 6 !important;
  }

  .sm\:hover\:row-end-7:hover{
    grid-row-end     : 7 !important;
  }

  .sm\:hover\:row-end-auto:hover{
    grid-row-end     : auto !important;
  }

  .sm\:focus\:row-end-1:focus{
    grid-row-end     : 1 !important;
  }

  .sm\:focus\:row-end-2:focus{
    grid-row-end     : 2 !important;
  }

  .sm\:focus\:row-end-3:focus{
    grid-row-end     : 3 !important;
  }

  .sm\:focus\:row-end-4:focus{
    grid-row-end     : 4 !important;
  }

  .sm\:focus\:row-end-5:focus{
    grid-row-end     : 5 !important;
  }

  .sm\:focus\:row-end-6:focus{
    grid-row-end     : 6 !important;
  }

  .sm\:focus\:row-end-7:focus{
    grid-row-end     : 7 !important;
  }

  .sm\:focus\:row-end-auto:focus{
    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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:transform-none{
    transform     : none !important;
  }

  .sm\:hover\:transform:hover{
    --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\:hover\:transform-none:hover{
    transform     : none !important;
  }

  .sm\:focus\:transform:focus{
    --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\:focus\:transform-none:focus{
    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;
  }

  .group:hover .sm\:group-hover\:origin-center{
    transform-origin     : center !important;
  }

  .group:hover .sm\:group-hover\:origin-top{
    transform-origin     : top !important;
  }

  .group:hover .sm\:group-hover\:origin-top-right{
    transform-origin     : top right !important;
  }

  .group:hover .sm\:group-hover\:origin-right{
    transform-origin     : right !important;
  }

  .group:hover .sm\:group-hover\:origin-bottom-right{
    transform-origin     : bottom right !important;
  }

  .group:hover .sm\:group-hover\:origin-bottom{
    transform-origin     : bottom !important;
  }

  .group:hover .sm\:group-hover\:origin-bottom-left{
    transform-origin     : bottom left !important;
  }

  .group:hover .sm\:group-hover\:origin-left{
    transform-origin     : left !important;
  }

  .group:hover .sm\:group-hover\:origin-top-left{
    transform-origin     : top left !important;
  }

  .sm\:hover\:origin-center:hover{
    transform-origin     : center !important;
  }

  .sm\:hover\:origin-top:hover{
    transform-origin     : top !important;
  }

  .sm\:hover\:origin-top-right:hover{
    transform-origin     : top right !important;
  }

  .sm\:hover\:origin-right:hover{
    transform-origin     : right !important;
  }

  .sm\:hover\:origin-bottom-right:hover{
    transform-origin     : bottom right !important;
  }

  .sm\:hover\:origin-bottom:hover{
    transform-origin     : bottom !important;
  }

  .sm\:hover\:origin-bottom-left:hover{
    transform-origin     : bottom left !important;
  }

  .sm\:hover\:origin-left:hover{
    transform-origin     : left !important;
  }

  .sm\:hover\:origin-top-left:hover{
    transform-origin     : top left !important;
  }

  .sm\:focus\:origin-center:focus{
    transform-origin     : center !important;
  }

  .sm\:focus\:origin-top:focus{
    transform-origin     : top !important;
  }

  .sm\:focus\:origin-top-right:focus{
    transform-origin     : top right !important;
  }

  .sm\:focus\:origin-right:focus{
    transform-origin     : right !important;
  }

  .sm\:focus\:origin-bottom-right:focus{
    transform-origin     : bottom right !important;
  }

  .sm\:focus\:origin-bottom:focus{
    transform-origin     : bottom !important;
  }

  .sm\:focus\:origin-bottom-left:focus{
    transform-origin     : bottom left !important;
  }

  .sm\:focus\:origin-left:focus{
    transform-origin     : left !important;
  }

  .sm\:focus\:origin-top-left:focus{
    transform-origin     : top left !important;
  }

  .sm\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .sm\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .sm\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .sm\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .sm\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .sm\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .sm\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .sm\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .sm\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .sm\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .sm\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .sm\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .sm\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .sm\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .sm\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .sm\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .sm\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .sm\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .sm\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .sm\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .sm\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .sm\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .sm\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .sm\:group-hover\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .group:hover .sm\:group-hover\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .group:hover .sm\:group-hover\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .group:hover .sm\:group-hover\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .group:hover .sm\:group-hover\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .group:hover .sm\:group-hover\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .group:hover .sm\:group-hover\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .sm\:group-hover\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .sm\:group-hover\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .sm\:group-hover\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .group:hover .sm\:group-hover\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .sm\:group-hover\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:hover\:scale-0:hover{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .sm\:hover\:scale-50:hover{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .sm\:hover\:scale-75:hover{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .sm\:hover\:scale-90:hover{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .sm\:hover\:scale-95:hover{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .sm\:hover\:scale-100:hover{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .sm\:hover\:scale-105:hover{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:hover\:scale-110:hover{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:hover\:scale-125:hover{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:hover\:scale-150:hover{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:hover\:scale-x-0:hover{
    --transform-scale-x     : 0 !important;
  }

  .sm\:hover\:scale-x-50:hover{
    --transform-scale-x     : .5 !important;
  }

  .sm\:hover\:scale-x-75:hover{
    --transform-scale-x     : .75 !important;
  }

  .sm\:hover\:scale-x-90:hover{
    --transform-scale-x     : .9 !important;
  }

  .sm\:hover\:scale-x-95:hover{
    --transform-scale-x     : .95 !important;
  }

  .sm\:hover\:scale-x-100:hover{
    --transform-scale-x     : 1 !important;
  }

  .sm\:hover\:scale-x-105:hover{
    --transform-scale-x     : 1.05 !important;
  }

  .sm\:hover\:scale-x-110:hover{
    --transform-scale-x     : 1.1 !important;
  }

  .sm\:hover\:scale-x-125:hover{
    --transform-scale-x     : 1.25 !important;
  }

  .sm\:hover\:scale-x-150:hover{
    --transform-scale-x     : 1.5 !important;
  }

  .sm\:hover\:scale-y-0:hover{
    --transform-scale-y     : 0 !important;
  }

  .sm\:hover\:scale-y-50:hover{
    --transform-scale-y     : .5 !important;
  }

  .sm\:hover\:scale-y-75:hover{
    --transform-scale-y     : .75 !important;
  }

  .sm\:hover\:scale-y-90:hover{
    --transform-scale-y     : .9 !important;
  }

  .sm\:hover\:scale-y-95:hover{
    --transform-scale-y     : .95 !important;
  }

  .sm\:hover\:scale-y-100:hover{
    --transform-scale-y     : 1 !important;
  }

  .sm\:hover\:scale-y-105:hover{
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:hover\:scale-y-110:hover{
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:hover\:scale-y-125:hover{
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:hover\:scale-y-150:hover{
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:focus\:scale-0:focus{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .sm\:focus\:scale-50:focus{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .sm\:focus\:scale-75:focus{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .sm\:focus\:scale-90:focus{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .sm\:focus\:scale-95:focus{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .sm\:focus\:scale-100:focus{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .sm\:focus\:scale-105:focus{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:focus\:scale-110:focus{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:focus\:scale-125:focus{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:focus\:scale-150:focus{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:focus\:scale-x-0:focus{
    --transform-scale-x     : 0 !important;
  }

  .sm\:focus\:scale-x-50:focus{
    --transform-scale-x     : .5 !important;
  }

  .sm\:focus\:scale-x-75:focus{
    --transform-scale-x     : .75 !important;
  }

  .sm\:focus\:scale-x-90:focus{
    --transform-scale-x     : .9 !important;
  }

  .sm\:focus\:scale-x-95:focus{
    --transform-scale-x     : .95 !important;
  }

  .sm\:focus\:scale-x-100:focus{
    --transform-scale-x     : 1 !important;
  }

  .sm\:focus\:scale-x-105:focus{
    --transform-scale-x     : 1.05 !important;
  }

  .sm\:focus\:scale-x-110:focus{
    --transform-scale-x     : 1.1 !important;
  }

  .sm\:focus\:scale-x-125:focus{
    --transform-scale-x     : 1.25 !important;
  }

  .sm\:focus\:scale-x-150:focus{
    --transform-scale-x     : 1.5 !important;
  }

  .sm\:focus\:scale-y-0:focus{
    --transform-scale-y     : 0 !important;
  }

  .sm\:focus\:scale-y-50:focus{
    --transform-scale-y     : .5 !important;
  }

  .sm\:focus\:scale-y-75:focus{
    --transform-scale-y     : .75 !important;
  }

  .sm\:focus\:scale-y-90:focus{
    --transform-scale-y     : .9 !important;
  }

  .sm\:focus\:scale-y-95:focus{
    --transform-scale-y     : .95 !important;
  }

  .sm\:focus\:scale-y-100:focus{
    --transform-scale-y     : 1 !important;
  }

  .sm\:focus\:scale-y-105:focus{
    --transform-scale-y     : 1.05 !important;
  }

  .sm\:focus\:scale-y-110:focus{
    --transform-scale-y     : 1.1 !important;
  }

  .sm\:focus\:scale-y-125:focus{
    --transform-scale-y     : 1.25 !important;
  }

  .sm\:focus\:scale-y-150:focus{
    --transform-scale-y     : 1.5 !important;
  }

  .sm\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .sm\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .sm\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .sm\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .sm\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .sm\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .sm\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .group:hover .sm\:group-hover\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .group:hover .sm\:group-hover\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .group:hover .sm\:group-hover\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .group:hover .sm\:group-hover\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .group:hover .sm\:group-hover\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .group:hover .sm\:group-hover\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .group:hover .sm\:group-hover\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .sm\:hover\:rotate-0:hover{
    --transform-rotate     : 0 !important;
  }

  .sm\:hover\:rotate-45:hover{
    --transform-rotate     : 45deg !important;
  }

  .sm\:hover\:rotate-90:hover{
    --transform-rotate     : 90deg !important;
  }

  .sm\:hover\:rotate-180:hover{
    --transform-rotate     : 180deg !important;
  }

  .sm\:hover\:-rotate-180:hover{
    --transform-rotate     : -180deg !important;
  }

  .sm\:hover\:-rotate-90:hover{
    --transform-rotate     : -90deg !important;
  }

  .sm\:hover\:-rotate-45:hover{
    --transform-rotate     : -45deg !important;
  }

  .sm\:focus\:rotate-0:focus{
    --transform-rotate     : 0 !important;
  }

  .sm\:focus\:rotate-45:focus{
    --transform-rotate     : 45deg !important;
  }

  .sm\:focus\:rotate-90:focus{
    --transform-rotate     : 90deg !important;
  }

  .sm\:focus\:rotate-180:focus{
    --transform-rotate     : 180deg !important;
  }

  .sm\:focus\:-rotate-180:focus{
    --transform-rotate     : -180deg !important;
  }

  .sm\:focus\:-rotate-90:focus{
    --transform-rotate     : -90deg !important;
  }

  .sm\:focus\:-rotate-45:focus{
    --transform-rotate     : -45deg !important;
  }

  .sm\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .sm\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .sm\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .sm\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .sm\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .sm\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .sm\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .sm\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .sm\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .sm\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .sm\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .sm\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .sm\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .sm\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .sm\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .sm\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .sm\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .sm\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .sm\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .sm\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .sm\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .sm\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .sm\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .sm\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .sm\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .sm\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .sm\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .sm\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .sm\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .sm\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .sm\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .sm\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .sm\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .sm\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .sm\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .sm\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .sm\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .sm\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .sm\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .sm\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .sm\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .sm\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .sm\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .sm\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .sm\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .sm\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .sm\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .sm\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .sm\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .sm\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .sm\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .sm\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .sm\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .sm\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .sm\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .sm\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .sm\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .sm\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .sm\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .sm\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .sm\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .sm\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .sm\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .sm\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .sm\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .sm\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .sm\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .sm\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .sm\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .sm\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .sm\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .sm\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .sm\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .sm\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .sm\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .sm\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .sm\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .sm\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .sm\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .sm\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .sm\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .sm\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .sm\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .sm\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .sm\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .sm\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .sm\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .sm\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .sm\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .sm\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .sm\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .sm\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .sm\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .sm\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .sm\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .sm\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .sm\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .sm\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .sm\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .sm\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .sm\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .sm\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .sm\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .sm\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .sm\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .sm\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .sm\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .sm\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .sm\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .sm\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .sm\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .sm\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .sm\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .sm\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .sm\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .sm\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .sm\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .sm\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .sm\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .sm\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .sm\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .sm\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .sm\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .sm\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .sm\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .sm\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .sm\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .sm\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .sm\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .sm\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .sm\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .sm\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .sm\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .sm\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .sm\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .sm\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .sm\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .sm\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .sm\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .sm\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .sm\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .sm\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .sm\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .sm\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .sm\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .sm\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .sm\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .sm\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .sm\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .sm\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .sm\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .sm\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .sm\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .sm\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .sm\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .sm\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .sm\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .sm\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .sm\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .sm\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .sm\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .sm\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .sm\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .sm\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .sm\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .sm\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .sm\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .sm\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .sm\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .sm\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .sm\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .sm\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .sm\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .sm\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .sm\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .sm\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .sm\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .sm\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .sm\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .sm\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .sm\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .sm\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .sm\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .sm\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .sm\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .sm\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .sm\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .sm\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .sm\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .sm\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .sm\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .sm\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .sm\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .sm\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .sm\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .sm\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .sm\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .sm\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .sm\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .sm\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .sm\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .sm\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .sm\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .sm\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .sm\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .sm\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .sm\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .sm\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .sm\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .sm\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .sm\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .sm\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .sm\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .sm\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .group:hover .sm\:group-hover\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .group:hover .sm\:group-hover\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .group:hover .sm\:group-hover\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .group:hover .sm\:group-hover\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .sm\:hover\:translate-x-0:hover{
    --transform-translate-x     : 0 !important;
  }

  .sm\:hover\:translate-x-1:hover{
    --transform-translate-x     : 0.25rem !important;
  }

  .sm\:hover\:translate-x-2:hover{
    --transform-translate-x     : 0.5rem !important;
  }

  .sm\:hover\:translate-x-3:hover{
    --transform-translate-x     : 0.75rem !important;
  }

  .sm\:hover\:translate-x-4:hover{
    --transform-translate-x     : 1rem !important;
  }

  .sm\:hover\:translate-x-5:hover{
    --transform-translate-x     : 1.25rem !important;
  }

  .sm\:hover\:translate-x-6:hover{
    --transform-translate-x     : 1.5rem !important;
  }

  .sm\:hover\:translate-x-7:hover{
    --transform-translate-x     : 1.75rem !important;
  }

  .sm\:hover\:translate-x-8:hover{
    --transform-translate-x     : 2rem !important;
  }

  .sm\:hover\:translate-x-9:hover{
    --transform-translate-x     : 2.25rem !important;
  }

  .sm\:hover\:translate-x-10:hover{
    --transform-translate-x     : 2.5rem !important;
  }

  .sm\:hover\:translate-x-11:hover{
    --transform-translate-x     : 2.75rem !important;
  }

  .sm\:hover\:translate-x-12:hover{
    --transform-translate-x     : 3rem !important;
  }

  .sm\:hover\:translate-x-13:hover{
    --transform-translate-x     : 3.25rem !important;
  }

  .sm\:hover\:translate-x-14:hover{
    --transform-translate-x     : 3.5rem !important;
  }

  .sm\:hover\:translate-x-15:hover{
    --transform-translate-x     : 3.75rem !important;
  }

  .sm\:hover\:translate-x-16:hover{
    --transform-translate-x     : 4rem !important;
  }

  .sm\:hover\:translate-x-20:hover{
    --transform-translate-x     : 5rem !important;
  }

  .sm\:hover\:translate-x-24:hover{
    --transform-translate-x     : 6rem !important;
  }

  .sm\:hover\:translate-x-28:hover{
    --transform-translate-x     : 7rem !important;
  }

  .sm\:hover\:translate-x-32:hover{
    --transform-translate-x     : 8rem !important;
  }

  .sm\:hover\:translate-x-36:hover{
    --transform-translate-x     : 9rem !important;
  }

  .sm\:hover\:translate-x-40:hover{
    --transform-translate-x     : 10rem !important;
  }

  .sm\:hover\:translate-x-44:hover{
    --transform-translate-x     : 11rem !important;
  }

  .sm\:hover\:translate-x-48:hover{
    --transform-translate-x     : 12rem !important;
  }

  .sm\:hover\:translate-x-52:hover{
    --transform-translate-x     : 13rem !important;
  }

  .sm\:hover\:translate-x-56:hover{
    --transform-translate-x     : 14rem !important;
  }

  .sm\:hover\:translate-x-60:hover{
    --transform-translate-x     : 15rem !important;
  }

  .sm\:hover\:translate-x-64:hover{
    --transform-translate-x     : 16rem !important;
  }

  .sm\:hover\:translate-x-72:hover{
    --transform-translate-x     : 18rem !important;
  }

  .sm\:hover\:translate-x-80:hover{
    --transform-translate-x     : 20rem !important;
  }

  .sm\:hover\:translate-x-96:hover{
    --transform-translate-x     : 24rem !important;
  }

  .sm\:hover\:translate-x-px:hover{
    --transform-translate-x     : 1px !important;
  }

  .sm\:hover\:translate-x-0\.5:hover{
    --transform-translate-x     : 0.125rem !important;
  }

  .sm\:hover\:translate-x-1\.5:hover{
    --transform-translate-x     : 0.375rem !important;
  }

  .sm\:hover\:translate-x-2\.5:hover{
    --transform-translate-x     : 0.625rem !important;
  }

  .sm\:hover\:translate-x-3\.5:hover{
    --transform-translate-x     : 0.875rem !important;
  }

  .sm\:hover\:translate-x-1\/2:hover{
    --transform-translate-x     : 50% !important;
  }

  .sm\:hover\:translate-x-1\/3:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:hover\:translate-x-2\/3:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:hover\:translate-x-1\/4:hover{
    --transform-translate-x     : 25% !important;
  }

  .sm\:hover\:translate-x-2\/4:hover{
    --transform-translate-x     : 50% !important;
  }

  .sm\:hover\:translate-x-3\/4:hover{
    --transform-translate-x     : 75% !important;
  }

  .sm\:hover\:translate-x-1\/5:hover{
    --transform-translate-x     : 20% !important;
  }

  .sm\:hover\:translate-x-2\/5:hover{
    --transform-translate-x     : 40% !important;
  }

  .sm\:hover\:translate-x-3\/5:hover{
    --transform-translate-x     : 60% !important;
  }

  .sm\:hover\:translate-x-4\/5:hover{
    --transform-translate-x     : 80% !important;
  }

  .sm\:hover\:translate-x-1\/6:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:hover\:translate-x-2\/6:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:hover\:translate-x-3\/6:hover{
    --transform-translate-x     : 50% !important;
  }

  .sm\:hover\:translate-x-4\/6:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:hover\:translate-x-5\/6:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:hover\:translate-x-1\/12:hover{
    --transform-translate-x     : 8.333333% !important;
  }

  .sm\:hover\:translate-x-2\/12:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:hover\:translate-x-3\/12:hover{
    --transform-translate-x     : 25% !important;
  }

  .sm\:hover\:translate-x-4\/12:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:hover\:translate-x-5\/12:hover{
    --transform-translate-x     : 41.666667% !important;
  }

  .sm\:hover\:translate-x-6\/12:hover{
    --transform-translate-x     : 50% !important;
  }

  .sm\:hover\:translate-x-7\/12:hover{
    --transform-translate-x     : 58.333333% !important;
  }

  .sm\:hover\:translate-x-8\/12:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:hover\:translate-x-9\/12:hover{
    --transform-translate-x     : 75% !important;
  }

  .sm\:hover\:translate-x-10\/12:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:hover\:translate-x-11\/12:hover{
    --transform-translate-x     : 91.666667% !important;
  }

  .sm\:hover\:translate-x-full:hover{
    --transform-translate-x     : 100% !important;
  }

  .sm\:hover\:-translate-x-1:hover{
    --transform-translate-x     : -0.25rem !important;
  }

  .sm\:hover\:-translate-x-2:hover{
    --transform-translate-x     : -0.5rem !important;
  }

  .sm\:hover\:-translate-x-3:hover{
    --transform-translate-x     : -0.75rem !important;
  }

  .sm\:hover\:-translate-x-4:hover{
    --transform-translate-x     : -1rem !important;
  }

  .sm\:hover\:-translate-x-5:hover{
    --transform-translate-x     : -1.25rem !important;
  }

  .sm\:hover\:-translate-x-6:hover{
    --transform-translate-x     : -1.5rem !important;
  }

  .sm\:hover\:-translate-x-7:hover{
    --transform-translate-x     : -1.75rem !important;
  }

  .sm\:hover\:-translate-x-8:hover{
    --transform-translate-x     : -2rem !important;
  }

  .sm\:hover\:-translate-x-9:hover{
    --transform-translate-x     : -2.25rem !important;
  }

  .sm\:hover\:-translate-x-10:hover{
    --transform-translate-x     : -2.5rem !important;
  }

  .sm\:hover\:-translate-x-11:hover{
    --transform-translate-x     : -2.75rem !important;
  }

  .sm\:hover\:-translate-x-12:hover{
    --transform-translate-x     : -3rem !important;
  }

  .sm\:hover\:-translate-x-13:hover{
    --transform-translate-x     : -3.25rem !important;
  }

  .sm\:hover\:-translate-x-14:hover{
    --transform-translate-x     : -3.5rem !important;
  }

  .sm\:hover\:-translate-x-15:hover{
    --transform-translate-x     : -3.75rem !important;
  }

  .sm\:hover\:-translate-x-16:hover{
    --transform-translate-x     : -4rem !important;
  }

  .sm\:hover\:-translate-x-20:hover{
    --transform-translate-x     : -5rem !important;
  }

  .sm\:hover\:-translate-x-24:hover{
    --transform-translate-x     : -6rem !important;
  }

  .sm\:hover\:-translate-x-28:hover{
    --transform-translate-x     : -7rem !important;
  }

  .sm\:hover\:-translate-x-32:hover{
    --transform-translate-x     : -8rem !important;
  }

  .sm\:hover\:-translate-x-36:hover{
    --transform-translate-x     : -9rem !important;
  }

  .sm\:hover\:-translate-x-40:hover{
    --transform-translate-x     : -10rem !important;
  }

  .sm\:hover\:-translate-x-44:hover{
    --transform-translate-x     : -11rem !important;
  }

  .sm\:hover\:-translate-x-48:hover{
    --transform-translate-x     : -12rem !important;
  }

  .sm\:hover\:-translate-x-52:hover{
    --transform-translate-x     : -13rem !important;
  }

  .sm\:hover\:-translate-x-56:hover{
    --transform-translate-x     : -14rem !important;
  }

  .sm\:hover\:-translate-x-60:hover{
    --transform-translate-x     : -15rem !important;
  }

  .sm\:hover\:-translate-x-64:hover{
    --transform-translate-x     : -16rem !important;
  }

  .sm\:hover\:-translate-x-72:hover{
    --transform-translate-x     : -18rem !important;
  }

  .sm\:hover\:-translate-x-80:hover{
    --transform-translate-x     : -20rem !important;
  }

  .sm\:hover\:-translate-x-96:hover{
    --transform-translate-x     : -24rem !important;
  }

  .sm\:hover\:-translate-x-px:hover{
    --transform-translate-x     : -1px !important;
  }

  .sm\:hover\:-translate-x-0\.5:hover{
    --transform-translate-x     : -0.125rem !important;
  }

  .sm\:hover\:-translate-x-1\.5:hover{
    --transform-translate-x     : -0.375rem !important;
  }

  .sm\:hover\:-translate-x-2\.5:hover{
    --transform-translate-x     : -0.625rem !important;
  }

  .sm\:hover\:-translate-x-3\.5:hover{
    --transform-translate-x     : -0.875rem !important;
  }

  .sm\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x     : -50% !important;
  }

  .sm\:hover\:-translate-x-1\/3:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:hover\:-translate-x-2\/3:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:hover\:-translate-x-1\/4:hover{
    --transform-translate-x     : -25% !important;
  }

  .sm\:hover\:-translate-x-2\/4:hover{
    --transform-translate-x     : -50% !important;
  }

  .sm\:hover\:-translate-x-3\/4:hover{
    --transform-translate-x     : -75% !important;
  }

  .sm\:hover\:-translate-x-1\/5:hover{
    --transform-translate-x     : -20% !important;
  }

  .sm\:hover\:-translate-x-2\/5:hover{
    --transform-translate-x     : -40% !important;
  }

  .sm\:hover\:-translate-x-3\/5:hover{
    --transform-translate-x     : -60% !important;
  }

  .sm\:hover\:-translate-x-4\/5:hover{
    --transform-translate-x     : -80% !important;
  }

  .sm\:hover\:-translate-x-1\/6:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:hover\:-translate-x-2\/6:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:hover\:-translate-x-3\/6:hover{
    --transform-translate-x     : -50% !important;
  }

  .sm\:hover\:-translate-x-4\/6:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:hover\:-translate-x-5\/6:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:hover\:-translate-x-1\/12:hover{
    --transform-translate-x     : -8.33333% !important;
  }

  .sm\:hover\:-translate-x-2\/12:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:hover\:-translate-x-3\/12:hover{
    --transform-translate-x     : -25% !important;
  }

  .sm\:hover\:-translate-x-4\/12:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:hover\:-translate-x-5\/12:hover{
    --transform-translate-x     : -41.66667% !important;
  }

  .sm\:hover\:-translate-x-6\/12:hover{
    --transform-translate-x     : -50% !important;
  }

  .sm\:hover\:-translate-x-7\/12:hover{
    --transform-translate-x     : -58.33333% !important;
  }

  .sm\:hover\:-translate-x-8\/12:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:hover\:-translate-x-9\/12:hover{
    --transform-translate-x     : -75% !important;
  }

  .sm\:hover\:-translate-x-10\/12:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:hover\:-translate-x-11\/12:hover{
    --transform-translate-x     : -91.66667% !important;
  }

  .sm\:hover\:-translate-x-full:hover{
    --transform-translate-x     : -100% !important;
  }

  .sm\:hover\:translate-y-0:hover{
    --transform-translate-y     : 0 !important;
  }

  .sm\:hover\:translate-y-1:hover{
    --transform-translate-y     : 0.25rem !important;
  }

  .sm\:hover\:translate-y-2:hover{
    --transform-translate-y     : 0.5rem !important;
  }

  .sm\:hover\:translate-y-3:hover{
    --transform-translate-y     : 0.75rem !important;
  }

  .sm\:hover\:translate-y-4:hover{
    --transform-translate-y     : 1rem !important;
  }

  .sm\:hover\:translate-y-5:hover{
    --transform-translate-y     : 1.25rem !important;
  }

  .sm\:hover\:translate-y-6:hover{
    --transform-translate-y     : 1.5rem !important;
  }

  .sm\:hover\:translate-y-7:hover{
    --transform-translate-y     : 1.75rem !important;
  }

  .sm\:hover\:translate-y-8:hover{
    --transform-translate-y     : 2rem !important;
  }

  .sm\:hover\:translate-y-9:hover{
    --transform-translate-y     : 2.25rem !important;
  }

  .sm\:hover\:translate-y-10:hover{
    --transform-translate-y     : 2.5rem !important;
  }

  .sm\:hover\:translate-y-11:hover{
    --transform-translate-y     : 2.75rem !important;
  }

  .sm\:hover\:translate-y-12:hover{
    --transform-translate-y     : 3rem !important;
  }

  .sm\:hover\:translate-y-13:hover{
    --transform-translate-y     : 3.25rem !important;
  }

  .sm\:hover\:translate-y-14:hover{
    --transform-translate-y     : 3.5rem !important;
  }

  .sm\:hover\:translate-y-15:hover{
    --transform-translate-y     : 3.75rem !important;
  }

  .sm\:hover\:translate-y-16:hover{
    --transform-translate-y     : 4rem !important;
  }

  .sm\:hover\:translate-y-20:hover{
    --transform-translate-y     : 5rem !important;
  }

  .sm\:hover\:translate-y-24:hover{
    --transform-translate-y     : 6rem !important;
  }

  .sm\:hover\:translate-y-28:hover{
    --transform-translate-y     : 7rem !important;
  }

  .sm\:hover\:translate-y-32:hover{
    --transform-translate-y     : 8rem !important;
  }

  .sm\:hover\:translate-y-36:hover{
    --transform-translate-y     : 9rem !important;
  }

  .sm\:hover\:translate-y-40:hover{
    --transform-translate-y     : 10rem !important;
  }

  .sm\:hover\:translate-y-44:hover{
    --transform-translate-y     : 11rem !important;
  }

  .sm\:hover\:translate-y-48:hover{
    --transform-translate-y     : 12rem !important;
  }

  .sm\:hover\:translate-y-52:hover{
    --transform-translate-y     : 13rem !important;
  }

  .sm\:hover\:translate-y-56:hover{
    --transform-translate-y     : 14rem !important;
  }

  .sm\:hover\:translate-y-60:hover{
    --transform-translate-y     : 15rem !important;
  }

  .sm\:hover\:translate-y-64:hover{
    --transform-translate-y     : 16rem !important;
  }

  .sm\:hover\:translate-y-72:hover{
    --transform-translate-y     : 18rem !important;
  }

  .sm\:hover\:translate-y-80:hover{
    --transform-translate-y     : 20rem !important;
  }

  .sm\:hover\:translate-y-96:hover{
    --transform-translate-y     : 24rem !important;
  }

  .sm\:hover\:translate-y-px:hover{
    --transform-translate-y     : 1px !important;
  }

  .sm\:hover\:translate-y-0\.5:hover{
    --transform-translate-y     : 0.125rem !important;
  }

  .sm\:hover\:translate-y-1\.5:hover{
    --transform-translate-y     : 0.375rem !important;
  }

  .sm\:hover\:translate-y-2\.5:hover{
    --transform-translate-y     : 0.625rem !important;
  }

  .sm\:hover\:translate-y-3\.5:hover{
    --transform-translate-y     : 0.875rem !important;
  }

  .sm\:hover\:translate-y-1\/2:hover{
    --transform-translate-y     : 50% !important;
  }

  .sm\:hover\:translate-y-1\/3:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:hover\:translate-y-2\/3:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:hover\:translate-y-1\/4:hover{
    --transform-translate-y     : 25% !important;
  }

  .sm\:hover\:translate-y-2\/4:hover{
    --transform-translate-y     : 50% !important;
  }

  .sm\:hover\:translate-y-3\/4:hover{
    --transform-translate-y     : 75% !important;
  }

  .sm\:hover\:translate-y-1\/5:hover{
    --transform-translate-y     : 20% !important;
  }

  .sm\:hover\:translate-y-2\/5:hover{
    --transform-translate-y     : 40% !important;
  }

  .sm\:hover\:translate-y-3\/5:hover{
    --transform-translate-y     : 60% !important;
  }

  .sm\:hover\:translate-y-4\/5:hover{
    --transform-translate-y     : 80% !important;
  }

  .sm\:hover\:translate-y-1\/6:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:hover\:translate-y-2\/6:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:hover\:translate-y-3\/6:hover{
    --transform-translate-y     : 50% !important;
  }

  .sm\:hover\:translate-y-4\/6:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:hover\:translate-y-5\/6:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:hover\:translate-y-1\/12:hover{
    --transform-translate-y     : 8.333333% !important;
  }

  .sm\:hover\:translate-y-2\/12:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:hover\:translate-y-3\/12:hover{
    --transform-translate-y     : 25% !important;
  }

  .sm\:hover\:translate-y-4\/12:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:hover\:translate-y-5\/12:hover{
    --transform-translate-y     : 41.666667% !important;
  }

  .sm\:hover\:translate-y-6\/12:hover{
    --transform-translate-y     : 50% !important;
  }

  .sm\:hover\:translate-y-7\/12:hover{
    --transform-translate-y     : 58.333333% !important;
  }

  .sm\:hover\:translate-y-8\/12:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:hover\:translate-y-9\/12:hover{
    --transform-translate-y     : 75% !important;
  }

  .sm\:hover\:translate-y-10\/12:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:hover\:translate-y-11\/12:hover{
    --transform-translate-y     : 91.666667% !important;
  }

  .sm\:hover\:translate-y-full:hover{
    --transform-translate-y     : 100% !important;
  }

  .sm\:hover\:-translate-y-1:hover{
    --transform-translate-y     : -0.25rem !important;
  }

  .sm\:hover\:-translate-y-2:hover{
    --transform-translate-y     : -0.5rem !important;
  }

  .sm\:hover\:-translate-y-3:hover{
    --transform-translate-y     : -0.75rem !important;
  }

  .sm\:hover\:-translate-y-4:hover{
    --transform-translate-y     : -1rem !important;
  }

  .sm\:hover\:-translate-y-5:hover{
    --transform-translate-y     : -1.25rem !important;
  }

  .sm\:hover\:-translate-y-6:hover{
    --transform-translate-y     : -1.5rem !important;
  }

  .sm\:hover\:-translate-y-7:hover{
    --transform-translate-y     : -1.75rem !important;
  }

  .sm\:hover\:-translate-y-8:hover{
    --transform-translate-y     : -2rem !important;
  }

  .sm\:hover\:-translate-y-9:hover{
    --transform-translate-y     : -2.25rem !important;
  }

  .sm\:hover\:-translate-y-10:hover{
    --transform-translate-y     : -2.5rem !important;
  }

  .sm\:hover\:-translate-y-11:hover{
    --transform-translate-y     : -2.75rem !important;
  }

  .sm\:hover\:-translate-y-12:hover{
    --transform-translate-y     : -3rem !important;
  }

  .sm\:hover\:-translate-y-13:hover{
    --transform-translate-y     : -3.25rem !important;
  }

  .sm\:hover\:-translate-y-14:hover{
    --transform-translate-y     : -3.5rem !important;
  }

  .sm\:hover\:-translate-y-15:hover{
    --transform-translate-y     : -3.75rem !important;
  }

  .sm\:hover\:-translate-y-16:hover{
    --transform-translate-y     : -4rem !important;
  }

  .sm\:hover\:-translate-y-20:hover{
    --transform-translate-y     : -5rem !important;
  }

  .sm\:hover\:-translate-y-24:hover{
    --transform-translate-y     : -6rem !important;
  }

  .sm\:hover\:-translate-y-28:hover{
    --transform-translate-y     : -7rem !important;
  }

  .sm\:hover\:-translate-y-32:hover{
    --transform-translate-y     : -8rem !important;
  }

  .sm\:hover\:-translate-y-36:hover{
    --transform-translate-y     : -9rem !important;
  }

  .sm\:hover\:-translate-y-40:hover{
    --transform-translate-y     : -10rem !important;
  }

  .sm\:hover\:-translate-y-44:hover{
    --transform-translate-y     : -11rem !important;
  }

  .sm\:hover\:-translate-y-48:hover{
    --transform-translate-y     : -12rem !important;
  }

  .sm\:hover\:-translate-y-52:hover{
    --transform-translate-y     : -13rem !important;
  }

  .sm\:hover\:-translate-y-56:hover{
    --transform-translate-y     : -14rem !important;
  }

  .sm\:hover\:-translate-y-60:hover{
    --transform-translate-y     : -15rem !important;
  }

  .sm\:hover\:-translate-y-64:hover{
    --transform-translate-y     : -16rem !important;
  }

  .sm\:hover\:-translate-y-72:hover{
    --transform-translate-y     : -18rem !important;
  }

  .sm\:hover\:-translate-y-80:hover{
    --transform-translate-y     : -20rem !important;
  }

  .sm\:hover\:-translate-y-96:hover{
    --transform-translate-y     : -24rem !important;
  }

  .sm\:hover\:-translate-y-px:hover{
    --transform-translate-y     : -1px !important;
  }

  .sm\:hover\:-translate-y-0\.5:hover{
    --transform-translate-y     : -0.125rem !important;
  }

  .sm\:hover\:-translate-y-1\.5:hover{
    --transform-translate-y     : -0.375rem !important;
  }

  .sm\:hover\:-translate-y-2\.5:hover{
    --transform-translate-y     : -0.625rem !important;
  }

  .sm\:hover\:-translate-y-3\.5:hover{
    --transform-translate-y     : -0.875rem !important;
  }

  .sm\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y     : -50% !important;
  }

  .sm\:hover\:-translate-y-1\/3:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:hover\:-translate-y-2\/3:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:hover\:-translate-y-1\/4:hover{
    --transform-translate-y     : -25% !important;
  }

  .sm\:hover\:-translate-y-2\/4:hover{
    --transform-translate-y     : -50% !important;
  }

  .sm\:hover\:-translate-y-3\/4:hover{
    --transform-translate-y     : -75% !important;
  }

  .sm\:hover\:-translate-y-1\/5:hover{
    --transform-translate-y     : -20% !important;
  }

  .sm\:hover\:-translate-y-2\/5:hover{
    --transform-translate-y     : -40% !important;
  }

  .sm\:hover\:-translate-y-3\/5:hover{
    --transform-translate-y     : -60% !important;
  }

  .sm\:hover\:-translate-y-4\/5:hover{
    --transform-translate-y     : -80% !important;
  }

  .sm\:hover\:-translate-y-1\/6:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:hover\:-translate-y-2\/6:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:hover\:-translate-y-3\/6:hover{
    --transform-translate-y     : -50% !important;
  }

  .sm\:hover\:-translate-y-4\/6:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:hover\:-translate-y-5\/6:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:hover\:-translate-y-1\/12:hover{
    --transform-translate-y     : -8.33333% !important;
  }

  .sm\:hover\:-translate-y-2\/12:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:hover\:-translate-y-3\/12:hover{
    --transform-translate-y     : -25% !important;
  }

  .sm\:hover\:-translate-y-4\/12:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:hover\:-translate-y-5\/12:hover{
    --transform-translate-y     : -41.66667% !important;
  }

  .sm\:hover\:-translate-y-6\/12:hover{
    --transform-translate-y     : -50% !important;
  }

  .sm\:hover\:-translate-y-7\/12:hover{
    --transform-translate-y     : -58.33333% !important;
  }

  .sm\:hover\:-translate-y-8\/12:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:hover\:-translate-y-9\/12:hover{
    --transform-translate-y     : -75% !important;
  }

  .sm\:hover\:-translate-y-10\/12:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:hover\:-translate-y-11\/12:hover{
    --transform-translate-y     : -91.66667% !important;
  }

  .sm\:hover\:-translate-y-full:hover{
    --transform-translate-y     : -100% !important;
  }

  .sm\:focus\:translate-x-0:focus{
    --transform-translate-x     : 0 !important;
  }

  .sm\:focus\:translate-x-1:focus{
    --transform-translate-x     : 0.25rem !important;
  }

  .sm\:focus\:translate-x-2:focus{
    --transform-translate-x     : 0.5rem !important;
  }

  .sm\:focus\:translate-x-3:focus{
    --transform-translate-x     : 0.75rem !important;
  }

  .sm\:focus\:translate-x-4:focus{
    --transform-translate-x     : 1rem !important;
  }

  .sm\:focus\:translate-x-5:focus{
    --transform-translate-x     : 1.25rem !important;
  }

  .sm\:focus\:translate-x-6:focus{
    --transform-translate-x     : 1.5rem !important;
  }

  .sm\:focus\:translate-x-7:focus{
    --transform-translate-x     : 1.75rem !important;
  }

  .sm\:focus\:translate-x-8:focus{
    --transform-translate-x     : 2rem !important;
  }

  .sm\:focus\:translate-x-9:focus{
    --transform-translate-x     : 2.25rem !important;
  }

  .sm\:focus\:translate-x-10:focus{
    --transform-translate-x     : 2.5rem !important;
  }

  .sm\:focus\:translate-x-11:focus{
    --transform-translate-x     : 2.75rem !important;
  }

  .sm\:focus\:translate-x-12:focus{
    --transform-translate-x     : 3rem !important;
  }

  .sm\:focus\:translate-x-13:focus{
    --transform-translate-x     : 3.25rem !important;
  }

  .sm\:focus\:translate-x-14:focus{
    --transform-translate-x     : 3.5rem !important;
  }

  .sm\:focus\:translate-x-15:focus{
    --transform-translate-x     : 3.75rem !important;
  }

  .sm\:focus\:translate-x-16:focus{
    --transform-translate-x     : 4rem !important;
  }

  .sm\:focus\:translate-x-20:focus{
    --transform-translate-x     : 5rem !important;
  }

  .sm\:focus\:translate-x-24:focus{
    --transform-translate-x     : 6rem !important;
  }

  .sm\:focus\:translate-x-28:focus{
    --transform-translate-x     : 7rem !important;
  }

  .sm\:focus\:translate-x-32:focus{
    --transform-translate-x     : 8rem !important;
  }

  .sm\:focus\:translate-x-36:focus{
    --transform-translate-x     : 9rem !important;
  }

  .sm\:focus\:translate-x-40:focus{
    --transform-translate-x     : 10rem !important;
  }

  .sm\:focus\:translate-x-44:focus{
    --transform-translate-x     : 11rem !important;
  }

  .sm\:focus\:translate-x-48:focus{
    --transform-translate-x     : 12rem !important;
  }

  .sm\:focus\:translate-x-52:focus{
    --transform-translate-x     : 13rem !important;
  }

  .sm\:focus\:translate-x-56:focus{
    --transform-translate-x     : 14rem !important;
  }

  .sm\:focus\:translate-x-60:focus{
    --transform-translate-x     : 15rem !important;
  }

  .sm\:focus\:translate-x-64:focus{
    --transform-translate-x     : 16rem !important;
  }

  .sm\:focus\:translate-x-72:focus{
    --transform-translate-x     : 18rem !important;
  }

  .sm\:focus\:translate-x-80:focus{
    --transform-translate-x     : 20rem !important;
  }

  .sm\:focus\:translate-x-96:focus{
    --transform-translate-x     : 24rem !important;
  }

  .sm\:focus\:translate-x-px:focus{
    --transform-translate-x     : 1px !important;
  }

  .sm\:focus\:translate-x-0\.5:focus{
    --transform-translate-x     : 0.125rem !important;
  }

  .sm\:focus\:translate-x-1\.5:focus{
    --transform-translate-x     : 0.375rem !important;
  }

  .sm\:focus\:translate-x-2\.5:focus{
    --transform-translate-x     : 0.625rem !important;
  }

  .sm\:focus\:translate-x-3\.5:focus{
    --transform-translate-x     : 0.875rem !important;
  }

  .sm\:focus\:translate-x-1\/2:focus{
    --transform-translate-x     : 50% !important;
  }

  .sm\:focus\:translate-x-1\/3:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:focus\:translate-x-2\/3:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:focus\:translate-x-1\/4:focus{
    --transform-translate-x     : 25% !important;
  }

  .sm\:focus\:translate-x-2\/4:focus{
    --transform-translate-x     : 50% !important;
  }

  .sm\:focus\:translate-x-3\/4:focus{
    --transform-translate-x     : 75% !important;
  }

  .sm\:focus\:translate-x-1\/5:focus{
    --transform-translate-x     : 20% !important;
  }

  .sm\:focus\:translate-x-2\/5:focus{
    --transform-translate-x     : 40% !important;
  }

  .sm\:focus\:translate-x-3\/5:focus{
    --transform-translate-x     : 60% !important;
  }

  .sm\:focus\:translate-x-4\/5:focus{
    --transform-translate-x     : 80% !important;
  }

  .sm\:focus\:translate-x-1\/6:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:focus\:translate-x-2\/6:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:focus\:translate-x-3\/6:focus{
    --transform-translate-x     : 50% !important;
  }

  .sm\:focus\:translate-x-4\/6:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:focus\:translate-x-5\/6:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:focus\:translate-x-1\/12:focus{
    --transform-translate-x     : 8.333333% !important;
  }

  .sm\:focus\:translate-x-2\/12:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .sm\:focus\:translate-x-3\/12:focus{
    --transform-translate-x     : 25% !important;
  }

  .sm\:focus\:translate-x-4\/12:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .sm\:focus\:translate-x-5\/12:focus{
    --transform-translate-x     : 41.666667% !important;
  }

  .sm\:focus\:translate-x-6\/12:focus{
    --transform-translate-x     : 50% !important;
  }

  .sm\:focus\:translate-x-7\/12:focus{
    --transform-translate-x     : 58.333333% !important;
  }

  .sm\:focus\:translate-x-8\/12:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .sm\:focus\:translate-x-9\/12:focus{
    --transform-translate-x     : 75% !important;
  }

  .sm\:focus\:translate-x-10\/12:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .sm\:focus\:translate-x-11\/12:focus{
    --transform-translate-x     : 91.666667% !important;
  }

  .sm\:focus\:translate-x-full:focus{
    --transform-translate-x     : 100% !important;
  }

  .sm\:focus\:-translate-x-1:focus{
    --transform-translate-x     : -0.25rem !important;
  }

  .sm\:focus\:-translate-x-2:focus{
    --transform-translate-x     : -0.5rem !important;
  }

  .sm\:focus\:-translate-x-3:focus{
    --transform-translate-x     : -0.75rem !important;
  }

  .sm\:focus\:-translate-x-4:focus{
    --transform-translate-x     : -1rem !important;
  }

  .sm\:focus\:-translate-x-5:focus{
    --transform-translate-x     : -1.25rem !important;
  }

  .sm\:focus\:-translate-x-6:focus{
    --transform-translate-x     : -1.5rem !important;
  }

  .sm\:focus\:-translate-x-7:focus{
    --transform-translate-x     : -1.75rem !important;
  }

  .sm\:focus\:-translate-x-8:focus{
    --transform-translate-x     : -2rem !important;
  }

  .sm\:focus\:-translate-x-9:focus{
    --transform-translate-x     : -2.25rem !important;
  }

  .sm\:focus\:-translate-x-10:focus{
    --transform-translate-x     : -2.5rem !important;
  }

  .sm\:focus\:-translate-x-11:focus{
    --transform-translate-x     : -2.75rem !important;
  }

  .sm\:focus\:-translate-x-12:focus{
    --transform-translate-x     : -3rem !important;
  }

  .sm\:focus\:-translate-x-13:focus{
    --transform-translate-x     : -3.25rem !important;
  }

  .sm\:focus\:-translate-x-14:focus{
    --transform-translate-x     : -3.5rem !important;
  }

  .sm\:focus\:-translate-x-15:focus{
    --transform-translate-x     : -3.75rem !important;
  }

  .sm\:focus\:-translate-x-16:focus{
    --transform-translate-x     : -4rem !important;
  }

  .sm\:focus\:-translate-x-20:focus{
    --transform-translate-x     : -5rem !important;
  }

  .sm\:focus\:-translate-x-24:focus{
    --transform-translate-x     : -6rem !important;
  }

  .sm\:focus\:-translate-x-28:focus{
    --transform-translate-x     : -7rem !important;
  }

  .sm\:focus\:-translate-x-32:focus{
    --transform-translate-x     : -8rem !important;
  }

  .sm\:focus\:-translate-x-36:focus{
    --transform-translate-x     : -9rem !important;
  }

  .sm\:focus\:-translate-x-40:focus{
    --transform-translate-x     : -10rem !important;
  }

  .sm\:focus\:-translate-x-44:focus{
    --transform-translate-x     : -11rem !important;
  }

  .sm\:focus\:-translate-x-48:focus{
    --transform-translate-x     : -12rem !important;
  }

  .sm\:focus\:-translate-x-52:focus{
    --transform-translate-x     : -13rem !important;
  }

  .sm\:focus\:-translate-x-56:focus{
    --transform-translate-x     : -14rem !important;
  }

  .sm\:focus\:-translate-x-60:focus{
    --transform-translate-x     : -15rem !important;
  }

  .sm\:focus\:-translate-x-64:focus{
    --transform-translate-x     : -16rem !important;
  }

  .sm\:focus\:-translate-x-72:focus{
    --transform-translate-x     : -18rem !important;
  }

  .sm\:focus\:-translate-x-80:focus{
    --transform-translate-x     : -20rem !important;
  }

  .sm\:focus\:-translate-x-96:focus{
    --transform-translate-x     : -24rem !important;
  }

  .sm\:focus\:-translate-x-px:focus{
    --transform-translate-x     : -1px !important;
  }

  .sm\:focus\:-translate-x-0\.5:focus{
    --transform-translate-x     : -0.125rem !important;
  }

  .sm\:focus\:-translate-x-1\.5:focus{
    --transform-translate-x     : -0.375rem !important;
  }

  .sm\:focus\:-translate-x-2\.5:focus{
    --transform-translate-x     : -0.625rem !important;
  }

  .sm\:focus\:-translate-x-3\.5:focus{
    --transform-translate-x     : -0.875rem !important;
  }

  .sm\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x     : -50% !important;
  }

  .sm\:focus\:-translate-x-1\/3:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:focus\:-translate-x-2\/3:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:focus\:-translate-x-1\/4:focus{
    --transform-translate-x     : -25% !important;
  }

  .sm\:focus\:-translate-x-2\/4:focus{
    --transform-translate-x     : -50% !important;
  }

  .sm\:focus\:-translate-x-3\/4:focus{
    --transform-translate-x     : -75% !important;
  }

  .sm\:focus\:-translate-x-1\/5:focus{
    --transform-translate-x     : -20% !important;
  }

  .sm\:focus\:-translate-x-2\/5:focus{
    --transform-translate-x     : -40% !important;
  }

  .sm\:focus\:-translate-x-3\/5:focus{
    --transform-translate-x     : -60% !important;
  }

  .sm\:focus\:-translate-x-4\/5:focus{
    --transform-translate-x     : -80% !important;
  }

  .sm\:focus\:-translate-x-1\/6:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:focus\:-translate-x-2\/6:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:focus\:-translate-x-3\/6:focus{
    --transform-translate-x     : -50% !important;
  }

  .sm\:focus\:-translate-x-4\/6:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:focus\:-translate-x-5\/6:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:focus\:-translate-x-1\/12:focus{
    --transform-translate-x     : -8.33333% !important;
  }

  .sm\:focus\:-translate-x-2\/12:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .sm\:focus\:-translate-x-3\/12:focus{
    --transform-translate-x     : -25% !important;
  }

  .sm\:focus\:-translate-x-4\/12:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .sm\:focus\:-translate-x-5\/12:focus{
    --transform-translate-x     : -41.66667% !important;
  }

  .sm\:focus\:-translate-x-6\/12:focus{
    --transform-translate-x     : -50% !important;
  }

  .sm\:focus\:-translate-x-7\/12:focus{
    --transform-translate-x     : -58.33333% !important;
  }

  .sm\:focus\:-translate-x-8\/12:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .sm\:focus\:-translate-x-9\/12:focus{
    --transform-translate-x     : -75% !important;
  }

  .sm\:focus\:-translate-x-10\/12:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .sm\:focus\:-translate-x-11\/12:focus{
    --transform-translate-x     : -91.66667% !important;
  }

  .sm\:focus\:-translate-x-full:focus{
    --transform-translate-x     : -100% !important;
  }

  .sm\:focus\:translate-y-0:focus{
    --transform-translate-y     : 0 !important;
  }

  .sm\:focus\:translate-y-1:focus{
    --transform-translate-y     : 0.25rem !important;
  }

  .sm\:focus\:translate-y-2:focus{
    --transform-translate-y     : 0.5rem !important;
  }

  .sm\:focus\:translate-y-3:focus{
    --transform-translate-y     : 0.75rem !important;
  }

  .sm\:focus\:translate-y-4:focus{
    --transform-translate-y     : 1rem !important;
  }

  .sm\:focus\:translate-y-5:focus{
    --transform-translate-y     : 1.25rem !important;
  }

  .sm\:focus\:translate-y-6:focus{
    --transform-translate-y     : 1.5rem !important;
  }

  .sm\:focus\:translate-y-7:focus{
    --transform-translate-y     : 1.75rem !important;
  }

  .sm\:focus\:translate-y-8:focus{
    --transform-translate-y     : 2rem !important;
  }

  .sm\:focus\:translate-y-9:focus{
    --transform-translate-y     : 2.25rem !important;
  }

  .sm\:focus\:translate-y-10:focus{
    --transform-translate-y     : 2.5rem !important;
  }

  .sm\:focus\:translate-y-11:focus{
    --transform-translate-y     : 2.75rem !important;
  }

  .sm\:focus\:translate-y-12:focus{
    --transform-translate-y     : 3rem !important;
  }

  .sm\:focus\:translate-y-13:focus{
    --transform-translate-y     : 3.25rem !important;
  }

  .sm\:focus\:translate-y-14:focus{
    --transform-translate-y     : 3.5rem !important;
  }

  .sm\:focus\:translate-y-15:focus{
    --transform-translate-y     : 3.75rem !important;
  }

  .sm\:focus\:translate-y-16:focus{
    --transform-translate-y     : 4rem !important;
  }

  .sm\:focus\:translate-y-20:focus{
    --transform-translate-y     : 5rem !important;
  }

  .sm\:focus\:translate-y-24:focus{
    --transform-translate-y     : 6rem !important;
  }

  .sm\:focus\:translate-y-28:focus{
    --transform-translate-y     : 7rem !important;
  }

  .sm\:focus\:translate-y-32:focus{
    --transform-translate-y     : 8rem !important;
  }

  .sm\:focus\:translate-y-36:focus{
    --transform-translate-y     : 9rem !important;
  }

  .sm\:focus\:translate-y-40:focus{
    --transform-translate-y     : 10rem !important;
  }

  .sm\:focus\:translate-y-44:focus{
    --transform-translate-y     : 11rem !important;
  }

  .sm\:focus\:translate-y-48:focus{
    --transform-translate-y     : 12rem !important;
  }

  .sm\:focus\:translate-y-52:focus{
    --transform-translate-y     : 13rem !important;
  }

  .sm\:focus\:translate-y-56:focus{
    --transform-translate-y     : 14rem !important;
  }

  .sm\:focus\:translate-y-60:focus{
    --transform-translate-y     : 15rem !important;
  }

  .sm\:focus\:translate-y-64:focus{
    --transform-translate-y     : 16rem !important;
  }

  .sm\:focus\:translate-y-72:focus{
    --transform-translate-y     : 18rem !important;
  }

  .sm\:focus\:translate-y-80:focus{
    --transform-translate-y     : 20rem !important;
  }

  .sm\:focus\:translate-y-96:focus{
    --transform-translate-y     : 24rem !important;
  }

  .sm\:focus\:translate-y-px:focus{
    --transform-translate-y     : 1px !important;
  }

  .sm\:focus\:translate-y-0\.5:focus{
    --transform-translate-y     : 0.125rem !important;
  }

  .sm\:focus\:translate-y-1\.5:focus{
    --transform-translate-y     : 0.375rem !important;
  }

  .sm\:focus\:translate-y-2\.5:focus{
    --transform-translate-y     : 0.625rem !important;
  }

  .sm\:focus\:translate-y-3\.5:focus{
    --transform-translate-y     : 0.875rem !important;
  }

  .sm\:focus\:translate-y-1\/2:focus{
    --transform-translate-y     : 50% !important;
  }

  .sm\:focus\:translate-y-1\/3:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:focus\:translate-y-2\/3:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:focus\:translate-y-1\/4:focus{
    --transform-translate-y     : 25% !important;
  }

  .sm\:focus\:translate-y-2\/4:focus{
    --transform-translate-y     : 50% !important;
  }

  .sm\:focus\:translate-y-3\/4:focus{
    --transform-translate-y     : 75% !important;
  }

  .sm\:focus\:translate-y-1\/5:focus{
    --transform-translate-y     : 20% !important;
  }

  .sm\:focus\:translate-y-2\/5:focus{
    --transform-translate-y     : 40% !important;
  }

  .sm\:focus\:translate-y-3\/5:focus{
    --transform-translate-y     : 60% !important;
  }

  .sm\:focus\:translate-y-4\/5:focus{
    --transform-translate-y     : 80% !important;
  }

  .sm\:focus\:translate-y-1\/6:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:focus\:translate-y-2\/6:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:focus\:translate-y-3\/6:focus{
    --transform-translate-y     : 50% !important;
  }

  .sm\:focus\:translate-y-4\/6:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:focus\:translate-y-5\/6:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:focus\:translate-y-1\/12:focus{
    --transform-translate-y     : 8.333333% !important;
  }

  .sm\:focus\:translate-y-2\/12:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .sm\:focus\:translate-y-3\/12:focus{
    --transform-translate-y     : 25% !important;
  }

  .sm\:focus\:translate-y-4\/12:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .sm\:focus\:translate-y-5\/12:focus{
    --transform-translate-y     : 41.666667% !important;
  }

  .sm\:focus\:translate-y-6\/12:focus{
    --transform-translate-y     : 50% !important;
  }

  .sm\:focus\:translate-y-7\/12:focus{
    --transform-translate-y     : 58.333333% !important;
  }

  .sm\:focus\:translate-y-8\/12:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .sm\:focus\:translate-y-9\/12:focus{
    --transform-translate-y     : 75% !important;
  }

  .sm\:focus\:translate-y-10\/12:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .sm\:focus\:translate-y-11\/12:focus{
    --transform-translate-y     : 91.666667% !important;
  }

  .sm\:focus\:translate-y-full:focus{
    --transform-translate-y     : 100% !important;
  }

  .sm\:focus\:-translate-y-1:focus{
    --transform-translate-y     : -0.25rem !important;
  }

  .sm\:focus\:-translate-y-2:focus{
    --transform-translate-y     : -0.5rem !important;
  }

  .sm\:focus\:-translate-y-3:focus{
    --transform-translate-y     : -0.75rem !important;
  }

  .sm\:focus\:-translate-y-4:focus{
    --transform-translate-y     : -1rem !important;
  }

  .sm\:focus\:-translate-y-5:focus{
    --transform-translate-y     : -1.25rem !important;
  }

  .sm\:focus\:-translate-y-6:focus{
    --transform-translate-y     : -1.5rem !important;
  }

  .sm\:focus\:-translate-y-7:focus{
    --transform-translate-y     : -1.75rem !important;
  }

  .sm\:focus\:-translate-y-8:focus{
    --transform-translate-y     : -2rem !important;
  }

  .sm\:focus\:-translate-y-9:focus{
    --transform-translate-y     : -2.25rem !important;
  }

  .sm\:focus\:-translate-y-10:focus{
    --transform-translate-y     : -2.5rem !important;
  }

  .sm\:focus\:-translate-y-11:focus{
    --transform-translate-y     : -2.75rem !important;
  }

  .sm\:focus\:-translate-y-12:focus{
    --transform-translate-y     : -3rem !important;
  }

  .sm\:focus\:-translate-y-13:focus{
    --transform-translate-y     : -3.25rem !important;
  }

  .sm\:focus\:-translate-y-14:focus{
    --transform-translate-y     : -3.5rem !important;
  }

  .sm\:focus\:-translate-y-15:focus{
    --transform-translate-y     : -3.75rem !important;
  }

  .sm\:focus\:-translate-y-16:focus{
    --transform-translate-y     : -4rem !important;
  }

  .sm\:focus\:-translate-y-20:focus{
    --transform-translate-y     : -5rem !important;
  }

  .sm\:focus\:-translate-y-24:focus{
    --transform-translate-y     : -6rem !important;
  }

  .sm\:focus\:-translate-y-28:focus{
    --transform-translate-y     : -7rem !important;
  }

  .sm\:focus\:-translate-y-32:focus{
    --transform-translate-y     : -8rem !important;
  }

  .sm\:focus\:-translate-y-36:focus{
    --transform-translate-y     : -9rem !important;
  }

  .sm\:focus\:-translate-y-40:focus{
    --transform-translate-y     : -10rem !important;
  }

  .sm\:focus\:-translate-y-44:focus{
    --transform-translate-y     : -11rem !important;
  }

  .sm\:focus\:-translate-y-48:focus{
    --transform-translate-y     : -12rem !important;
  }

  .sm\:focus\:-translate-y-52:focus{
    --transform-translate-y     : -13rem !important;
  }

  .sm\:focus\:-translate-y-56:focus{
    --transform-translate-y     : -14rem !important;
  }

  .sm\:focus\:-translate-y-60:focus{
    --transform-translate-y     : -15rem !important;
  }

  .sm\:focus\:-translate-y-64:focus{
    --transform-translate-y     : -16rem !important;
  }

  .sm\:focus\:-translate-y-72:focus{
    --transform-translate-y     : -18rem !important;
  }

  .sm\:focus\:-translate-y-80:focus{
    --transform-translate-y     : -20rem !important;
  }

  .sm\:focus\:-translate-y-96:focus{
    --transform-translate-y     : -24rem !important;
  }

  .sm\:focus\:-translate-y-px:focus{
    --transform-translate-y     : -1px !important;
  }

  .sm\:focus\:-translate-y-0\.5:focus{
    --transform-translate-y     : -0.125rem !important;
  }

  .sm\:focus\:-translate-y-1\.5:focus{
    --transform-translate-y     : -0.375rem !important;
  }

  .sm\:focus\:-translate-y-2\.5:focus{
    --transform-translate-y     : -0.625rem !important;
  }

  .sm\:focus\:-translate-y-3\.5:focus{
    --transform-translate-y     : -0.875rem !important;
  }

  .sm\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y     : -50% !important;
  }

  .sm\:focus\:-translate-y-1\/3:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:focus\:-translate-y-2\/3:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:focus\:-translate-y-1\/4:focus{
    --transform-translate-y     : -25% !important;
  }

  .sm\:focus\:-translate-y-2\/4:focus{
    --transform-translate-y     : -50% !important;
  }

  .sm\:focus\:-translate-y-3\/4:focus{
    --transform-translate-y     : -75% !important;
  }

  .sm\:focus\:-translate-y-1\/5:focus{
    --transform-translate-y     : -20% !important;
  }

  .sm\:focus\:-translate-y-2\/5:focus{
    --transform-translate-y     : -40% !important;
  }

  .sm\:focus\:-translate-y-3\/5:focus{
    --transform-translate-y     : -60% !important;
  }

  .sm\:focus\:-translate-y-4\/5:focus{
    --transform-translate-y     : -80% !important;
  }

  .sm\:focus\:-translate-y-1\/6:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:focus\:-translate-y-2\/6:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:focus\:-translate-y-3\/6:focus{
    --transform-translate-y     : -50% !important;
  }

  .sm\:focus\:-translate-y-4\/6:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:focus\:-translate-y-5\/6:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:focus\:-translate-y-1\/12:focus{
    --transform-translate-y     : -8.33333% !important;
  }

  .sm\:focus\:-translate-y-2\/12:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .sm\:focus\:-translate-y-3\/12:focus{
    --transform-translate-y     : -25% !important;
  }

  .sm\:focus\:-translate-y-4\/12:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .sm\:focus\:-translate-y-5\/12:focus{
    --transform-translate-y     : -41.66667% !important;
  }

  .sm\:focus\:-translate-y-6\/12:focus{
    --transform-translate-y     : -50% !important;
  }

  .sm\:focus\:-translate-y-7\/12:focus{
    --transform-translate-y     : -58.33333% !important;
  }

  .sm\:focus\:-translate-y-8\/12:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .sm\:focus\:-translate-y-9\/12:focus{
    --transform-translate-y     : -75% !important;
  }

  .sm\:focus\:-translate-y-10\/12:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .sm\:focus\:-translate-y-11\/12:focus{
    --transform-translate-y     : -91.66667% !important;
  }

  .sm\:focus\:-translate-y-full:focus{
    --transform-translate-y     : -100% !important;
  }

  .sm\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .sm\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .sm\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .sm\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .sm\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .sm\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .sm\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .sm\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .sm\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .sm\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .sm\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .sm\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .sm\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .sm\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .group:hover .sm\:group-hover\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .group:hover .sm\:group-hover\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .group:hover .sm\:group-hover\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .group:hover .sm\:group-hover\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .group:hover .sm\:group-hover\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .group:hover .sm\:group-hover\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .group:hover .sm\:group-hover\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .group:hover .sm\:group-hover\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .group:hover .sm\:group-hover\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .sm\:hover\:skew-x-0:hover{
    --transform-skew-x     : 0 !important;
  }

  .sm\:hover\:skew-x-3:hover{
    --transform-skew-x     : 3deg !important;
  }

  .sm\:hover\:skew-x-6:hover{
    --transform-skew-x     : 6deg !important;
  }

  .sm\:hover\:skew-x-12:hover{
    --transform-skew-x     : 12deg !important;
  }

  .sm\:hover\:-skew-x-12:hover{
    --transform-skew-x     : -12deg !important;
  }

  .sm\:hover\:-skew-x-6:hover{
    --transform-skew-x     : -6deg !important;
  }

  .sm\:hover\:-skew-x-3:hover{
    --transform-skew-x     : -3deg !important;
  }

  .sm\:hover\:skew-y-0:hover{
    --transform-skew-y     : 0 !important;
  }

  .sm\:hover\:skew-y-3:hover{
    --transform-skew-y     : 3deg !important;
  }

  .sm\:hover\:skew-y-6:hover{
    --transform-skew-y     : 6deg !important;
  }

  .sm\:hover\:skew-y-12:hover{
    --transform-skew-y     : 12deg !important;
  }

  .sm\:hover\:-skew-y-12:hover{
    --transform-skew-y     : -12deg !important;
  }

  .sm\:hover\:-skew-y-6:hover{
    --transform-skew-y     : -6deg !important;
  }

  .sm\:hover\:-skew-y-3:hover{
    --transform-skew-y     : -3deg !important;
  }

  .sm\:focus\:skew-x-0:focus{
    --transform-skew-x     : 0 !important;
  }

  .sm\:focus\:skew-x-3:focus{
    --transform-skew-x     : 3deg !important;
  }

  .sm\:focus\:skew-x-6:focus{
    --transform-skew-x     : 6deg !important;
  }

  .sm\:focus\:skew-x-12:focus{
    --transform-skew-x     : 12deg !important;
  }

  .sm\:focus\:-skew-x-12:focus{
    --transform-skew-x     : -12deg !important;
  }

  .sm\:focus\:-skew-x-6:focus{
    --transform-skew-x     : -6deg !important;
  }

  .sm\:focus\:-skew-x-3:focus{
    --transform-skew-x     : -3deg !important;
  }

  .sm\:focus\:skew-y-0:focus{
    --transform-skew-y     : 0 !important;
  }

  .sm\:focus\:skew-y-3:focus{
    --transform-skew-y     : 3deg !important;
  }

  .sm\:focus\:skew-y-6:focus{
    --transform-skew-y     : 6deg !important;
  }

  .sm\:focus\:skew-y-12:focus{
    --transform-skew-y     : 12deg !important;
  }

  .sm\:focus\:-skew-y-12:focus{
    --transform-skew-y     : -12deg !important;
  }

  .sm\:focus\:-skew-y-6:focus{
    --transform-skew-y     : -6deg !important;
  }

  .sm\:focus\:-skew-y-3:focus{
    --transform-skew-y     : -3deg !important;
  }

  .sm\:transition-none{
    transition-property     : none !important;
  }

  .sm\:transition-all{
    transition-property     : all !important;
  }

  .sm\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .sm\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .sm\:transition-opacity{
    transition-property     : opacity !important;
  }

  .sm\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .sm\:transition-transform{
    transition-property     : transform !important;
  }

  .group:hover .sm\:group-hover\:transition-none{
    transition-property     : none !important;
  }

  .group:hover .sm\:group-hover\:transition-all{
    transition-property     : all !important;
  }

  .group:hover .sm\:group-hover\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .group:hover .sm\:group-hover\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .group:hover .sm\:group-hover\:transition-opacity{
    transition-property     : opacity !important;
  }

  .group:hover .sm\:group-hover\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .group:hover .sm\:group-hover\:transition-transform{
    transition-property     : transform !important;
  }

  .sm\:hover\:transition-none:hover{
    transition-property     : none !important;
  }

  .sm\:hover\:transition-all:hover{
    transition-property     : all !important;
  }

  .sm\:hover\:transition:hover{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .sm\:hover\:transition-colors:hover{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .sm\:hover\:transition-opacity:hover{
    transition-property     : opacity !important;
  }

  .sm\:hover\:transition-shadow:hover{
    transition-property     : box-shadow !important;
  }

  .sm\:hover\:transition-transform:hover{
    transition-property     : transform !important;
  }

  .sm\:focus\:transition-none:focus{
    transition-property     : none !important;
  }

  .sm\:focus\:transition-all:focus{
    transition-property     : all !important;
  }

  .sm\:focus\:transition:focus{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .sm\:focus\:transition-colors:focus{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .sm\:focus\:transition-opacity:focus{
    transition-property     : opacity !important;
  }

  .sm\:focus\:transition-shadow:focus{
    transition-property     : box-shadow !important;
  }

  .sm\:focus\:transition-transform:focus{
    transition-property     : transform !important;
  }

  .sm\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .sm\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .sm\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .sm\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .group:hover .sm\:group-hover\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .group:hover .sm\:group-hover\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .group:hover .sm\:group-hover\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .group:hover .sm\:group-hover\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .sm\:hover\:ease-linear:hover{
    transition-timing-function     : linear !important;
  }

  .sm\:hover\:ease-in:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .sm\:hover\:ease-out:hover{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .sm\:hover\:ease-in-out:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .sm\:focus\:ease-linear:focus{
    transition-timing-function     : linear !important;
  }

  .sm\:focus\:ease-in:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .sm\:focus\:ease-out:focus{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .sm\:focus\:ease-in-out:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .sm\:duration-75{
    transition-duration     : 75ms !important;
  }

  .sm\:duration-100{
    transition-duration     : 100ms !important;
  }

  .sm\:duration-150{
    transition-duration     : 150ms !important;
  }

  .sm\:duration-200{
    transition-duration     : 200ms !important;
  }

  .sm\:duration-300{
    transition-duration     : 300ms !important;
  }

  .sm\:duration-500{
    transition-duration     : 500ms !important;
  }

  .sm\:duration-700{
    transition-duration     : 700ms !important;
  }

  .sm\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .group:hover .sm\:group-hover\:duration-75{
    transition-duration     : 75ms !important;
  }

  .group:hover .sm\:group-hover\:duration-100{
    transition-duration     : 100ms !important;
  }

  .group:hover .sm\:group-hover\:duration-150{
    transition-duration     : 150ms !important;
  }

  .group:hover .sm\:group-hover\:duration-200{
    transition-duration     : 200ms !important;
  }

  .group:hover .sm\:group-hover\:duration-300{
    transition-duration     : 300ms !important;
  }

  .group:hover .sm\:group-hover\:duration-500{
    transition-duration     : 500ms !important;
  }

  .group:hover .sm\:group-hover\:duration-700{
    transition-duration     : 700ms !important;
  }

  .group:hover .sm\:group-hover\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .sm\:hover\:duration-75:hover{
    transition-duration     : 75ms !important;
  }

  .sm\:hover\:duration-100:hover{
    transition-duration     : 100ms !important;
  }

  .sm\:hover\:duration-150:hover{
    transition-duration     : 150ms !important;
  }

  .sm\:hover\:duration-200:hover{
    transition-duration     : 200ms !important;
  }

  .sm\:hover\:duration-300:hover{
    transition-duration     : 300ms !important;
  }

  .sm\:hover\:duration-500:hover{
    transition-duration     : 500ms !important;
  }

  .sm\:hover\:duration-700:hover{
    transition-duration     : 700ms !important;
  }

  .sm\:hover\:duration-1000:hover{
    transition-duration     : 1000ms !important;
  }

  .sm\:focus\:duration-75:focus{
    transition-duration     : 75ms !important;
  }

  .sm\:focus\:duration-100:focus{
    transition-duration     : 100ms !important;
  }

  .sm\:focus\:duration-150:focus{
    transition-duration     : 150ms !important;
  }

  .sm\:focus\:duration-200:focus{
    transition-duration     : 200ms !important;
  }

  .sm\:focus\:duration-300:focus{
    transition-duration     : 300ms !important;
  }

  .sm\:focus\:duration-500:focus{
    transition-duration     : 500ms !important;
  }

  .sm\:focus\:duration-700:focus{
    transition-duration     : 700ms !important;
  }

  .sm\:focus\:duration-1000:focus{
    transition-duration     : 1000ms !important;
  }

  .sm\:delay-75{
    transition-delay     : 75ms !important;
  }

  .sm\:delay-100{
    transition-delay     : 100ms !important;
  }

  .sm\:delay-150{
    transition-delay     : 150ms !important;
  }

  .sm\:delay-200{
    transition-delay     : 200ms !important;
  }

  .sm\:delay-300{
    transition-delay     : 300ms !important;
  }

  .sm\:delay-500{
    transition-delay     : 500ms !important;
  }

  .sm\:delay-700{
    transition-delay     : 700ms !important;
  }

  .sm\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .group:hover .sm\:group-hover\:delay-75{
    transition-delay     : 75ms !important;
  }

  .group:hover .sm\:group-hover\:delay-100{
    transition-delay     : 100ms !important;
  }

  .group:hover .sm\:group-hover\:delay-150{
    transition-delay     : 150ms !important;
  }

  .group:hover .sm\:group-hover\:delay-200{
    transition-delay     : 200ms !important;
  }

  .group:hover .sm\:group-hover\:delay-300{
    transition-delay     : 300ms !important;
  }

  .group:hover .sm\:group-hover\:delay-500{
    transition-delay     : 500ms !important;
  }

  .group:hover .sm\:group-hover\:delay-700{
    transition-delay     : 700ms !important;
  }

  .group:hover .sm\:group-hover\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .sm\:hover\:delay-75:hover{
    transition-delay     : 75ms !important;
  }

  .sm\:hover\:delay-100:hover{
    transition-delay     : 100ms !important;
  }

  .sm\:hover\:delay-150:hover{
    transition-delay     : 150ms !important;
  }

  .sm\:hover\:delay-200:hover{
    transition-delay     : 200ms !important;
  }

  .sm\:hover\:delay-300:hover{
    transition-delay     : 300ms !important;
  }

  .sm\:hover\:delay-500:hover{
    transition-delay     : 500ms !important;
  }

  .sm\:hover\:delay-700:hover{
    transition-delay     : 700ms !important;
  }

  .sm\:hover\:delay-1000:hover{
    transition-delay     : 1000ms !important;
  }

  .sm\:focus\:delay-75:focus{
    transition-delay     : 75ms !important;
  }

  .sm\:focus\:delay-100:focus{
    transition-delay     : 100ms !important;
  }

  .sm\:focus\:delay-150:focus{
    transition-delay     : 150ms !important;
  }

  .sm\:focus\:delay-200:focus{
    transition-delay     : 200ms !important;
  }

  .sm\:focus\:delay-300:focus{
    transition-delay     : 300ms !important;
  }

  .sm\:focus\:delay-500:focus{
    transition-delay     : 500ms !important;
  }

  .sm\:focus\:delay-700:focus{
    transition-delay     : 700ms !important;
  }

  .sm\:focus\:delay-1000:focus{
    transition-delay     : 1000ms !important;
  }

  .sm\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .sm\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .sm\: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;
  }

  .sm\: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;
  }

  .sm\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .group:hover .sm\:group-hover\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .group:hover .sm\:group-hover\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\: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;
  }

  .group:hover .sm\:group-hover\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .sm\:hover\:animate-none:hover{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .sm\:hover\:animate-spin:hover{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .sm\:hover\:animate-ping:hover{
    -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;
  }

  .sm\:hover\:animate-pulse:hover{
    -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;
  }

  .sm\:hover\:animate-bounce:hover{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .sm\:focus\:animate-none:focus{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .sm\:focus\:animate-spin:focus{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .sm\:focus\:animate-ping:focus{
    -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;
  }

  .sm\:focus\:animate-pulse:focus{
    -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;
  }

  .sm\:focus\:animate-bounce:focus{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }
}

@media (min-width: 768px){
  .md\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .md\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .md\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .md\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .md\:container{
      max-width     : 1280px;
    }
  }

  .group:hover .md\:group-hover\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .md\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .md\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .md\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .md\:container{
      max-width     : 1280px;
    }
  }

  .md\:hover\:container:hover{
    width     : 100%;
  }

  @media (min-width: 640px){
    .md\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .md\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .md\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .md\:container{
      max-width     : 1280px;
    }
  }

  .md\:focus\:container:focus{
    width     : 100%;
  }

  @media (min-width: 640px){
    .md\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .md\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .md\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .md\:container{
      max-width     : 1280px;
    }
  }

  .md\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .md\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .md\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .md\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .md\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .md\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .md\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .md\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .md\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .md\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .md\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .md\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .md\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .md\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .md\:prose code::before{
    content     : "`";
  }

  .md\:prose code::after{
    content     : "`";
  }

  .md\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .md\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .md\:prose pre code::before{
    content     : "";
  }

  .md\:prose pre code::after{
    content     : "";
  }

  .md\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .md\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .md\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .md\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .md\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .md\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:prose h2 code{
    font-size     : 0.875em;
  }

  .md\:prose h3 code{
    font-size     : 0.9em;
  }

  .md\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:prose ol > li:before{
    left     : 0;
  }

  .md\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:prose ul ul, .md\:prose ul ol, .md\:prose ol ul, .md\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:prose hr + *{
    margin-top     : 0;
  }

  .md\:prose h2 + *{
    margin-top     : 0;
  }

  .md\:prose h3 + *{
    margin-top     : 0;
  }

  .md\:prose h4 + *{
    margin-top     : 0;
  }

  .md\:prose thead th:first-child{
    padding-left     : 0;
  }

  .md\:prose thead th:last-child{
    padding-right     : 0;
  }

  .md\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .md\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .md\:prose > :first-child{
    margin-top     : 0;
  }

  .md\:prose > :last-child{
    margin-bottom     : 0;
  }

  .md\:prose h1, .md\:prose h2, .md\:prose h3, .md\:prose h4{
    color     : #161e2e;
  }

  .md\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .md\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .md\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .md\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .md\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .md\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .md\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .md\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .md\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .md\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .md\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .md\:prose-sm ol > li:before{
    left     : 0;
  }

  .md\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .md\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .md\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:prose-sm ul ul, .md\:prose-sm ul ol, .md\:prose-sm ol ul, .md\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .md\:prose-sm hr + *{
    margin-top     : 0;
  }

  .md\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .md\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .md\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .md\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .md\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .md\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .md\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .md\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .md\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .md\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .md\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .md\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .md\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .md\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .md\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .md\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .md\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .md\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .md\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .md\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .md\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:prose-lg ol > li:before{
    left     : 0;
  }

  .md\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .md\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-lg ul ul, .md\:prose-lg ul ol, .md\:prose-lg ol ul, .md\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .md\:prose-lg hr + *{
    margin-top     : 0;
  }

  .md\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .md\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .md\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .md\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .md\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .md\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .md\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .md\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .md\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .md\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .md\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .md\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .md\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .md\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .md\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .md\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .md\:prose-xl code{
    font-size     : 0.9em;
  }

  .md\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .md\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .md\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .md\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .md\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .md\:prose-xl ol > li:before{
    left     : 0;
  }

  .md\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .md\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .md\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:prose-xl ul ul, .md\:prose-xl ul ol, .md\:prose-xl ol ul, .md\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .md\:prose-xl hr + *{
    margin-top     : 0;
  }

  .md\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .md\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .md\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .md\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .md\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .md\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .md\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .md\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .md\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .md\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .md\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .md\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .md\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .md\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .md\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .md\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .md\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .md\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .md\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .md\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .md\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .md\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:prose-2xl ol > li:before{
    left     : 0;
  }

  .md\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .md\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .md\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:prose-2xl ul ul, .md\:prose-2xl ul ol, .md\:prose-2xl ol ul, .md\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .md\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .md\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .md\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .md\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .md\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .md\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .md\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .md\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .md\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .md\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .group:hover .md\:group-hover\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .group:hover .md\:group-hover\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .group:hover .md\:group-hover\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .group:hover .md\:group-hover\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .group:hover .md\:group-hover\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .group:hover .md\:group-hover\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .group:hover .md\:group-hover\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .md\:group-hover\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .group:hover .md\:group-hover\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .group:hover .md\:group-hover\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .group:hover .md\:group-hover\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .md\:group-hover\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .group:hover .md\:group-hover\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .md\:group-hover\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .group:hover .md\:group-hover\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .group:hover .md\:group-hover\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .group:hover .md\:group-hover\:prose code::before{
    content     : "`";
  }

  .group:hover .md\:group-hover\:prose code::after{
    content     : "`";
  }

  .group:hover .md\:group-hover\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .group:hover .md\:group-hover\:prose pre code::before{
    content     : "";
  }

  .group:hover .md\:group-hover\:prose pre code::after{
    content     : "";
  }

  .group:hover .md\:group-hover\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .group:hover .md\:group-hover\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .group:hover .md\:group-hover\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .md\:group-hover\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .group:hover .md\:group-hover\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .group:hover .md\:group-hover\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .md\:group-hover\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .group:hover .md\:group-hover\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose h2 code{
    font-size     : 0.875em;
  }

  .group:hover .md\:group-hover\:prose h3 code{
    font-size     : 0.9em;
  }

  .group:hover .md\:group-hover\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .md\:group-hover\:prose ol > li:before{
    left     : 0;
  }

  .group:hover .md\:group-hover\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .md\:group-hover\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .md\:group-hover\:prose ul ul, .group:hover .md\:group-hover\:prose ul ol, .group:hover .md\:group-hover\:prose ol ul, .group:hover .md\:group-hover\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .md\:group-hover\:prose hr + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose h2 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose h3 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose h4 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose > :first-child{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose h1, .group:hover .md\:group-hover\:prose h2, .group:hover .md\:group-hover\:prose h3, .group:hover .md\:group-hover\:prose h4{
    color     : #161e2e;
  }

  .group:hover .md\:group-hover\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .group:hover .md\:group-hover\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .group:hover .md\:group-hover\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .group:hover .md\:group-hover\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .group:hover .md\:group-hover\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .md\:group-hover\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .group:hover .md\:group-hover\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .md\:group-hover\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .md\:group-hover\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .md\:group-hover\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .group:hover .md\:group-hover\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .group:hover .md\:group-hover\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .group:hover .md\:group-hover\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .md\:group-hover\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .group:hover .md\:group-hover\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .md\:group-hover\:prose-sm ol > li:before{
    left     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .md\:group-hover\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .group:hover .md\:group-hover\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .md\:group-hover\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .md\:group-hover\:prose-sm ul ul, .group:hover .md\:group-hover\:prose-sm ul ol, .group:hover .md\:group-hover\:prose-sm ol ul, .group:hover .md\:group-hover\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .md\:group-hover\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .group:hover .md\:group-hover\:prose-sm hr + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .group:hover .md\:group-hover\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .md\:group-hover\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .md\:group-hover\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .group:hover .md\:group-hover\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .group:hover .md\:group-hover\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .group:hover .md\:group-hover\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .group:hover .md\:group-hover\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .group:hover .md\:group-hover\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .md\:group-hover\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .md\:group-hover\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .md\:group-hover\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .md\:group-hover\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .md\:group-hover\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .group:hover .md\:group-hover\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .group:hover .md\:group-hover\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .group:hover .md\:group-hover\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .group:hover .md\:group-hover\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .md\:group-hover\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .md\:group-hover\:prose-lg ol > li:before{
    left     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .md\:group-hover\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .group:hover .md\:group-hover\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-lg ul ul, .group:hover .md\:group-hover\:prose-lg ul ol, .group:hover .md\:group-hover\:prose-lg ol ul, .group:hover .md\:group-hover\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .group:hover .md\:group-hover\:prose-lg hr + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .group:hover .md\:group-hover\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .md\:group-hover\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .md\:group-hover\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .group:hover .md\:group-hover\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .group:hover .md\:group-hover\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .group:hover .md\:group-hover\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .group:hover .md\:group-hover\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .md\:group-hover\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .group:hover .md\:group-hover\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .md\:group-hover\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .group:hover .md\:group-hover\:prose-xl code{
    font-size     : 0.9em;
  }

  .group:hover .md\:group-hover\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .group:hover .md\:group-hover\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .group:hover .md\:group-hover\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .group:hover .md\:group-hover\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .group:hover .md\:group-hover\:prose-xl ol > li:before{
    left     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .group:hover .md\:group-hover\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .group:hover .md\:group-hover\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .md\:group-hover\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .md\:group-hover\:prose-xl ul ul, .group:hover .md\:group-hover\:prose-xl ul ol, .group:hover .md\:group-hover\:prose-xl ol ul, .group:hover .md\:group-hover\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .md\:group-hover\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .group:hover .md\:group-hover\:prose-xl hr + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .group:hover .md\:group-hover\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .md\:group-hover\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .md\:group-hover\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .group:hover .md\:group-hover\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .group:hover .md\:group-hover\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .group:hover .md\:group-hover\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .group:hover .md\:group-hover\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .group:hover .md\:group-hover\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .group:hover .md\:group-hover\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .md\:group-hover\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .md\:group-hover\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .group:hover .md\:group-hover\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .group:hover .md\:group-hover\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .md\:group-hover\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .group:hover .md\:group-hover\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .md\:group-hover\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .md\:group-hover\:prose-2xl ol > li:before{
    left     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .md\:group-hover\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .group:hover .md\:group-hover\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .md\:group-hover\:prose-2xl ul ul, .group:hover .md\:group-hover\:prose-2xl ul ol, .group:hover .md\:group-hover\:prose-2xl ol ul, .group:hover .md\:group-hover\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .md\:group-hover\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .md\:group-hover\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .group:hover .md\:group-hover\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .md\:group-hover\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .md\:group-hover\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .md\:group-hover\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .md\:hover\:prose:hover{
    color     : #374151;
    max-width     : 65ch;
  }

  .md\:hover\:prose:hover [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose:hover a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .md\:hover\:prose:hover strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .md\:hover\:prose:hover ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:hover\:prose:hover ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .md\:hover\:prose:hover ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .md\:hover\:prose:hover ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .md\:hover\:prose:hover ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .md\:hover\:prose:hover hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:hover\:prose:hover blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .md\:hover\:prose:hover blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .md\:hover\:prose:hover blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .md\:hover\:prose:hover h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:hover\:prose:hover h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .md\:hover\:prose:hover h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:hover\:prose:hover h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .md\:hover\:prose:hover figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .md\:hover\:prose:hover code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .md\:hover\:prose:hover code::before{
    content     : "`";
  }

  .md\:hover\:prose:hover code::after{
    content     : "`";
  }

  .md\:hover\:prose:hover pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .md\:hover\:prose:hover pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .md\:hover\:prose:hover pre code::before{
    content     : "";
  }

  .md\:hover\:prose:hover pre code::after{
    content     : "";
  }

  .md\:hover\:prose:hover table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .md\:hover\:prose:hover thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .md\:hover\:prose:hover thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:hover\:prose:hover tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .md\:hover\:prose:hover tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .md\:hover\:prose:hover tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:hover\:prose:hover{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .md\:hover\:prose:hover p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:hover\:prose:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:hover\:prose:hover h2 code{
    font-size     : 0.875em;
  }

  .md\:hover\:prose:hover h3 code{
    font-size     : 0.9em;
  }

  .md\:hover\:prose:hover ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:hover\:prose:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:hover\:prose:hover ol > li:before{
    left     : 0;
  }

  .md\:hover\:prose:hover > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:hover\:prose:hover > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:hover\:prose:hover > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:hover\:prose:hover > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:hover\:prose:hover > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:hover\:prose:hover ul ul, .md\:hover\:prose:hover ul ol, .md\:hover\:prose:hover ol ul, .md\:hover\:prose:hover ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:hover\:prose:hover hr + *{
    margin-top     : 0;
  }

  .md\:hover\:prose:hover h2 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose:hover h3 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose:hover h4 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose:hover thead th:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose:hover thead th:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose:hover tbody td:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose:hover tbody td:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose:hover > :first-child{
    margin-top     : 0;
  }

  .md\:hover\:prose:hover > :last-child{
    margin-bottom     : 0;
  }

  .md\:hover\:prose:hover h1, .md\:hover\:prose:hover h2, .md\:hover\:prose:hover h3, .md\:hover\:prose:hover h4{
    color     : #161e2e;
  }

  .md\:hover\:prose-sm:hover{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .md\:hover\:prose-sm:hover p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:hover\:prose-sm:hover blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .md\:hover\:prose-sm:hover h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .md\:hover\:prose-sm:hover h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .md\:hover\:prose-sm:hover h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:hover\:prose-sm:hover h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .md\:hover\:prose-sm:hover img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:hover\:prose-sm:hover video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:hover\:prose-sm:hover figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:hover\:prose-sm:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:hover\:prose-sm:hover figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .md\:hover\:prose-sm:hover code{
    font-size     : 0.8571429em;
  }

  .md\:hover\:prose-sm:hover h2 code{
    font-size     : 0.9em;
  }

  .md\:hover\:prose-sm:hover h3 code{
    font-size     : 0.8888889em;
  }

  .md\:hover\:prose-sm:hover pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:hover\:prose-sm:hover ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .md\:hover\:prose-sm:hover ol > li{
    padding-left     : 1.5714286em;
  }

  .md\:hover\:prose-sm:hover ol > li:before{
    left     : 0;
  }

  .md\:hover\:prose-sm:hover ul > li{
    padding-left     : 1.5714286em;
  }

  .md\:hover\:prose-sm:hover ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .md\:hover\:prose-sm:hover > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:hover\:prose-sm:hover > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:hover\:prose-sm:hover ul ul, .md\:hover\:prose-sm:hover ul ol, .md\:hover\:prose-sm:hover ol ul, .md\:hover\:prose-sm:hover ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:hover\:prose-sm:hover hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .md\:hover\:prose-sm:hover hr + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-sm:hover h2 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-sm:hover h3 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-sm:hover h4 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-sm:hover table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .md\:hover\:prose-sm:hover thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:hover\:prose-sm:hover thead th:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-sm:hover thead th:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-sm:hover tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:hover\:prose-sm:hover tbody td:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-sm:hover tbody td:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-sm:hover > :first-child{
    margin-top     : 0;
  }

  .md\:hover\:prose-sm:hover > :last-child{
    margin-bottom     : 0;
  }

  .md\:hover\:prose-lg:hover{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .md\:hover\:prose-lg:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .md\:hover\:prose-lg:hover blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .md\:hover\:prose-lg:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .md\:hover\:prose-lg:hover h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .md\:hover\:prose-lg:hover h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:hover\:prose-lg:hover h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:hover\:prose-lg:hover img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:hover\:prose-lg:hover video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:hover\:prose-lg:hover figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:hover\:prose-lg:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:hover\:prose-lg:hover figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .md\:hover\:prose-lg:hover code{
    font-size     : 0.8888889em;
  }

  .md\:hover\:prose-lg:hover h2 code{
    font-size     : 0.8666667em;
  }

  .md\:hover\:prose-lg:hover h3 code{
    font-size     : 0.875em;
  }

  .md\:hover\:prose-lg:hover pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .md\:hover\:prose-lg:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:hover\:prose-lg:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:hover\:prose-lg:hover ol > li:before{
    left     : 0;
  }

  .md\:hover\:prose-lg:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:hover\:prose-lg:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .md\:hover\:prose-lg:hover > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:hover\:prose-lg:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-lg:hover ul ul, .md\:hover\:prose-lg:hover ul ol, .md\:hover\:prose-lg:hover ol ul, .md\:hover\:prose-lg:hover ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:hover\:prose-lg:hover hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .md\:hover\:prose-lg:hover hr + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-lg:hover h2 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-lg:hover h3 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-lg:hover h4 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-lg:hover table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .md\:hover\:prose-lg:hover thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:hover\:prose-lg:hover thead th:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-lg:hover thead th:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-lg:hover tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:hover\:prose-lg:hover tbody td:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-lg:hover tbody td:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-lg:hover > :first-child{
    margin-top     : 0;
  }

  .md\:hover\:prose-lg:hover > :last-child{
    margin-bottom     : 0;
  }

  .md\:hover\:prose-xl:hover{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .md\:hover\:prose-xl:hover p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose-xl:hover [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .md\:hover\:prose-xl:hover blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .md\:hover\:prose-xl:hover h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .md\:hover\:prose-xl:hover h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:hover\:prose-xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .md\:hover\:prose-xl:hover h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:hover\:prose-xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:hover\:prose-xl:hover figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .md\:hover\:prose-xl:hover code{
    font-size     : 0.9em;
  }

  .md\:hover\:prose-xl:hover h2 code{
    font-size     : 0.8611111em;
  }

  .md\:hover\:prose-xl:hover h3 code{
    font-size     : 0.9em;
  }

  .md\:hover\:prose-xl:hover pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .md\:hover\:prose-xl:hover ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose-xl:hover ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose-xl:hover li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .md\:hover\:prose-xl:hover ol > li{
    padding-left     : 1.8em;
  }

  .md\:hover\:prose-xl:hover ol > li:before{
    left     : 0;
  }

  .md\:hover\:prose-xl:hover ul > li{
    padding-left     : 1.8em;
  }

  .md\:hover\:prose-xl:hover ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .md\:hover\:prose-xl:hover > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:hover\:prose-xl:hover > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:hover\:prose-xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose-xl:hover > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:hover\:prose-xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:hover\:prose-xl:hover ul ul, .md\:hover\:prose-xl:hover ul ol, .md\:hover\:prose-xl:hover ol ul, .md\:hover\:prose-xl:hover ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:hover\:prose-xl:hover hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .md\:hover\:prose-xl:hover hr + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-xl:hover h2 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-xl:hover h3 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-xl:hover h4 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-xl:hover table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .md\:hover\:prose-xl:hover thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:hover\:prose-xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-xl:hover tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:hover\:prose-xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-xl:hover > :first-child{
    margin-top     : 0;
  }

  .md\:hover\:prose-xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .md\:hover\:prose-2xl:hover{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .md\:hover\:prose-2xl:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .md\:hover\:prose-2xl:hover blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .md\:hover\:prose-2xl:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .md\:hover\:prose-2xl:hover h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .md\:hover\:prose-2xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .md\:hover\:prose-2xl:hover h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:hover\:prose-2xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-2xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-2xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:hover\:prose-2xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:hover\:prose-2xl:hover figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .md\:hover\:prose-2xl:hover code{
    font-size     : 0.8333333em;
  }

  .md\:hover\:prose-2xl:hover h2 code{
    font-size     : 0.875em;
  }

  .md\:hover\:prose-2xl:hover h3 code{
    font-size     : 0.8888889em;
  }

  .md\:hover\:prose-2xl:hover pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .md\:hover\:prose-2xl:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:hover\:prose-2xl:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:hover\:prose-2xl:hover ol > li:before{
    left     : 0;
  }

  .md\:hover\:prose-2xl:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:hover\:prose-2xl:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .md\:hover\:prose-2xl:hover > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .md\:hover\:prose-2xl:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:hover\:prose-2xl:hover ul ul, .md\:hover\:prose-2xl:hover ul ol, .md\:hover\:prose-2xl:hover ol ul, .md\:hover\:prose-2xl:hover ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:hover\:prose-2xl:hover hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:hover\:prose-2xl:hover hr + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-2xl:hover h2 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-2xl:hover h3 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-2xl:hover h4 + *{
    margin-top     : 0;
  }

  .md\:hover\:prose-2xl:hover table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .md\:hover\:prose-2xl:hover thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:hover\:prose-2xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-2xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-2xl:hover tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:hover\:prose-2xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .md\:hover\:prose-2xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .md\:hover\:prose-2xl:hover > :first-child{
    margin-top     : 0;
  }

  .md\:hover\:prose-2xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .md\:focus\:prose:focus{
    color     : #374151;
    max-width     : 65ch;
  }

  .md\:focus\:prose:focus [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose:focus a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .md\:focus\:prose:focus strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .md\:focus\:prose:focus ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:focus\:prose:focus ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .md\:focus\:prose:focus ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .md\:focus\:prose:focus ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .md\:focus\:prose:focus ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .md\:focus\:prose:focus hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:focus\:prose:focus blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .md\:focus\:prose:focus blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .md\:focus\:prose:focus blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .md\:focus\:prose:focus h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:focus\:prose:focus h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .md\:focus\:prose:focus h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:focus\:prose:focus h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .md\:focus\:prose:focus figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .md\:focus\:prose:focus code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .md\:focus\:prose:focus code::before{
    content     : "`";
  }

  .md\:focus\:prose:focus code::after{
    content     : "`";
  }

  .md\:focus\:prose:focus pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .md\:focus\:prose:focus pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .md\:focus\:prose:focus pre code::before{
    content     : "";
  }

  .md\:focus\:prose:focus pre code::after{
    content     : "";
  }

  .md\:focus\:prose:focus table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .md\:focus\:prose:focus thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .md\:focus\:prose:focus thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:focus\:prose:focus tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .md\:focus\:prose:focus tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .md\:focus\:prose:focus tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .md\:focus\:prose:focus{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .md\:focus\:prose:focus p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:focus\:prose:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:focus\:prose:focus h2 code{
    font-size     : 0.875em;
  }

  .md\:focus\:prose:focus h3 code{
    font-size     : 0.9em;
  }

  .md\:focus\:prose:focus ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .md\:focus\:prose:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:focus\:prose:focus ol > li:before{
    left     : 0;
  }

  .md\:focus\:prose:focus > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:focus\:prose:focus > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:focus\:prose:focus > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:focus\:prose:focus > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .md\:focus\:prose:focus > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .md\:focus\:prose:focus ul ul, .md\:focus\:prose:focus ul ol, .md\:focus\:prose:focus ol ul, .md\:focus\:prose:focus ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .md\:focus\:prose:focus hr + *{
    margin-top     : 0;
  }

  .md\:focus\:prose:focus h2 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose:focus h3 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose:focus h4 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose:focus thead th:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose:focus thead th:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose:focus tbody td:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose:focus tbody td:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose:focus > :first-child{
    margin-top     : 0;
  }

  .md\:focus\:prose:focus > :last-child{
    margin-bottom     : 0;
  }

  .md\:focus\:prose:focus h1, .md\:focus\:prose:focus h2, .md\:focus\:prose:focus h3, .md\:focus\:prose:focus h4{
    color     : #161e2e;
  }

  .md\:focus\:prose-sm:focus{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .md\:focus\:prose-sm:focus p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:focus\:prose-sm:focus blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .md\:focus\:prose-sm:focus h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .md\:focus\:prose-sm:focus h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .md\:focus\:prose-sm:focus h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:focus\:prose-sm:focus h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .md\:focus\:prose-sm:focus img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:focus\:prose-sm:focus video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:focus\:prose-sm:focus figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .md\:focus\:prose-sm:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:focus\:prose-sm:focus figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .md\:focus\:prose-sm:focus code{
    font-size     : 0.8571429em;
  }

  .md\:focus\:prose-sm:focus h2 code{
    font-size     : 0.9em;
  }

  .md\:focus\:prose-sm:focus h3 code{
    font-size     : 0.8888889em;
  }

  .md\:focus\:prose-sm:focus pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:focus\:prose-sm:focus ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .md\:focus\:prose-sm:focus ol > li{
    padding-left     : 1.5714286em;
  }

  .md\:focus\:prose-sm:focus ol > li:before{
    left     : 0;
  }

  .md\:focus\:prose-sm:focus ul > li{
    padding-left     : 1.5714286em;
  }

  .md\:focus\:prose-sm:focus ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .md\:focus\:prose-sm:focus > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:focus\:prose-sm:focus > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .md\:focus\:prose-sm:focus ul ul, .md\:focus\:prose-sm:focus ul ol, .md\:focus\:prose-sm:focus ol ul, .md\:focus\:prose-sm:focus ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .md\:focus\:prose-sm:focus hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .md\:focus\:prose-sm:focus hr + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-sm:focus h2 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-sm:focus h3 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-sm:focus h4 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-sm:focus table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .md\:focus\:prose-sm:focus thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:focus\:prose-sm:focus thead th:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-sm:focus thead th:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-sm:focus tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .md\:focus\:prose-sm:focus tbody td:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-sm:focus tbody td:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-sm:focus > :first-child{
    margin-top     : 0;
  }

  .md\:focus\:prose-sm:focus > :last-child{
    margin-bottom     : 0;
  }

  .md\:focus\:prose-lg:focus{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .md\:focus\:prose-lg:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .md\:focus\:prose-lg:focus blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .md\:focus\:prose-lg:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .md\:focus\:prose-lg:focus h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .md\:focus\:prose-lg:focus h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:focus\:prose-lg:focus h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .md\:focus\:prose-lg:focus img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:focus\:prose-lg:focus video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:focus\:prose-lg:focus figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .md\:focus\:prose-lg:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:focus\:prose-lg:focus figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .md\:focus\:prose-lg:focus code{
    font-size     : 0.8888889em;
  }

  .md\:focus\:prose-lg:focus h2 code{
    font-size     : 0.8666667em;
  }

  .md\:focus\:prose-lg:focus h3 code{
    font-size     : 0.875em;
  }

  .md\:focus\:prose-lg:focus pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .md\:focus\:prose-lg:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:focus\:prose-lg:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:focus\:prose-lg:focus ol > li:before{
    left     : 0;
  }

  .md\:focus\:prose-lg:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:focus\:prose-lg:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .md\:focus\:prose-lg:focus > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:focus\:prose-lg:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-lg:focus ul ul, .md\:focus\:prose-lg:focus ul ol, .md\:focus\:prose-lg:focus ol ul, .md\:focus\:prose-lg:focus ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .md\:focus\:prose-lg:focus hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .md\:focus\:prose-lg:focus hr + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-lg:focus h2 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-lg:focus h3 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-lg:focus h4 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-lg:focus table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .md\:focus\:prose-lg:focus thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:focus\:prose-lg:focus thead th:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-lg:focus thead th:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-lg:focus tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .md\:focus\:prose-lg:focus tbody td:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-lg:focus tbody td:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-lg:focus > :first-child{
    margin-top     : 0;
  }

  .md\:focus\:prose-lg:focus > :last-child{
    margin-bottom     : 0;
  }

  .md\:focus\:prose-xl:focus{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .md\:focus\:prose-xl:focus p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose-xl:focus [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .md\:focus\:prose-xl:focus blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .md\:focus\:prose-xl:focus h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .md\:focus\:prose-xl:focus h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .md\:focus\:prose-xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .md\:focus\:prose-xl:focus h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .md\:focus\:prose-xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:focus\:prose-xl:focus figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .md\:focus\:prose-xl:focus code{
    font-size     : 0.9em;
  }

  .md\:focus\:prose-xl:focus h2 code{
    font-size     : 0.8611111em;
  }

  .md\:focus\:prose-xl:focus h3 code{
    font-size     : 0.9em;
  }

  .md\:focus\:prose-xl:focus pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .md\:focus\:prose-xl:focus ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose-xl:focus ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose-xl:focus li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .md\:focus\:prose-xl:focus ol > li{
    padding-left     : 1.8em;
  }

  .md\:focus\:prose-xl:focus ol > li:before{
    left     : 0;
  }

  .md\:focus\:prose-xl:focus ul > li{
    padding-left     : 1.8em;
  }

  .md\:focus\:prose-xl:focus ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .md\:focus\:prose-xl:focus > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:focus\:prose-xl:focus > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:focus\:prose-xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose-xl:focus > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .md\:focus\:prose-xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .md\:focus\:prose-xl:focus ul ul, .md\:focus\:prose-xl:focus ul ol, .md\:focus\:prose-xl:focus ol ul, .md\:focus\:prose-xl:focus ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .md\:focus\:prose-xl:focus hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .md\:focus\:prose-xl:focus hr + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-xl:focus h2 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-xl:focus h3 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-xl:focus h4 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-xl:focus table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .md\:focus\:prose-xl:focus thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:focus\:prose-xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-xl:focus tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .md\:focus\:prose-xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-xl:focus > :first-child{
    margin-top     : 0;
  }

  .md\:focus\:prose-xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .md\:focus\:prose-2xl:focus{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .md\:focus\:prose-2xl:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .md\:focus\:prose-2xl:focus blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .md\:focus\:prose-2xl:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .md\:focus\:prose-2xl:focus h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .md\:focus\:prose-2xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .md\:focus\:prose-2xl:focus h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .md\:focus\:prose-2xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-2xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-2xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .md\:focus\:prose-2xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .md\:focus\:prose-2xl:focus figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .md\:focus\:prose-2xl:focus code{
    font-size     : 0.8333333em;
  }

  .md\:focus\:prose-2xl:focus h2 code{
    font-size     : 0.875em;
  }

  .md\:focus\:prose-2xl:focus h3 code{
    font-size     : 0.8888889em;
  }

  .md\:focus\:prose-2xl:focus pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .md\:focus\:prose-2xl:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .md\:focus\:prose-2xl:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .md\:focus\:prose-2xl:focus ol > li:before{
    left     : 0;
  }

  .md\:focus\:prose-2xl:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .md\:focus\:prose-2xl:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .md\:focus\:prose-2xl:focus > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .md\:focus\:prose-2xl:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .md\:focus\:prose-2xl:focus ul ul, .md\:focus\:prose-2xl:focus ul ol, .md\:focus\:prose-2xl:focus ol ul, .md\:focus\:prose-2xl:focus ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .md\:focus\:prose-2xl:focus hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .md\:focus\:prose-2xl:focus hr + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-2xl:focus h2 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-2xl:focus h3 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-2xl:focus h4 + *{
    margin-top     : 0;
  }

  .md\:focus\:prose-2xl:focus table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .md\:focus\:prose-2xl:focus thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:focus\:prose-2xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-2xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-2xl:focus tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .md\:focus\:prose-2xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .md\:focus\:prose-2xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .md\:focus\:prose-2xl:focus > :first-child{
    margin-top     : 0;
  }

  .md\:focus\:prose-2xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .md\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:-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;
  }

  .group:hover .md\:group-hover\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .group:hover .md\:group-hover\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .md\:hover\:space-y-0:hover > :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\:hover\:space-x-0:hover > :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\:hover\:space-y-1:hover > :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\:hover\:space-x-1:hover > :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\:hover\:space-y-2:hover > :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\:hover\:space-x-2:hover > :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\:hover\:space-y-3:hover > :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\:hover\:space-x-3:hover > :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\:hover\:space-y-4:hover > :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\:hover\:space-x-4:hover > :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\:hover\:space-y-5:hover > :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\:hover\:space-x-5:hover > :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\:hover\:space-y-6:hover > :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\:hover\:space-x-6:hover > :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\:hover\:space-y-7:hover > :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\:hover\:space-x-7:hover > :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\:hover\:space-y-8:hover > :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\:hover\:space-x-8:hover > :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\:hover\:space-y-9:hover > :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\:hover\:space-x-9:hover > :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\:hover\:space-y-10:hover > :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\:hover\:space-x-10:hover > :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\:hover\:space-y-11:hover > :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\:hover\:space-x-11:hover > :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\:hover\:space-y-12:hover > :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\:hover\:space-x-12:hover > :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\:hover\:space-y-13:hover > :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\:hover\:space-x-13:hover > :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\:hover\:space-y-14:hover > :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\:hover\:space-x-14:hover > :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\:hover\:space-y-15:hover > :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\:hover\:space-x-15:hover > :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\:hover\:space-y-16:hover > :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\:hover\:space-x-16:hover > :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\:hover\:space-y-20:hover > :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\:hover\:space-x-20:hover > :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\:hover\:space-y-24:hover > :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\:hover\:space-x-24:hover > :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\:hover\:space-y-28:hover > :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\:hover\:space-x-28:hover > :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\:hover\:space-y-32:hover > :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\:hover\:space-x-32:hover > :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\:hover\:space-y-36:hover > :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\:hover\:space-x-36:hover > :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\:hover\:space-y-40:hover > :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\:hover\:space-x-40:hover > :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\:hover\:space-y-44:hover > :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\:hover\:space-x-44:hover > :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\:hover\:space-y-48:hover > :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\:hover\:space-x-48:hover > :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\:hover\:space-y-52:hover > :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\:hover\:space-x-52:hover > :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\:hover\:space-y-56:hover > :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\:hover\:space-x-56:hover > :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\:hover\:space-y-60:hover > :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\:hover\:space-x-60:hover > :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\:hover\:space-y-64:hover > :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\:hover\:space-x-64:hover > :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\:hover\:space-y-72:hover > :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\:hover\:space-x-72:hover > :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\:hover\:space-y-80:hover > :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\:hover\:space-x-80:hover > :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\:hover\:space-y-96:hover > :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\:hover\:space-x-96:hover > :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\:hover\:space-y-px:hover > :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\:hover\:space-x-px:hover > :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\:hover\:space-y-0\.5:hover > :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\:hover\:space-x-0\.5:hover > :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\:hover\:space-y-1\.5:hover > :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\:hover\:space-x-1\.5:hover > :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\:hover\:space-y-2\.5:hover > :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\:hover\:space-x-2\.5:hover > :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\:hover\:space-y-3\.5:hover > :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\:hover\:space-x-3\.5:hover > :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\:hover\:space-y-1\/2:hover > :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\:hover\:space-x-1\/2:hover > :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\:hover\:space-y-1\/3:hover > :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\:hover\:space-x-1\/3:hover > :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\:hover\:space-y-2\/3:hover > :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\:hover\:space-x-2\/3:hover > :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\:hover\:space-y-1\/4:hover > :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\:hover\:space-x-1\/4:hover > :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\:hover\:space-y-2\/4:hover > :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\:hover\:space-x-2\/4:hover > :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\:hover\:space-y-3\/4:hover > :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\:hover\:space-x-3\/4:hover > :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\:hover\:space-y-1\/5:hover > :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\:hover\:space-x-1\/5:hover > :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\:hover\:space-y-2\/5:hover > :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\:hover\:space-x-2\/5:hover > :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\:hover\:space-y-3\/5:hover > :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\:hover\:space-x-3\/5:hover > :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\:hover\:space-y-4\/5:hover > :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\:hover\:space-x-4\/5:hover > :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\:hover\:space-y-1\/6:hover > :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\:hover\:space-x-1\/6:hover > :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\:hover\:space-y-2\/6:hover > :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\:hover\:space-x-2\/6:hover > :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\:hover\:space-y-3\/6:hover > :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\:hover\:space-x-3\/6:hover > :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\:hover\:space-y-4\/6:hover > :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\:hover\:space-x-4\/6:hover > :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\:hover\:space-y-5\/6:hover > :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\:hover\:space-x-5\/6:hover > :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\:hover\:space-y-1\/12:hover > :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\:hover\:space-x-1\/12:hover > :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\:hover\:space-y-2\/12:hover > :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\:hover\:space-x-2\/12:hover > :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\:hover\:space-y-3\/12:hover > :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\:hover\:space-x-3\/12:hover > :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\:hover\:space-y-4\/12:hover > :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\:hover\:space-x-4\/12:hover > :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\:hover\:space-y-5\/12:hover > :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\:hover\:space-x-5\/12:hover > :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\:hover\:space-y-6\/12:hover > :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\:hover\:space-x-6\/12:hover > :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\:hover\:space-y-7\/12:hover > :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\:hover\:space-x-7\/12:hover > :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\:hover\:space-y-8\/12:hover > :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\:hover\:space-x-8\/12:hover > :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\:hover\:space-y-9\/12:hover > :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\:hover\:space-x-9\/12:hover > :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\:hover\:space-y-10\/12:hover > :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\:hover\:space-x-10\/12:hover > :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\:hover\:space-y-11\/12:hover > :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\:hover\:space-x-11\/12:hover > :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\:hover\:space-y-full:hover > :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\:hover\:space-x-full:hover > :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\:hover\:-space-y-1:hover > :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\:hover\:-space-x-1:hover > :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\:hover\:-space-y-2:hover > :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\:hover\:-space-x-2:hover > :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\:hover\:-space-y-3:hover > :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\:hover\:-space-x-3:hover > :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\:hover\:-space-y-4:hover > :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\:hover\:-space-x-4:hover > :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\:hover\:-space-y-5:hover > :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\:hover\:-space-x-5:hover > :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\:hover\:-space-y-6:hover > :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\:hover\:-space-x-6:hover > :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\:hover\:-space-y-7:hover > :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\:hover\:-space-x-7:hover > :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\:hover\:-space-y-8:hover > :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\:hover\:-space-x-8:hover > :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\:hover\:-space-y-9:hover > :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\:hover\:-space-x-9:hover > :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\:hover\:-space-y-10:hover > :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\:hover\:-space-x-10:hover > :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\:hover\:-space-y-11:hover > :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\:hover\:-space-x-11:hover > :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\:hover\:-space-y-12:hover > :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\:hover\:-space-x-12:hover > :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\:hover\:-space-y-13:hover > :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\:hover\:-space-x-13:hover > :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\:hover\:-space-y-14:hover > :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\:hover\:-space-x-14:hover > :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\:hover\:-space-y-15:hover > :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\:hover\:-space-x-15:hover > :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\:hover\:-space-y-16:hover > :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\:hover\:-space-x-16:hover > :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\:hover\:-space-y-20:hover > :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\:hover\:-space-x-20:hover > :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\:hover\:-space-y-24:hover > :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\:hover\:-space-x-24:hover > :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\:hover\:-space-y-28:hover > :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\:hover\:-space-x-28:hover > :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\:hover\:-space-y-32:hover > :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\:hover\:-space-x-32:hover > :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\:hover\:-space-y-36:hover > :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\:hover\:-space-x-36:hover > :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\:hover\:-space-y-40:hover > :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\:hover\:-space-x-40:hover > :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\:hover\:-space-y-44:hover > :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\:hover\:-space-x-44:hover > :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\:hover\:-space-y-48:hover > :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\:hover\:-space-x-48:hover > :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\:hover\:-space-y-52:hover > :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\:hover\:-space-x-52:hover > :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\:hover\:-space-y-56:hover > :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\:hover\:-space-x-56:hover > :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\:hover\:-space-y-60:hover > :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\:hover\:-space-x-60:hover > :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\:hover\:-space-y-64:hover > :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\:hover\:-space-x-64:hover > :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\:hover\:-space-y-72:hover > :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\:hover\:-space-x-72:hover > :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\:hover\:-space-y-80:hover > :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\:hover\:-space-x-80:hover > :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\:hover\:-space-y-96:hover > :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\:hover\:-space-x-96:hover > :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\:hover\:-space-y-px:hover > :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\:hover\:-space-x-px:hover > :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\:hover\:-space-y-0\.5:hover > :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\:hover\:-space-x-0\.5:hover > :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\:hover\:-space-y-1\.5:hover > :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\:hover\:-space-x-1\.5:hover > :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\:hover\:-space-y-2\.5:hover > :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\:hover\:-space-x-2\.5:hover > :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\:hover\:-space-y-3\.5:hover > :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\:hover\:-space-x-3\.5:hover > :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\:hover\:-space-y-1\/2:hover > :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\:hover\:-space-x-1\/2:hover > :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\:hover\:-space-y-1\/3:hover > :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\:hover\:-space-x-1\/3:hover > :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\:hover\:-space-y-2\/3:hover > :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\:hover\:-space-x-2\/3:hover > :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\:hover\:-space-y-1\/4:hover > :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\:hover\:-space-x-1\/4:hover > :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\:hover\:-space-y-2\/4:hover > :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\:hover\:-space-x-2\/4:hover > :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\:hover\:-space-y-3\/4:hover > :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\:hover\:-space-x-3\/4:hover > :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\:hover\:-space-y-1\/5:hover > :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\:hover\:-space-x-1\/5:hover > :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\:hover\:-space-y-2\/5:hover > :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\:hover\:-space-x-2\/5:hover > :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\:hover\:-space-y-3\/5:hover > :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\:hover\:-space-x-3\/5:hover > :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\:hover\:-space-y-4\/5:hover > :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\:hover\:-space-x-4\/5:hover > :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\:hover\:-space-y-1\/6:hover > :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\:hover\:-space-x-1\/6:hover > :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\:hover\:-space-y-2\/6:hover > :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\:hover\:-space-x-2\/6:hover > :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\:hover\:-space-y-3\/6:hover > :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\:hover\:-space-x-3\/6:hover > :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\:hover\:-space-y-4\/6:hover > :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\:hover\:-space-x-4\/6:hover > :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\:hover\:-space-y-5\/6:hover > :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\:hover\:-space-x-5\/6:hover > :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\:hover\:-space-y-1\/12:hover > :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\:hover\:-space-x-1\/12:hover > :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\:hover\:-space-y-2\/12:hover > :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\:hover\:-space-x-2\/12:hover > :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\:hover\:-space-y-3\/12:hover > :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\:hover\:-space-x-3\/12:hover > :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\:hover\:-space-y-4\/12:hover > :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\:hover\:-space-x-4\/12:hover > :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\:hover\:-space-y-5\/12:hover > :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\:hover\:-space-x-5\/12:hover > :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\:hover\:-space-y-6\/12:hover > :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\:hover\:-space-x-6\/12:hover > :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\:hover\:-space-y-7\/12:hover > :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\:hover\:-space-x-7\/12:hover > :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\:hover\:-space-y-8\/12:hover > :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\:hover\:-space-x-8\/12:hover > :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\:hover\:-space-y-9\/12:hover > :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\:hover\:-space-x-9\/12:hover > :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\:hover\:-space-y-10\/12:hover > :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\:hover\:-space-x-10\/12:hover > :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\:hover\:-space-y-11\/12:hover > :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\:hover\:-space-x-11\/12:hover > :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\:hover\:-space-y-full:hover > :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\:hover\:-space-x-full:hover > :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\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .md\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .md\:focus\:space-y-0:focus > :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\:focus\:space-x-0:focus > :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\:focus\:space-y-1:focus > :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\:focus\:space-x-1:focus > :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\:focus\:space-y-2:focus > :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\:focus\:space-x-2:focus > :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\:focus\:space-y-3:focus > :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\:focus\:space-x-3:focus > :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\:focus\:space-y-4:focus > :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\:focus\:space-x-4:focus > :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\:focus\:space-y-5:focus > :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\:focus\:space-x-5:focus > :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\:focus\:space-y-6:focus > :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\:focus\:space-x-6:focus > :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\:focus\:space-y-7:focus > :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\:focus\:space-x-7:focus > :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\:focus\:space-y-8:focus > :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\:focus\:space-x-8:focus > :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\:focus\:space-y-9:focus > :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\:focus\:space-x-9:focus > :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\:focus\:space-y-10:focus > :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\:focus\:space-x-10:focus > :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\:focus\:space-y-11:focus > :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\:focus\:space-x-11:focus > :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\:focus\:space-y-12:focus > :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\:focus\:space-x-12:focus > :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\:focus\:space-y-13:focus > :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\:focus\:space-x-13:focus > :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\:focus\:space-y-14:focus > :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\:focus\:space-x-14:focus > :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\:focus\:space-y-15:focus > :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\:focus\:space-x-15:focus > :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\:focus\:space-y-16:focus > :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\:focus\:space-x-16:focus > :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\:focus\:space-y-20:focus > :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\:focus\:space-x-20:focus > :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\:focus\:space-y-24:focus > :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\:focus\:space-x-24:focus > :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\:focus\:space-y-28:focus > :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\:focus\:space-x-28:focus > :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\:focus\:space-y-32:focus > :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\:focus\:space-x-32:focus > :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\:focus\:space-y-36:focus > :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\:focus\:space-x-36:focus > :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\:focus\:space-y-40:focus > :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\:focus\:space-x-40:focus > :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\:focus\:space-y-44:focus > :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\:focus\:space-x-44:focus > :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\:focus\:space-y-48:focus > :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\:focus\:space-x-48:focus > :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\:focus\:space-y-52:focus > :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\:focus\:space-x-52:focus > :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\:focus\:space-y-56:focus > :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\:focus\:space-x-56:focus > :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\:focus\:space-y-60:focus > :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\:focus\:space-x-60:focus > :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\:focus\:space-y-64:focus > :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\:focus\:space-x-64:focus > :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\:focus\:space-y-72:focus > :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\:focus\:space-x-72:focus > :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\:focus\:space-y-80:focus > :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\:focus\:space-x-80:focus > :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\:focus\:space-y-96:focus > :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\:focus\:space-x-96:focus > :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\:focus\:space-y-px:focus > :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\:focus\:space-x-px:focus > :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\:focus\:space-y-0\.5:focus > :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\:focus\:space-x-0\.5:focus > :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\:focus\:space-y-1\.5:focus > :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\:focus\:space-x-1\.5:focus > :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\:focus\:space-y-2\.5:focus > :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\:focus\:space-x-2\.5:focus > :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\:focus\:space-y-3\.5:focus > :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\:focus\:space-x-3\.5:focus > :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\:focus\:space-y-1\/2:focus > :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\:focus\:space-x-1\/2:focus > :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\:focus\:space-y-1\/3:focus > :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\:focus\:space-x-1\/3:focus > :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\:focus\:space-y-2\/3:focus > :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\:focus\:space-x-2\/3:focus > :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\:focus\:space-y-1\/4:focus > :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\:focus\:space-x-1\/4:focus > :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\:focus\:space-y-2\/4:focus > :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\:focus\:space-x-2\/4:focus > :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\:focus\:space-y-3\/4:focus > :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\:focus\:space-x-3\/4:focus > :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\:focus\:space-y-1\/5:focus > :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\:focus\:space-x-1\/5:focus > :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\:focus\:space-y-2\/5:focus > :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\:focus\:space-x-2\/5:focus > :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\:focus\:space-y-3\/5:focus > :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\:focus\:space-x-3\/5:focus > :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\:focus\:space-y-4\/5:focus > :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\:focus\:space-x-4\/5:focus > :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\:focus\:space-y-1\/6:focus > :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\:focus\:space-x-1\/6:focus > :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\:focus\:space-y-2\/6:focus > :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\:focus\:space-x-2\/6:focus > :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\:focus\:space-y-3\/6:focus > :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\:focus\:space-x-3\/6:focus > :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\:focus\:space-y-4\/6:focus > :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\:focus\:space-x-4\/6:focus > :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\:focus\:space-y-5\/6:focus > :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\:focus\:space-x-5\/6:focus > :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\:focus\:space-y-1\/12:focus > :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\:focus\:space-x-1\/12:focus > :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\:focus\:space-y-2\/12:focus > :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\:focus\:space-x-2\/12:focus > :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\:focus\:space-y-3\/12:focus > :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\:focus\:space-x-3\/12:focus > :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\:focus\:space-y-4\/12:focus > :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\:focus\:space-x-4\/12:focus > :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\:focus\:space-y-5\/12:focus > :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\:focus\:space-x-5\/12:focus > :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\:focus\:space-y-6\/12:focus > :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\:focus\:space-x-6\/12:focus > :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\:focus\:space-y-7\/12:focus > :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\:focus\:space-x-7\/12:focus > :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\:focus\:space-y-8\/12:focus > :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\:focus\:space-x-8\/12:focus > :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\:focus\:space-y-9\/12:focus > :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\:focus\:space-x-9\/12:focus > :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\:focus\:space-y-10\/12:focus > :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\:focus\:space-x-10\/12:focus > :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\:focus\:space-y-11\/12:focus > :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\:focus\:space-x-11\/12:focus > :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\:focus\:space-y-full:focus > :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\:focus\:space-x-full:focus > :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\:focus\:-space-y-1:focus > :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\:focus\:-space-x-1:focus > :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\:focus\:-space-y-2:focus > :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\:focus\:-space-x-2:focus > :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\:focus\:-space-y-3:focus > :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\:focus\:-space-x-3:focus > :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\:focus\:-space-y-4:focus > :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\:focus\:-space-x-4:focus > :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\:focus\:-space-y-5:focus > :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\:focus\:-space-x-5:focus > :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\:focus\:-space-y-6:focus > :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\:focus\:-space-x-6:focus > :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\:focus\:-space-y-7:focus > :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\:focus\:-space-x-7:focus > :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\:focus\:-space-y-8:focus > :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\:focus\:-space-x-8:focus > :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\:focus\:-space-y-9:focus > :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\:focus\:-space-x-9:focus > :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\:focus\:-space-y-10:focus > :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\:focus\:-space-x-10:focus > :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\:focus\:-space-y-11:focus > :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\:focus\:-space-x-11:focus > :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\:focus\:-space-y-12:focus > :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\:focus\:-space-x-12:focus > :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\:focus\:-space-y-13:focus > :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\:focus\:-space-x-13:focus > :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\:focus\:-space-y-14:focus > :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\:focus\:-space-x-14:focus > :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\:focus\:-space-y-15:focus > :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\:focus\:-space-x-15:focus > :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\:focus\:-space-y-16:focus > :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\:focus\:-space-x-16:focus > :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\:focus\:-space-y-20:focus > :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\:focus\:-space-x-20:focus > :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\:focus\:-space-y-24:focus > :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\:focus\:-space-x-24:focus > :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\:focus\:-space-y-28:focus > :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\:focus\:-space-x-28:focus > :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\:focus\:-space-y-32:focus > :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\:focus\:-space-x-32:focus > :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\:focus\:-space-y-36:focus > :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\:focus\:-space-x-36:focus > :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\:focus\:-space-y-40:focus > :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\:focus\:-space-x-40:focus > :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\:focus\:-space-y-44:focus > :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\:focus\:-space-x-44:focus > :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\:focus\:-space-y-48:focus > :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\:focus\:-space-x-48:focus > :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\:focus\:-space-y-52:focus > :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\:focus\:-space-x-52:focus > :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\:focus\:-space-y-56:focus > :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\:focus\:-space-x-56:focus > :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\:focus\:-space-y-60:focus > :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\:focus\:-space-x-60:focus > :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\:focus\:-space-y-64:focus > :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\:focus\:-space-x-64:focus > :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\:focus\:-space-y-72:focus > :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\:focus\:-space-x-72:focus > :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\:focus\:-space-y-80:focus > :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\:focus\:-space-x-80:focus > :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\:focus\:-space-y-96:focus > :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\:focus\:-space-x-96:focus > :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\:focus\:-space-y-px:focus > :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\:focus\:-space-x-px:focus > :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\:focus\:-space-y-0\.5:focus > :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\:focus\:-space-x-0\.5:focus > :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\:focus\:-space-y-1\.5:focus > :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\:focus\:-space-x-1\.5:focus > :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\:focus\:-space-y-2\.5:focus > :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\:focus\:-space-x-2\.5:focus > :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\:focus\:-space-y-3\.5:focus > :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\:focus\:-space-x-3\.5:focus > :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\:focus\:-space-y-1\/2:focus > :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\:focus\:-space-x-1\/2:focus > :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\:focus\:-space-y-1\/3:focus > :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\:focus\:-space-x-1\/3:focus > :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\:focus\:-space-y-2\/3:focus > :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\:focus\:-space-x-2\/3:focus > :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\:focus\:-space-y-1\/4:focus > :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\:focus\:-space-x-1\/4:focus > :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\:focus\:-space-y-2\/4:focus > :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\:focus\:-space-x-2\/4:focus > :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\:focus\:-space-y-3\/4:focus > :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\:focus\:-space-x-3\/4:focus > :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\:focus\:-space-y-1\/5:focus > :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\:focus\:-space-x-1\/5:focus > :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\:focus\:-space-y-2\/5:focus > :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\:focus\:-space-x-2\/5:focus > :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\:focus\:-space-y-3\/5:focus > :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\:focus\:-space-x-3\/5:focus > :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\:focus\:-space-y-4\/5:focus > :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\:focus\:-space-x-4\/5:focus > :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\:focus\:-space-y-1\/6:focus > :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\:focus\:-space-x-1\/6:focus > :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\:focus\:-space-y-2\/6:focus > :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\:focus\:-space-x-2\/6:focus > :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\:focus\:-space-y-3\/6:focus > :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\:focus\:-space-x-3\/6:focus > :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\:focus\:-space-y-4\/6:focus > :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\:focus\:-space-x-4\/6:focus > :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\:focus\:-space-y-5\/6:focus > :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\:focus\:-space-x-5\/6:focus > :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\:focus\:-space-y-1\/12:focus > :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\:focus\:-space-x-1\/12:focus > :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\:focus\:-space-y-2\/12:focus > :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\:focus\:-space-x-2\/12:focus > :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\:focus\:-space-y-3\/12:focus > :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\:focus\:-space-x-3\/12:focus > :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\:focus\:-space-y-4\/12:focus > :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\:focus\:-space-x-4\/12:focus > :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\:focus\:-space-y-5\/12:focus > :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\:focus\:-space-x-5\/12:focus > :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\:focus\:-space-y-6\/12:focus > :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\:focus\:-space-x-6\/12:focus > :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\:focus\:-space-y-7\/12:focus > :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\:focus\:-space-x-7\/12:focus > :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\:focus\:-space-y-8\/12:focus > :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\:focus\:-space-x-8\/12:focus > :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\:focus\:-space-y-9\/12:focus > :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\:focus\:-space-x-9\/12:focus > :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\:focus\:-space-y-10\/12:focus > :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\:focus\:-space-x-10\/12:focus > :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\:focus\:-space-y-11\/12:focus > :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\:focus\:-space-x-11\/12:focus > :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\:focus\:-space-y-full:focus > :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\:focus\:-space-x-full:focus > :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\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .md\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .md\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .group:hover .md\:group-hover\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .md\:hover\:divide-y-0:hover > :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;
  }

  .md\:hover\:divide-x-0:hover > :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;
  }

  .md\:hover\:divide-y-2:hover > :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;
  }

  .md\:hover\:divide-x-2:hover > :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;
  }

  .md\:hover\:divide-y-4:hover > :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;
  }

  .md\:hover\:divide-x-4:hover > :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;
  }

  .md\:hover\:divide-y-8:hover > :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;
  }

  .md\:hover\:divide-x-8:hover > :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;
  }

  .md\:hover\:divide-y:hover > :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;
  }

  .md\:hover\:divide-x:hover > :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;
  }

  .md\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .md\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .md\:focus\:divide-y-0:focus > :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;
  }

  .md\:focus\:divide-x-0:focus > :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;
  }

  .md\:focus\:divide-y-2:focus > :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;
  }

  .md\:focus\:divide-x-2:focus > :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;
  }

  .md\:focus\:divide-y-4:focus > :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;
  }

  .md\:focus\:divide-x-4:focus > :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;
  }

  .md\:focus\:divide-y-8:focus > :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;
  }

  .md\:focus\:divide-x-8:focus > :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;
  }

  .md\:focus\:divide-y:focus > :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;
  }

  .md\:focus\:divide-x:focus > :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;
  }

  .md\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .md\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .md\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .md\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .md\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .group:hover .md\:group-hover\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .group:hover .md\:group-hover\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .group:hover .md\:group-hover\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .md\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-cool-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-red-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-orange-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-yellow-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-green-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-teal-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-indigo-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-purple-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-pink-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .md\:hover\:divide-blue-brand:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .md\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-cool-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-red-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-orange-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-yellow-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-green-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-teal-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-indigo-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-purple-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-pink-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .md\:focus\:divide-blue-brand:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .md\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .md\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .md\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .md\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .md\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .md\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .md\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .md\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .md\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .md\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .md\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .md\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .md\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .md\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .md\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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\:hover\:sr-only:hover{
    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\:hover\:not-sr-only:hover{
    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\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .group:hover .md\:group-hover\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .md\:hover\:appearance-none:hover{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .md\:focus\:appearance-none:focus{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .md\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .md\:bg-local{
    background-attachment     : local !important;
  }

  .md\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .group:hover .md\:group-hover\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .group:hover .md\:group-hover\:bg-local{
    background-attachment     : local !important;
  }

  .group:hover .md\:group-hover\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .md\:hover\:bg-fixed:hover{
    background-attachment     : fixed !important;
  }

  .md\:hover\:bg-local:hover{
    background-attachment     : local !important;
  }

  .md\:hover\:bg-scroll:hover{
    background-attachment     : scroll !important;
  }

  .md\:focus\:bg-fixed:focus{
    background-attachment     : fixed !important;
  }

  .md\:focus\:bg-local:focus{
    background-attachment     : local !important;
  }

  .md\:focus\:bg-scroll:focus{
    background-attachment     : scroll !important;
  }

  .md\:bg-transparent{
    background-color     : transparent !important;
  }

  .md\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .md\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .md\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .md\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .md\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .md\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .md\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .md\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .md\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .md\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .md\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .md\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .md\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .md\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .md\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .md\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .md\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .md\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .md\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .md\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .md\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .md\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .md\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .md\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .md\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .md\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .md\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .md\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .md\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .md\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-transparent{
    background-color     : transparent !important;
  }

  .group:hover .md\:group-hover\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .group:hover .md\:group-hover\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-transparent:hover{
    background-color     : transparent !important;
  }

  .md\:hover\:bg-white:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-black:hover{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-cool-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-red-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-orange-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-yellow-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-green-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-teal-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-indigo-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-purple-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-pink-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .md\:hover\:bg-blue-brand:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-transparent:focus{
    background-color     : transparent !important;
  }

  .md\:focus\:bg-white:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-black:focus{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-cool-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-red-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-orange-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-yellow-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-green-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-teal-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-indigo-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-purple-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-pink-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .md\:focus\:bg-blue-brand:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .md\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .md\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .md\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .md\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .md\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .md\:hover\:bg-opacity-0:hover{
    --bg-opacity     : 0 !important;
  }

  .md\:hover\:bg-opacity-25:hover{
    --bg-opacity     : 0.25 !important;
  }

  .md\:hover\:bg-opacity-50:hover{
    --bg-opacity     : 0.5 !important;
  }

  .md\:hover\:bg-opacity-75:hover{
    --bg-opacity     : 0.75 !important;
  }

  .md\:hover\:bg-opacity-100:hover{
    --bg-opacity     : 1 !important;
  }

  .md\:focus\:bg-opacity-0:focus{
    --bg-opacity     : 0 !important;
  }

  .md\:focus\:bg-opacity-25:focus{
    --bg-opacity     : 0.25 !important;
  }

  .md\:focus\:bg-opacity-50:focus{
    --bg-opacity     : 0.5 !important;
  }

  .md\:focus\:bg-opacity-75:focus{
    --bg-opacity     : 0.75 !important;
  }

  .md\:focus\:bg-opacity-100:focus{
    --bg-opacity     : 1 !important;
  }

  .md\:bg-bottom{
    background-position     : bottom !important;
  }

  .md\:bg-center{
    background-position     : center !important;
  }

  .md\:bg-left{
    background-position     : left !important;
  }

  .md\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .md\:bg-left-top{
    background-position     : left top !important;
  }

  .md\:bg-right{
    background-position     : right !important;
  }

  .md\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .md\:bg-right-top{
    background-position     : right top !important;
  }

  .md\:bg-top{
    background-position     : top !important;
  }

  .group:hover .md\:group-hover\:bg-bottom{
    background-position     : bottom !important;
  }

  .group:hover .md\:group-hover\:bg-center{
    background-position     : center !important;
  }

  .group:hover .md\:group-hover\:bg-left{
    background-position     : left !important;
  }

  .group:hover .md\:group-hover\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .group:hover .md\:group-hover\:bg-left-top{
    background-position     : left top !important;
  }

  .group:hover .md\:group-hover\:bg-right{
    background-position     : right !important;
  }

  .group:hover .md\:group-hover\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .group:hover .md\:group-hover\:bg-right-top{
    background-position     : right top !important;
  }

  .group:hover .md\:group-hover\:bg-top{
    background-position     : top !important;
  }

  .md\:hover\:bg-bottom:hover{
    background-position     : bottom !important;
  }

  .md\:hover\:bg-center:hover{
    background-position     : center !important;
  }

  .md\:hover\:bg-left:hover{
    background-position     : left !important;
  }

  .md\:hover\:bg-left-bottom:hover{
    background-position     : left bottom !important;
  }

  .md\:hover\:bg-left-top:hover{
    background-position     : left top !important;
  }

  .md\:hover\:bg-right:hover{
    background-position     : right !important;
  }

  .md\:hover\:bg-right-bottom:hover{
    background-position     : right bottom !important;
  }

  .md\:hover\:bg-right-top:hover{
    background-position     : right top !important;
  }

  .md\:hover\:bg-top:hover{
    background-position     : top !important;
  }

  .md\:focus\:bg-bottom:focus{
    background-position     : bottom !important;
  }

  .md\:focus\:bg-center:focus{
    background-position     : center !important;
  }

  .md\:focus\:bg-left:focus{
    background-position     : left !important;
  }

  .md\:focus\:bg-left-bottom:focus{
    background-position     : left bottom !important;
  }

  .md\:focus\:bg-left-top:focus{
    background-position     : left top !important;
  }

  .md\:focus\:bg-right:focus{
    background-position     : right !important;
  }

  .md\:focus\:bg-right-bottom:focus{
    background-position     : right bottom !important;
  }

  .md\:focus\:bg-right-top:focus{
    background-position     : right top !important;
  }

  .md\:focus\:bg-top:focus{
    background-position     : top !important;
  }

  .md\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .md\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .md\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .md\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .md\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .md\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .group:hover .md\:group-hover\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .group:hover .md\:group-hover\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .group:hover .md\:group-hover\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .group:hover .md\:group-hover\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .group:hover .md\:group-hover\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .group:hover .md\:group-hover\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .md\:hover\:bg-repeat:hover{
    background-repeat     : repeat !important;
  }

  .md\:hover\:bg-no-repeat:hover{
    background-repeat     : no-repeat !important;
  }

  .md\:hover\:bg-repeat-x:hover{
    background-repeat     : repeat-x !important;
  }

  .md\:hover\:bg-repeat-y:hover{
    background-repeat     : repeat-y !important;
  }

  .md\:hover\:bg-repeat-round:hover{
    background-repeat     : round !important;
  }

  .md\:hover\:bg-repeat-space:hover{
    background-repeat     : space !important;
  }

  .md\:focus\:bg-repeat:focus{
    background-repeat     : repeat !important;
  }

  .md\:focus\:bg-no-repeat:focus{
    background-repeat     : no-repeat !important;
  }

  .md\:focus\:bg-repeat-x:focus{
    background-repeat     : repeat-x !important;
  }

  .md\:focus\:bg-repeat-y:focus{
    background-repeat     : repeat-y !important;
  }

  .md\:focus\:bg-repeat-round:focus{
    background-repeat     : round !important;
  }

  .md\:focus\:bg-repeat-space:focus{
    background-repeat     : space !important;
  }

  .md\:bg-auto{
    background-size     : auto !important;
  }

  .md\:bg-cover{
    background-size     : cover !important;
  }

  .md\:bg-contain{
    background-size     : contain !important;
  }

  .group:hover .md\:group-hover\:bg-auto{
    background-size     : auto !important;
  }

  .group:hover .md\:group-hover\:bg-cover{
    background-size     : cover !important;
  }

  .group:hover .md\:group-hover\:bg-contain{
    background-size     : contain !important;
  }

  .md\:hover\:bg-auto:hover{
    background-size     : auto !important;
  }

  .md\:hover\:bg-cover:hover{
    background-size     : cover !important;
  }

  .md\:hover\:bg-contain:hover{
    background-size     : contain !important;
  }

  .md\:focus\:bg-auto:focus{
    background-size     : auto !important;
  }

  .md\:focus\:bg-cover:focus{
    background-size     : cover !important;
  }

  .md\:focus\:bg-contain:focus{
    background-size     : contain !important;
  }

  .md\:border-collapse{
    border-collapse     : collapse !important;
  }

  .md\:border-separate{
    border-collapse     : separate !important;
  }

  .group:hover .md\:group-hover\:border-collapse{
    border-collapse     : collapse !important;
  }

  .group:hover .md\:group-hover\:border-separate{
    border-collapse     : separate !important;
  }

  .md\:hover\:border-collapse:hover{
    border-collapse     : collapse !important;
  }

  .md\:hover\:border-separate:hover{
    border-collapse     : separate !important;
  }

  .md\:focus\:border-collapse:focus{
    border-collapse     : collapse !important;
  }

  .md\:focus\:border-separate:focus{
    border-collapse     : separate !important;
  }

  .md\:border-transparent{
    border-color     : transparent !important;
  }

  .md\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .md\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .md\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .md\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .md\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .md\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .md\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .md\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .md\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .md\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .md\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .md\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .md\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .md\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .md\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .md\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .md\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .md\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .md\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .md\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .md\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .md\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .md\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .md\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .md\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .md\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .md\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .md\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .md\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .md\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .md\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .md\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .md\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .md\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .md\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .md\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .md\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .md\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .md\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .md\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .md\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .md\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .md\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .md\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .md\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .md\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .md\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .md\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .md\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .md\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .md\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .md\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .md\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .md\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .md\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .md\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .md\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .md\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .md\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .md\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .md\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .md\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .md\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .md\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .md\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .md\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .md\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .md\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .md\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .md\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .md\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .md\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .md\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .md\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .md\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .md\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .md\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .md\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .md\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .md\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .md\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .md\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .md\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .md\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .md\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .md\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .md\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .md\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .md\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .md\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .md\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .md\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .md\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .md\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .md\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .md\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .md\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .md\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .md\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .md\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .md\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .md\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-transparent{
    border-color     : transparent !important;
  }

  .group:hover .md\:group-hover\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .group:hover .md\:group-hover\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .md\:hover\:border-transparent:hover{
    border-color     : transparent !important;
  }

  .md\:hover\:border-white:hover{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:border-black:hover{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .md\:hover\:border-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .md\:hover\:border-cool-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .md\:hover\:border-red-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .md\:hover\:border-orange-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .md\:hover\:border-yellow-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .md\:hover\:border-green-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .md\:hover\:border-teal-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .md\:hover\:border-indigo-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .md\:hover\:border-purple-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .md\:hover\:border-pink-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .md\:hover\:border-blue-brand:hover{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .md\:focus\:border-transparent:focus{
    border-color     : transparent !important;
  }

  .md\:focus\:border-white:focus{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:border-black:focus{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .md\:focus\:border-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .md\:focus\:border-cool-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .md\:focus\:border-red-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .md\:focus\:border-orange-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .md\:focus\:border-yellow-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .md\:focus\:border-green-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .md\:focus\:border-teal-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .md\:focus\:border-indigo-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .md\:focus\:border-purple-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .md\:focus\:border-pink-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .md\:focus\:border-blue-brand:focus{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .md\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .md\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .md\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .md\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .md\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .md\:hover\:border-opacity-0:hover{
    --border-opacity     : 0 !important;
  }

  .md\:hover\:border-opacity-25:hover{
    --border-opacity     : 0.25 !important;
  }

  .md\:hover\:border-opacity-50:hover{
    --border-opacity     : 0.5 !important;
  }

  .md\:hover\:border-opacity-75:hover{
    --border-opacity     : 0.75 !important;
  }

  .md\:hover\:border-opacity-100:hover{
    --border-opacity     : 1 !important;
  }

  .md\:focus\:border-opacity-0:focus{
    --border-opacity     : 0 !important;
  }

  .md\:focus\:border-opacity-25:focus{
    --border-opacity     : 0.25 !important;
  }

  .md\:focus\:border-opacity-50:focus{
    --border-opacity     : 0.5 !important;
  }

  .md\:focus\:border-opacity-75:focus{
    --border-opacity     : 0.75 !important;
  }

  .md\:focus\:border-opacity-100:focus{
    --border-opacity     : 1 !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;
  }

  .group:hover .md\:group-hover\:rounded-none{
    border-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-sm{
    border-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded{
    border-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-md{
    border-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-lg{
    border-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-full{
    border-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-t-none{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-r-none{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-b-none{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-l-none{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-t-sm{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-r-sm{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-b-sm{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-l-sm{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-t{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-r{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-b{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-l{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-t-md{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-r-md{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-b-md{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-l-md{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-t-lg{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-r-lg{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-b-lg{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-l-lg{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-t-full{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-r-full{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-b-full{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-l-full{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-tl-none{
    border-top-left-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-tr-none{
    border-top-right-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-br-none{
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-bl-none{
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .md\:group-hover\:rounded-tl-sm{
    border-top-left-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tr-sm{
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-br-sm{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-bl-sm{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tl{
    border-top-left-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tr{
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-br{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-bl{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tl-md{
    border-top-left-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tr-md{
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-br-md{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-bl-md{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tl-lg{
    border-top-left-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tr-lg{
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-br-lg{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-bl-lg{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:rounded-tl-full{
    border-top-left-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-tr-full{
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-br-full{
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .md\:group-hover\:rounded-bl-full{
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:hover\:rounded-none:hover{
    border-radius     : 0 !important;
  }

  .md\:hover\:rounded-sm:hover{
    border-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded:hover{
    border-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-md:hover{
    border-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-lg:hover{
    border-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-full:hover{
    border-radius     : 9999px !important;
  }

  .md\:hover\:rounded-t-none:hover{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .md\:hover\:rounded-r-none:hover{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .md\:hover\:rounded-b-none:hover{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .md\:hover\:rounded-l-none:hover{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .md\:hover\:rounded-t-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-r-sm:hover{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-l-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-t:hover{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-r:hover{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-b:hover{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-l:hover{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-t-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-r-md:hover{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-b-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-l-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-t-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-r-lg:hover{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-l-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-t-full:hover{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .md\:hover\:rounded-r-full:hover{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .md\:hover\:rounded-b-full:hover{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:hover\:rounded-l-full:hover{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:hover\:rounded-tl-none:hover{
    border-top-left-radius     : 0 !important;
  }

  .md\:hover\:rounded-tr-none:hover{
    border-top-right-radius     : 0 !important;
  }

  .md\:hover\:rounded-br-none:hover{
    border-bottom-right-radius     : 0 !important;
  }

  .md\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius     : 0 !important;
  }

  .md\:hover\:rounded-tl-sm:hover{
    border-top-left-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-tr-sm:hover{
    border-top-right-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:hover\:rounded-tl:hover{
    border-top-left-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-tr:hover{
    border-top-right-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-br:hover{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-bl:hover{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:hover\:rounded-tl-md:hover{
    border-top-left-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-tr-md:hover{
    border-top-right-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-br-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:hover\:rounded-tl-lg:hover{
    border-top-left-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-tr-lg:hover{
    border-top-right-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:hover\:rounded-tl-full:hover{
    border-top-left-radius     : 9999px !important;
  }

  .md\:hover\:rounded-tr-full:hover{
    border-top-right-radius     : 9999px !important;
  }

  .md\:hover\:rounded-br-full:hover{
    border-bottom-right-radius     : 9999px !important;
  }

  .md\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:focus\:rounded-none:focus{
    border-radius     : 0 !important;
  }

  .md\:focus\:rounded-sm:focus{
    border-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded:focus{
    border-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-md:focus{
    border-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-lg:focus{
    border-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-full:focus{
    border-radius     : 9999px !important;
  }

  .md\:focus\:rounded-t-none:focus{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .md\:focus\:rounded-r-none:focus{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .md\:focus\:rounded-b-none:focus{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .md\:focus\:rounded-l-none:focus{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .md\:focus\:rounded-t-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-r-sm:focus{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-l-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-t:focus{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-r:focus{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-b:focus{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-l:focus{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-t-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-r-md:focus{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-b-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-l-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-t-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-r-lg:focus{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-l-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-t-full:focus{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .md\:focus\:rounded-r-full:focus{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .md\:focus\:rounded-b-full:focus{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:focus\:rounded-l-full:focus{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:focus\:rounded-tl-none:focus{
    border-top-left-radius     : 0 !important;
  }

  .md\:focus\:rounded-tr-none:focus{
    border-top-right-radius     : 0 !important;
  }

  .md\:focus\:rounded-br-none:focus{
    border-bottom-right-radius     : 0 !important;
  }

  .md\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius     : 0 !important;
  }

  .md\:focus\:rounded-tl-sm:focus{
    border-top-left-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-tr-sm:focus{
    border-top-right-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .md\:focus\:rounded-tl:focus{
    border-top-left-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-tr:focus{
    border-top-right-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-br:focus{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-bl:focus{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .md\:focus\:rounded-tl-md:focus{
    border-top-left-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-tr-md:focus{
    border-top-right-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-br-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .md\:focus\:rounded-tl-lg:focus{
    border-top-left-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-tr-lg:focus{
    border-top-right-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .md\:focus\:rounded-tl-full:focus{
    border-top-left-radius     : 9999px !important;
  }

  .md\:focus\:rounded-tr-full:focus{
    border-top-right-radius     : 9999px !important;
  }

  .md\:focus\:rounded-br-full:focus{
    border-bottom-right-radius     : 9999px !important;
  }

  .md\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius     : 9999px !important;
  }

  .md\:border-solid{
    border-style     : solid !important;
  }

  .md\:border-dashed{
    border-style     : dashed !important;
  }

  .md\:border-dotted{
    border-style     : dotted !important;
  }

  .md\:border-double{
    border-style     : double !important;
  }

  .md\:border-none{
    border-style     : none !important;
  }

  .group:hover .md\:group-hover\:border-solid{
    border-style     : solid !important;
  }

  .group:hover .md\:group-hover\:border-dashed{
    border-style     : dashed !important;
  }

  .group:hover .md\:group-hover\:border-dotted{
    border-style     : dotted !important;
  }

  .group:hover .md\:group-hover\:border-double{
    border-style     : double !important;
  }

  .group:hover .md\:group-hover\:border-none{
    border-style     : none !important;
  }

  .md\:hover\:border-solid:hover{
    border-style     : solid !important;
  }

  .md\:hover\:border-dashed:hover{
    border-style     : dashed !important;
  }

  .md\:hover\:border-dotted:hover{
    border-style     : dotted !important;
  }

  .md\:hover\:border-double:hover{
    border-style     : double !important;
  }

  .md\:hover\:border-none:hover{
    border-style     : none !important;
  }

  .md\:focus\:border-solid:focus{
    border-style     : solid !important;
  }

  .md\:focus\:border-dashed:focus{
    border-style     : dashed !important;
  }

  .md\:focus\:border-dotted:focus{
    border-style     : dotted !important;
  }

  .md\:focus\:border-double:focus{
    border-style     : double !important;
  }

  .md\:focus\:border-none:focus{
    border-style     : none !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;
  }

  .group:hover .md\:group-hover\:border-0{
    border-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-2{
    border-width     : 2px !important;
  }

  .group:hover .md\:group-hover\:border-4{
    border-width     : 4px !important;
  }

  .group:hover .md\:group-hover\:border-8{
    border-width     : 8px !important;
  }

  .group:hover .md\:group-hover\:border{
    border-width     : 1px !important;
  }

  .group:hover .md\:group-hover\:border-t-0{
    border-top-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-r-0{
    border-right-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-b-0{
    border-bottom-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-l-0{
    border-left-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:border-t-2{
    border-top-width     : 2px !important;
  }

  .group:hover .md\:group-hover\:border-r-2{
    border-right-width     : 2px !important;
  }

  .group:hover .md\:group-hover\:border-b-2{
    border-bottom-width     : 2px !important;
  }

  .group:hover .md\:group-hover\:border-l-2{
    border-left-width     : 2px !important;
  }

  .group:hover .md\:group-hover\:border-t-4{
    border-top-width     : 4px !important;
  }

  .group:hover .md\:group-hover\:border-r-4{
    border-right-width     : 4px !important;
  }

  .group:hover .md\:group-hover\:border-b-4{
    border-bottom-width     : 4px !important;
  }

  .group:hover .md\:group-hover\:border-l-4{
    border-left-width     : 4px !important;
  }

  .group:hover .md\:group-hover\:border-t-8{
    border-top-width     : 8px !important;
  }

  .group:hover .md\:group-hover\:border-r-8{
    border-right-width     : 8px !important;
  }

  .group:hover .md\:group-hover\:border-b-8{
    border-bottom-width     : 8px !important;
  }

  .group:hover .md\:group-hover\:border-l-8{
    border-left-width     : 8px !important;
  }

  .group:hover .md\:group-hover\:border-t{
    border-top-width     : 1px !important;
  }

  .group:hover .md\:group-hover\:border-r{
    border-right-width     : 1px !important;
  }

  .group:hover .md\:group-hover\:border-b{
    border-bottom-width     : 1px !important;
  }

  .group:hover .md\:group-hover\:border-l{
    border-left-width     : 1px !important;
  }

  .md\:hover\:border-0:hover{
    border-width     : 0 !important;
  }

  .md\:hover\:border-2:hover{
    border-width     : 2px !important;
  }

  .md\:hover\:border-4:hover{
    border-width     : 4px !important;
  }

  .md\:hover\:border-8:hover{
    border-width     : 8px !important;
  }

  .md\:hover\:border:hover{
    border-width     : 1px !important;
  }

  .md\:hover\:border-t-0:hover{
    border-top-width     : 0 !important;
  }

  .md\:hover\:border-r-0:hover{
    border-right-width     : 0 !important;
  }

  .md\:hover\:border-b-0:hover{
    border-bottom-width     : 0 !important;
  }

  .md\:hover\:border-l-0:hover{
    border-left-width     : 0 !important;
  }

  .md\:hover\:border-t-2:hover{
    border-top-width     : 2px !important;
  }

  .md\:hover\:border-r-2:hover{
    border-right-width     : 2px !important;
  }

  .md\:hover\:border-b-2:hover{
    border-bottom-width     : 2px !important;
  }

  .md\:hover\:border-l-2:hover{
    border-left-width     : 2px !important;
  }

  .md\:hover\:border-t-4:hover{
    border-top-width     : 4px !important;
  }

  .md\:hover\:border-r-4:hover{
    border-right-width     : 4px !important;
  }

  .md\:hover\:border-b-4:hover{
    border-bottom-width     : 4px !important;
  }

  .md\:hover\:border-l-4:hover{
    border-left-width     : 4px !important;
  }

  .md\:hover\:border-t-8:hover{
    border-top-width     : 8px !important;
  }

  .md\:hover\:border-r-8:hover{
    border-right-width     : 8px !important;
  }

  .md\:hover\:border-b-8:hover{
    border-bottom-width     : 8px !important;
  }

  .md\:hover\:border-l-8:hover{
    border-left-width     : 8px !important;
  }

  .md\:hover\:border-t:hover{
    border-top-width     : 1px !important;
  }

  .md\:hover\:border-r:hover{
    border-right-width     : 1px !important;
  }

  .md\:hover\:border-b:hover{
    border-bottom-width     : 1px !important;
  }

  .md\:hover\:border-l:hover{
    border-left-width     : 1px !important;
  }

  .md\:focus\:border-0:focus{
    border-width     : 0 !important;
  }

  .md\:focus\:border-2:focus{
    border-width     : 2px !important;
  }

  .md\:focus\:border-4:focus{
    border-width     : 4px !important;
  }

  .md\:focus\:border-8:focus{
    border-width     : 8px !important;
  }

  .md\:focus\:border:focus{
    border-width     : 1px !important;
  }

  .md\:focus\:border-t-0:focus{
    border-top-width     : 0 !important;
  }

  .md\:focus\:border-r-0:focus{
    border-right-width     : 0 !important;
  }

  .md\:focus\:border-b-0:focus{
    border-bottom-width     : 0 !important;
  }

  .md\:focus\:border-l-0:focus{
    border-left-width     : 0 !important;
  }

  .md\:focus\:border-t-2:focus{
    border-top-width     : 2px !important;
  }

  .md\:focus\:border-r-2:focus{
    border-right-width     : 2px !important;
  }

  .md\:focus\:border-b-2:focus{
    border-bottom-width     : 2px !important;
  }

  .md\:focus\:border-l-2:focus{
    border-left-width     : 2px !important;
  }

  .md\:focus\:border-t-4:focus{
    border-top-width     : 4px !important;
  }

  .md\:focus\:border-r-4:focus{
    border-right-width     : 4px !important;
  }

  .md\:focus\:border-b-4:focus{
    border-bottom-width     : 4px !important;
  }

  .md\:focus\:border-l-4:focus{
    border-left-width     : 4px !important;
  }

  .md\:focus\:border-t-8:focus{
    border-top-width     : 8px !important;
  }

  .md\:focus\:border-r-8:focus{
    border-right-width     : 8px !important;
  }

  .md\:focus\:border-b-8:focus{
    border-bottom-width     : 8px !important;
  }

  .md\:focus\:border-l-8:focus{
    border-left-width     : 8px !important;
  }

  .md\:focus\:border-t:focus{
    border-top-width     : 1px !important;
  }

  .md\:focus\:border-r:focus{
    border-right-width     : 1px !important;
  }

  .md\:focus\:border-b:focus{
    border-bottom-width     : 1px !important;
  }

  .md\:focus\:border-l:focus{
    border-left-width     : 1px !important;
  }

  .md\:box-border{
    box-sizing     : border-box !important;
  }

  .md\:box-content{
    box-sizing     : content-box !important;
  }

  .group:hover .md\:group-hover\:box-border{
    box-sizing     : border-box !important;
  }

  .group:hover .md\:group-hover\:box-content{
    box-sizing     : content-box !important;
  }

  .md\:hover\:box-border:hover{
    box-sizing     : border-box !important;
  }

  .md\:hover\:box-content:hover{
    box-sizing     : content-box !important;
  }

  .md\:focus\:box-border:focus{
    box-sizing     : border-box !important;
  }

  .md\:focus\:box-content:focus{
    box-sizing     : content-box !important;
  }

  .md\:cursor-auto{
    cursor     : auto !important;
  }

  .md\:cursor-default{
    cursor     : default !important;
  }

  .md\:cursor-pointer{
    cursor     : pointer !important;
  }

  .md\:cursor-wait{
    cursor     : wait !important;
  }

  .md\:cursor-text{
    cursor     : text !important;
  }

  .md\:cursor-move{
    cursor     : move !important;
  }

  .md\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .group:hover .md\:group-hover\:cursor-auto{
    cursor     : auto !important;
  }

  .group:hover .md\:group-hover\:cursor-default{
    cursor     : default !important;
  }

  .group:hover .md\:group-hover\:cursor-pointer{
    cursor     : pointer !important;
  }

  .group:hover .md\:group-hover\:cursor-wait{
    cursor     : wait !important;
  }

  .group:hover .md\:group-hover\:cursor-text{
    cursor     : text !important;
  }

  .group:hover .md\:group-hover\:cursor-move{
    cursor     : move !important;
  }

  .group:hover .md\:group-hover\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .md\:hover\:cursor-auto:hover{
    cursor     : auto !important;
  }

  .md\:hover\:cursor-default:hover{
    cursor     : default !important;
  }

  .md\:hover\:cursor-pointer:hover{
    cursor     : pointer !important;
  }

  .md\:hover\:cursor-wait:hover{
    cursor     : wait !important;
  }

  .md\:hover\:cursor-text:hover{
    cursor     : text !important;
  }

  .md\:hover\:cursor-move:hover{
    cursor     : move !important;
  }

  .md\:hover\:cursor-not-allowed:hover{
    cursor     : not-allowed !important;
  }

  .md\:focus\:cursor-auto:focus{
    cursor     : auto !important;
  }

  .md\:focus\:cursor-default:focus{
    cursor     : default !important;
  }

  .md\:focus\:cursor-pointer:focus{
    cursor     : pointer !important;
  }

  .md\:focus\:cursor-wait:focus{
    cursor     : wait !important;
  }

  .md\:focus\:cursor-text:focus{
    cursor     : text !important;
  }

  .md\:focus\:cursor-move:focus{
    cursor     : move !important;
  }

  .md\:focus\:cursor-not-allowed:focus{
    cursor     : not-allowed !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\:hidden{
    display     : none !important;
  }

  .group:hover .md\:group-hover\:block{
    display     : block !important;
  }

  .group:hover .md\:group-hover\:inline-block{
    display     : inline-block !important;
  }

  .group:hover .md\:group-hover\:inline{
    display     : inline !important;
  }

  .group:hover .md\:group-hover\:flex{
    display     : flex !important;
  }

  .group:hover .md\:group-hover\:inline-flex{
    display     : inline-flex !important;
  }

  .group:hover .md\:group-hover\:table{
    display     : table !important;
  }

  .group:hover .md\:group-hover\:table-caption{
    display     : table-caption !important;
  }

  .group:hover .md\:group-hover\:table-cell{
    display     : table-cell !important;
  }

  .group:hover .md\:group-hover\:table-column{
    display     : table-column !important;
  }

  .group:hover .md\:group-hover\:table-column-group{
    display     : table-column-group !important;
  }

  .group:hover .md\:group-hover\:table-footer-group{
    display     : table-footer-group !important;
  }

  .group:hover .md\:group-hover\:table-header-group{
    display     : table-header-group !important;
  }

  .group:hover .md\:group-hover\:table-row-group{
    display     : table-row-group !important;
  }

  .group:hover .md\:group-hover\:table-row{
    display     : table-row !important;
  }

  .group:hover .md\:group-hover\:flow-root{
    display     : flow-root !important;
  }

  .group:hover .md\:group-hover\:grid{
    display     : grid !important;
  }

  .group:hover .md\:group-hover\:inline-grid{
    display     : inline-grid !important;
  }

  .group:hover .md\:group-hover\:hidden{
    display     : none !important;
  }

  .md\:hover\:block:hover{
    display     : block !important;
  }

  .md\:hover\:inline-block:hover{
    display     : inline-block !important;
  }

  .md\:hover\:inline:hover{
    display     : inline !important;
  }

  .md\:hover\:flex:hover{
    display     : flex !important;
  }

  .md\:hover\:inline-flex:hover{
    display     : inline-flex !important;
  }

  .md\:hover\:table:hover{
    display     : table !important;
  }

  .md\:hover\:table-caption:hover{
    display     : table-caption !important;
  }

  .md\:hover\:table-cell:hover{
    display     : table-cell !important;
  }

  .md\:hover\:table-column:hover{
    display     : table-column !important;
  }

  .md\:hover\:table-column-group:hover{
    display     : table-column-group !important;
  }

  .md\:hover\:table-footer-group:hover{
    display     : table-footer-group !important;
  }

  .md\:hover\:table-header-group:hover{
    display     : table-header-group !important;
  }

  .md\:hover\:table-row-group:hover{
    display     : table-row-group !important;
  }

  .md\:hover\:table-row:hover{
    display     : table-row !important;
  }

  .md\:hover\:flow-root:hover{
    display     : flow-root !important;
  }

  .md\:hover\:grid:hover{
    display     : grid !important;
  }

  .md\:hover\:inline-grid:hover{
    display     : inline-grid !important;
  }

  .md\:hover\:hidden:hover{
    display     : none !important;
  }

  .md\:focus\:block:focus{
    display     : block !important;
  }

  .md\:focus\:inline-block:focus{
    display     : inline-block !important;
  }

  .md\:focus\:inline:focus{
    display     : inline !important;
  }

  .md\:focus\:flex:focus{
    display     : flex !important;
  }

  .md\:focus\:inline-flex:focus{
    display     : inline-flex !important;
  }

  .md\:focus\:table:focus{
    display     : table !important;
  }

  .md\:focus\:table-caption:focus{
    display     : table-caption !important;
  }

  .md\:focus\:table-cell:focus{
    display     : table-cell !important;
  }

  .md\:focus\:table-column:focus{
    display     : table-column !important;
  }

  .md\:focus\:table-column-group:focus{
    display     : table-column-group !important;
  }

  .md\:focus\:table-footer-group:focus{
    display     : table-footer-group !important;
  }

  .md\:focus\:table-header-group:focus{
    display     : table-header-group !important;
  }

  .md\:focus\:table-row-group:focus{
    display     : table-row-group !important;
  }

  .md\:focus\:table-row:focus{
    display     : table-row !important;
  }

  .md\:focus\:flow-root:focus{
    display     : flow-root !important;
  }

  .md\:focus\:grid:focus{
    display     : grid !important;
  }

  .md\:focus\:inline-grid:focus{
    display     : inline-grid !important;
  }

  .md\:focus\:hidden:focus{
    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;
  }

  .group:hover .md\:group-hover\:flex-row{
    flex-direction     : row !important;
  }

  .group:hover .md\:group-hover\:flex-row-reverse{
    flex-direction     : row-reverse !important;
  }

  .group:hover .md\:group-hover\:flex-col{
    flex-direction     : column !important;
  }

  .group:hover .md\:group-hover\:flex-col-reverse{
    flex-direction     : column-reverse !important;
  }

  .md\:hover\:flex-row:hover{
    flex-direction     : row !important;
  }

  .md\:hover\:flex-row-reverse:hover{
    flex-direction     : row-reverse !important;
  }

  .md\:hover\:flex-col:hover{
    flex-direction     : column !important;
  }

  .md\:hover\:flex-col-reverse:hover{
    flex-direction     : column-reverse !important;
  }

  .md\:focus\:flex-row:focus{
    flex-direction     : row !important;
  }

  .md\:focus\:flex-row-reverse:focus{
    flex-direction     : row-reverse !important;
  }

  .md\:focus\:flex-col:focus{
    flex-direction     : column !important;
  }

  .md\:focus\:flex-col-reverse:focus{
    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;
  }

  .group:hover .md\:group-hover\:flex-wrap{
    flex-wrap     : wrap !important;
  }

  .group:hover .md\:group-hover\:flex-wrap-reverse{
    flex-wrap     : wrap-reverse !important;
  }

  .group:hover .md\:group-hover\:flex-no-wrap{
    flex-wrap     : nowrap !important;
  }

  .md\:hover\:flex-wrap:hover{
    flex-wrap     : wrap !important;
  }

  .md\:hover\:flex-wrap-reverse:hover{
    flex-wrap     : wrap-reverse !important;
  }

  .md\:hover\:flex-no-wrap:hover{
    flex-wrap     : nowrap !important;
  }

  .md\:focus\:flex-wrap:focus{
    flex-wrap     : wrap !important;
  }

  .md\:focus\:flex-wrap-reverse:focus{
    flex-wrap     : wrap-reverse !important;
  }

  .md\:focus\:flex-no-wrap:focus{
    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;
  }

  .group:hover .md\:group-hover\:items-start{
    align-items     : flex-start !important;
  }

  .group:hover .md\:group-hover\:items-end{
    align-items     : flex-end !important;
  }

  .group:hover .md\:group-hover\:items-center{
    align-items     : center !important;
  }

  .group:hover .md\:group-hover\:items-baseline{
    align-items     : baseline !important;
  }

  .group:hover .md\:group-hover\:items-stretch{
    align-items     : stretch !important;
  }

  .md\:hover\:items-start:hover{
    align-items     : flex-start !important;
  }

  .md\:hover\:items-end:hover{
    align-items     : flex-end !important;
  }

  .md\:hover\:items-center:hover{
    align-items     : center !important;
  }

  .md\:hover\:items-baseline:hover{
    align-items     : baseline !important;
  }

  .md\:hover\:items-stretch:hover{
    align-items     : stretch !important;
  }

  .md\:focus\:items-start:focus{
    align-items     : flex-start !important;
  }

  .md\:focus\:items-end:focus{
    align-items     : flex-end !important;
  }

  .md\:focus\:items-center:focus{
    align-items     : center !important;
  }

  .md\:focus\:items-baseline:focus{
    align-items     : baseline !important;
  }

  .md\:focus\:items-stretch:focus{
    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;
  }

  .group:hover .md\:group-hover\:self-auto{
    align-self     : auto !important;
  }

  .group:hover .md\:group-hover\:self-start{
    align-self     : flex-start !important;
  }

  .group:hover .md\:group-hover\:self-end{
    align-self     : flex-end !important;
  }

  .group:hover .md\:group-hover\:self-center{
    align-self     : center !important;
  }

  .group:hover .md\:group-hover\:self-stretch{
    align-self     : stretch !important;
  }

  .md\:hover\:self-auto:hover{
    align-self     : auto !important;
  }

  .md\:hover\:self-start:hover{
    align-self     : flex-start !important;
  }

  .md\:hover\:self-end:hover{
    align-self     : flex-end !important;
  }

  .md\:hover\:self-center:hover{
    align-self     : center !important;
  }

  .md\:hover\:self-stretch:hover{
    align-self     : stretch !important;
  }

  .md\:focus\:self-auto:focus{
    align-self     : auto !important;
  }

  .md\:focus\:self-start:focus{
    align-self     : flex-start !important;
  }

  .md\:focus\:self-end:focus{
    align-self     : flex-end !important;
  }

  .md\:focus\:self-center:focus{
    align-self     : center !important;
  }

  .md\:focus\:self-stretch:focus{
    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;
  }

  .group:hover .md\:group-hover\:justify-start{
    justify-content     : flex-start !important;
  }

  .group:hover .md\:group-hover\:justify-end{
    justify-content     : flex-end !important;
  }

  .group:hover .md\:group-hover\:justify-center{
    justify-content     : center !important;
  }

  .group:hover .md\:group-hover\:justify-between{
    justify-content     : space-between !important;
  }

  .group:hover .md\:group-hover\:justify-around{
    justify-content     : space-around !important;
  }

  .group:hover .md\:group-hover\:justify-evenly{
    justify-content     : space-evenly !important;
  }

  .md\:hover\:justify-start:hover{
    justify-content     : flex-start !important;
  }

  .md\:hover\:justify-end:hover{
    justify-content     : flex-end !important;
  }

  .md\:hover\:justify-center:hover{
    justify-content     : center !important;
  }

  .md\:hover\:justify-between:hover{
    justify-content     : space-between !important;
  }

  .md\:hover\:justify-around:hover{
    justify-content     : space-around !important;
  }

  .md\:hover\:justify-evenly:hover{
    justify-content     : space-evenly !important;
  }

  .md\:focus\:justify-start:focus{
    justify-content     : flex-start !important;
  }

  .md\:focus\:justify-end:focus{
    justify-content     : flex-end !important;
  }

  .md\:focus\:justify-center:focus{
    justify-content     : center !important;
  }

  .md\:focus\:justify-between:focus{
    justify-content     : space-between !important;
  }

  .md\:focus\:justify-around:focus{
    justify-content     : space-around !important;
  }

  .md\:focus\:justify-evenly:focus{
    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;
  }

  .group:hover .md\:group-hover\:content-center{
    align-content     : center !important;
  }

  .group:hover .md\:group-hover\:content-start{
    align-content     : flex-start !important;
  }

  .group:hover .md\:group-hover\:content-end{
    align-content     : flex-end !important;
  }

  .group:hover .md\:group-hover\:content-between{
    align-content     : space-between !important;
  }

  .group:hover .md\:group-hover\:content-around{
    align-content     : space-around !important;
  }

  .md\:hover\:content-center:hover{
    align-content     : center !important;
  }

  .md\:hover\:content-start:hover{
    align-content     : flex-start !important;
  }

  .md\:hover\:content-end:hover{
    align-content     : flex-end !important;
  }

  .md\:hover\:content-between:hover{
    align-content     : space-between !important;
  }

  .md\:hover\:content-around:hover{
    align-content     : space-around !important;
  }

  .md\:focus\:content-center:focus{
    align-content     : center !important;
  }

  .md\:focus\:content-start:focus{
    align-content     : flex-start !important;
  }

  .md\:focus\:content-end:focus{
    align-content     : flex-end !important;
  }

  .md\:focus\:content-between:focus{
    align-content     : space-between !important;
  }

  .md\:focus\:content-around:focus{
    align-content     : space-around !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;
  }

  .group:hover .md\:group-hover\:flex-1{
    flex     : 1 1 0% !important;
  }

  .group:hover .md\:group-hover\:flex-auto{
    flex     : 1 1 auto !important;
  }

  .group:hover .md\:group-hover\:flex-initial{
    flex     : 0 1 auto !important;
  }

  .group:hover .md\:group-hover\:flex-none{
    flex     : none !important;
  }

  .md\:hover\:flex-1:hover{
    flex     : 1 1 0% !important;
  }

  .md\:hover\:flex-auto:hover{
    flex     : 1 1 auto !important;
  }

  .md\:hover\:flex-initial:hover{
    flex     : 0 1 auto !important;
  }

  .md\:hover\:flex-none:hover{
    flex     : none !important;
  }

  .md\:focus\:flex-1:focus{
    flex     : 1 1 0% !important;
  }

  .md\:focus\:flex-auto:focus{
    flex     : 1 1 auto !important;
  }

  .md\:focus\:flex-initial:focus{
    flex     : 0 1 auto !important;
  }

  .md\:focus\:flex-none:focus{
    flex     : none !important;
  }

  .md\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .md\:flex-grow{
    flex-grow     : 1 !important;
  }

  .group:hover .md\:group-hover\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .group:hover .md\:group-hover\:flex-grow{
    flex-grow     : 1 !important;
  }

  .md\:hover\:flex-grow-0:hover{
    flex-grow     : 0 !important;
  }

  .md\:hover\:flex-grow:hover{
    flex-grow     : 1 !important;
  }

  .md\:focus\:flex-grow-0:focus{
    flex-grow     : 0 !important;
  }

  .md\:focus\:flex-grow:focus{
    flex-grow     : 1 !important;
  }

  .md\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .md\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .group:hover .md\:group-hover\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .group:hover .md\:group-hover\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .md\:hover\:flex-shrink-0:hover{
    flex-shrink     : 0 !important;
  }

  .md\:hover\:flex-shrink:hover{
    flex-shrink     : 1 !important;
  }

  .md\:focus\:flex-shrink-0:focus{
    flex-shrink     : 0 !important;
  }

  .md\:focus\:flex-shrink:focus{
    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;
  }

  .group:hover .md\:group-hover\:order-1{
    order     : 1 !important;
  }

  .group:hover .md\:group-hover\:order-2{
    order     : 2 !important;
  }

  .group:hover .md\:group-hover\:order-3{
    order     : 3 !important;
  }

  .group:hover .md\:group-hover\:order-4{
    order     : 4 !important;
  }

  .group:hover .md\:group-hover\:order-5{
    order     : 5 !important;
  }

  .group:hover .md\:group-hover\:order-6{
    order     : 6 !important;
  }

  .group:hover .md\:group-hover\:order-7{
    order     : 7 !important;
  }

  .group:hover .md\:group-hover\:order-8{
    order     : 8 !important;
  }

  .group:hover .md\:group-hover\:order-9{
    order     : 9 !important;
  }

  .group:hover .md\:group-hover\:order-10{
    order     : 10 !important;
  }

  .group:hover .md\:group-hover\:order-11{
    order     : 11 !important;
  }

  .group:hover .md\:group-hover\:order-12{
    order     : 12 !important;
  }

  .group:hover .md\:group-hover\:order-first{
    order     : -9999 !important;
  }

  .group:hover .md\:group-hover\:order-last{
    order     : 9999 !important;
  }

  .group:hover .md\:group-hover\:order-none{
    order     : 0 !important;
  }

  .md\:hover\:order-1:hover{
    order     : 1 !important;
  }

  .md\:hover\:order-2:hover{
    order     : 2 !important;
  }

  .md\:hover\:order-3:hover{
    order     : 3 !important;
  }

  .md\:hover\:order-4:hover{
    order     : 4 !important;
  }

  .md\:hover\:order-5:hover{
    order     : 5 !important;
  }

  .md\:hover\:order-6:hover{
    order     : 6 !important;
  }

  .md\:hover\:order-7:hover{
    order     : 7 !important;
  }

  .md\:hover\:order-8:hover{
    order     : 8 !important;
  }

  .md\:hover\:order-9:hover{
    order     : 9 !important;
  }

  .md\:hover\:order-10:hover{
    order     : 10 !important;
  }

  .md\:hover\:order-11:hover{
    order     : 11 !important;
  }

  .md\:hover\:order-12:hover{
    order     : 12 !important;
  }

  .md\:hover\:order-first:hover{
    order     : -9999 !important;
  }

  .md\:hover\:order-last:hover{
    order     : 9999 !important;
  }

  .md\:hover\:order-none:hover{
    order     : 0 !important;
  }

  .md\:focus\:order-1:focus{
    order     : 1 !important;
  }

  .md\:focus\:order-2:focus{
    order     : 2 !important;
  }

  .md\:focus\:order-3:focus{
    order     : 3 !important;
  }

  .md\:focus\:order-4:focus{
    order     : 4 !important;
  }

  .md\:focus\:order-5:focus{
    order     : 5 !important;
  }

  .md\:focus\:order-6:focus{
    order     : 6 !important;
  }

  .md\:focus\:order-7:focus{
    order     : 7 !important;
  }

  .md\:focus\:order-8:focus{
    order     : 8 !important;
  }

  .md\:focus\:order-9:focus{
    order     : 9 !important;
  }

  .md\:focus\:order-10:focus{
    order     : 10 !important;
  }

  .md\:focus\:order-11:focus{
    order     : 11 !important;
  }

  .md\:focus\:order-12:focus{
    order     : 12 !important;
  }

  .md\:focus\:order-first:focus{
    order     : -9999 !important;
  }

  .md\:focus\:order-last:focus{
    order     : 9999 !important;
  }

  .md\:focus\:order-none:focus{
    order     : 0 !important;
  }

  .md\:float-right{
    float     : right !important;
  }

  .md\:float-left{
    float     : left !important;
  }

  .md\:float-none{
    float     : none !important;
  }

  .md\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .group:hover .md\:group-hover\:float-right{
    float     : right !important;
  }

  .group:hover .md\:group-hover\:float-left{
    float     : left !important;
  }

  .group:hover .md\:group-hover\:float-none{
    float     : none !important;
  }

  .group:hover .md\:group-hover\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .md\:hover\:float-right:hover{
    float     : right !important;
  }

  .md\:hover\:float-left:hover{
    float     : left !important;
  }

  .md\:hover\:float-none:hover{
    float     : none !important;
  }

  .md\:hover\:clearfix:hover:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .md\:focus\:float-right:focus{
    float     : right !important;
  }

  .md\:focus\:float-left:focus{
    float     : left !important;
  }

  .md\:focus\:float-none:focus{
    float     : none !important;
  }

  .md\:focus\:clearfix:focus:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .md\:clear-left{
    clear     : left !important;
  }

  .md\:clear-right{
    clear     : right !important;
  }

  .md\:clear-both{
    clear     : both !important;
  }

  .md\:clear-none{
    clear     : none !important;
  }

  .group:hover .md\:group-hover\:clear-left{
    clear     : left !important;
  }

  .group:hover .md\:group-hover\:clear-right{
    clear     : right !important;
  }

  .group:hover .md\:group-hover\:clear-both{
    clear     : both !important;
  }

  .group:hover .md\:group-hover\:clear-none{
    clear     : none !important;
  }

  .md\:hover\:clear-left:hover{
    clear     : left !important;
  }

  .md\:hover\:clear-right:hover{
    clear     : right !important;
  }

  .md\:hover\:clear-both:hover{
    clear     : both !important;
  }

  .md\:hover\:clear-none:hover{
    clear     : none !important;
  }

  .md\:focus\:clear-left:focus{
    clear     : left !important;
  }

  .md\:focus\:clear-right:focus{
    clear     : right !important;
  }

  .md\:focus\:clear-both:focus{
    clear     : both !important;
  }

  .md\:focus\:clear-none:focus{
    clear     : none !important;
  }

  .md\:font-sans{
    font-family     : 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;
  }

  .md\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .md\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .group:hover .md\:group-hover\:font-sans{
    font-family     : 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;
  }

  .group:hover .md\:group-hover\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .group:hover .md\:group-hover\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .md\:hover\:font-sans:hover{
    font-family     : 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;
  }

  .md\:hover\:font-serif:hover{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .md\:hover\:font-mono:hover{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .md\:focus\:font-sans:focus{
    font-family     : 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;
  }

  .md\:focus\:font-serif:focus{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .md\:focus\:font-mono:focus{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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;
  }

  .group:hover .md\:group-hover\:font-hairline{
    font-weight     : 100 !important;
  }

  .group:hover .md\:group-hover\:font-thin{
    font-weight     : 200 !important;
  }

  .group:hover .md\:group-hover\:font-light{
    font-weight     : 300 !important;
  }

  .group:hover .md\:group-hover\:font-normal{
    font-weight     : 400 !important;
  }

  .group:hover .md\:group-hover\:font-medium{
    font-weight     : 500 !important;
  }

  .group:hover .md\:group-hover\:font-semibold{
    font-weight     : 600 !important;
  }

  .group:hover .md\:group-hover\:font-bold{
    font-weight     : 700 !important;
  }

  .group:hover .md\:group-hover\:font-extrabold{
    font-weight     : 800 !important;
  }

  .group:hover .md\:group-hover\:font-black{
    font-weight     : 900 !important;
  }

  .md\:hover\:font-hairline:hover{
    font-weight     : 100 !important;
  }

  .md\:hover\:font-thin:hover{
    font-weight     : 200 !important;
  }

  .md\:hover\:font-light:hover{
    font-weight     : 300 !important;
  }

  .md\:hover\:font-normal:hover{
    font-weight     : 400 !important;
  }

  .md\:hover\:font-medium:hover{
    font-weight     : 500 !important;
  }

  .md\:hover\:font-semibold:hover{
    font-weight     : 600 !important;
  }

  .md\:hover\:font-bold:hover{
    font-weight     : 700 !important;
  }

  .md\:hover\:font-extrabold:hover{
    font-weight     : 800 !important;
  }

  .md\:hover\:font-black:hover{
    font-weight     : 900 !important;
  }

  .md\:focus\:font-hairline:focus{
    font-weight     : 100 !important;
  }

  .md\:focus\:font-thin:focus{
    font-weight     : 200 !important;
  }

  .md\:focus\:font-light:focus{
    font-weight     : 300 !important;
  }

  .md\:focus\:font-normal:focus{
    font-weight     : 400 !important;
  }

  .md\:focus\:font-medium:focus{
    font-weight     : 500 !important;
  }

  .md\:focus\:font-semibold:focus{
    font-weight     : 600 !important;
  }

  .md\:focus\:font-bold:focus{
    font-weight     : 700 !important;
  }

  .md\:focus\:font-extrabold:focus{
    font-weight     : 800 !important;
  }

  .md\:focus\:font-black:focus{
    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-20{
    height     : 5rem !important;
  }

  .md\:h-24{
    height     : 6rem !important;
  }

  .md\:h-28{
    height     : 7rem !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-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-96{
    height     : 24rem !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-screen{
    height     : 100vh !important;
  }

  .group:hover .md\:group-hover\:h-0{
    height     : 0 !important;
  }

  .group:hover .md\:group-hover\:h-1{
    height     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:h-2{
    height     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:h-3{
    height     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:h-4{
    height     : 1rem !important;
  }

  .group:hover .md\:group-hover\:h-5{
    height     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:h-6{
    height     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:h-7{
    height     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:h-8{
    height     : 2rem !important;
  }

  .group:hover .md\:group-hover\:h-9{
    height     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:h-10{
    height     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:h-11{
    height     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:h-12{
    height     : 3rem !important;
  }

  .group:hover .md\:group-hover\:h-13{
    height     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:h-14{
    height     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:h-15{
    height     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:h-16{
    height     : 4rem !important;
  }

  .group:hover .md\:group-hover\:h-20{
    height     : 5rem !important;
  }

  .group:hover .md\:group-hover\:h-24{
    height     : 6rem !important;
  }

  .group:hover .md\:group-hover\:h-28{
    height     : 7rem !important;
  }

  .group:hover .md\:group-hover\:h-32{
    height     : 8rem !important;
  }

  .group:hover .md\:group-hover\:h-36{
    height     : 9rem !important;
  }

  .group:hover .md\:group-hover\:h-40{
    height     : 10rem !important;
  }

  .group:hover .md\:group-hover\:h-44{
    height     : 11rem !important;
  }

  .group:hover .md\:group-hover\:h-48{
    height     : 12rem !important;
  }

  .group:hover .md\:group-hover\:h-52{
    height     : 13rem !important;
  }

  .group:hover .md\:group-hover\:h-56{
    height     : 14rem !important;
  }

  .group:hover .md\:group-hover\:h-60{
    height     : 15rem !important;
  }

  .group:hover .md\:group-hover\:h-64{
    height     : 16rem !important;
  }

  .group:hover .md\:group-hover\:h-72{
    height     : 18rem !important;
  }

  .group:hover .md\:group-hover\:h-80{
    height     : 20rem !important;
  }

  .group:hover .md\:group-hover\:h-96{
    height     : 24rem !important;
  }

  .group:hover .md\:group-hover\:h-auto{
    height     : auto !important;
  }

  .group:hover .md\:group-hover\:h-px{
    height     : 1px !important;
  }

  .group:hover .md\:group-hover\:h-0\.5{
    height     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:h-1\.5{
    height     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:h-2\.5{
    height     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:h-3\.5{
    height     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:h-1\/2{
    height     : 50% !important;
  }

  .group:hover .md\:group-hover\:h-1\/3{
    height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:h-2\/3{
    height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:h-1\/4{
    height     : 25% !important;
  }

  .group:hover .md\:group-hover\:h-2\/4{
    height     : 50% !important;
  }

  .group:hover .md\:group-hover\:h-3\/4{
    height     : 75% !important;
  }

  .group:hover .md\:group-hover\:h-1\/5{
    height     : 20% !important;
  }

  .group:hover .md\:group-hover\:h-2\/5{
    height     : 40% !important;
  }

  .group:hover .md\:group-hover\:h-3\/5{
    height     : 60% !important;
  }

  .group:hover .md\:group-hover\:h-4\/5{
    height     : 80% !important;
  }

  .group:hover .md\:group-hover\:h-1\/6{
    height     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:h-2\/6{
    height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:h-3\/6{
    height     : 50% !important;
  }

  .group:hover .md\:group-hover\:h-4\/6{
    height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:h-5\/6{
    height     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:h-1\/12{
    height     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:h-2\/12{
    height     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:h-3\/12{
    height     : 25% !important;
  }

  .group:hover .md\:group-hover\:h-4\/12{
    height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:h-5\/12{
    height     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:h-6\/12{
    height     : 50% !important;
  }

  .group:hover .md\:group-hover\:h-7\/12{
    height     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:h-8\/12{
    height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:h-9\/12{
    height     : 75% !important;
  }

  .group:hover .md\:group-hover\:h-10\/12{
    height     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:h-11\/12{
    height     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:h-full{
    height     : 100% !important;
  }

  .group:hover .md\:group-hover\:h-screen{
    height     : 100vh !important;
  }

  .md\:hover\:h-0:hover{
    height     : 0 !important;
  }

  .md\:hover\:h-1:hover{
    height     : 0.25rem !important;
  }

  .md\:hover\:h-2:hover{
    height     : 0.5rem !important;
  }

  .md\:hover\:h-3:hover{
    height     : 0.75rem !important;
  }

  .md\:hover\:h-4:hover{
    height     : 1rem !important;
  }

  .md\:hover\:h-5:hover{
    height     : 1.25rem !important;
  }

  .md\:hover\:h-6:hover{
    height     : 1.5rem !important;
  }

  .md\:hover\:h-7:hover{
    height     : 1.75rem !important;
  }

  .md\:hover\:h-8:hover{
    height     : 2rem !important;
  }

  .md\:hover\:h-9:hover{
    height     : 2.25rem !important;
  }

  .md\:hover\:h-10:hover{
    height     : 2.5rem !important;
  }

  .md\:hover\:h-11:hover{
    height     : 2.75rem !important;
  }

  .md\:hover\:h-12:hover{
    height     : 3rem !important;
  }

  .md\:hover\:h-13:hover{
    height     : 3.25rem !important;
  }

  .md\:hover\:h-14:hover{
    height     : 3.5rem !important;
  }

  .md\:hover\:h-15:hover{
    height     : 3.75rem !important;
  }

  .md\:hover\:h-16:hover{
    height     : 4rem !important;
  }

  .md\:hover\:h-20:hover{
    height     : 5rem !important;
  }

  .md\:hover\:h-24:hover{
    height     : 6rem !important;
  }

  .md\:hover\:h-28:hover{
    height     : 7rem !important;
  }

  .md\:hover\:h-32:hover{
    height     : 8rem !important;
  }

  .md\:hover\:h-36:hover{
    height     : 9rem !important;
  }

  .md\:hover\:h-40:hover{
    height     : 10rem !important;
  }

  .md\:hover\:h-44:hover{
    height     : 11rem !important;
  }

  .md\:hover\:h-48:hover{
    height     : 12rem !important;
  }

  .md\:hover\:h-52:hover{
    height     : 13rem !important;
  }

  .md\:hover\:h-56:hover{
    height     : 14rem !important;
  }

  .md\:hover\:h-60:hover{
    height     : 15rem !important;
  }

  .md\:hover\:h-64:hover{
    height     : 16rem !important;
  }

  .md\:hover\:h-72:hover{
    height     : 18rem !important;
  }

  .md\:hover\:h-80:hover{
    height     : 20rem !important;
  }

  .md\:hover\:h-96:hover{
    height     : 24rem !important;
  }

  .md\:hover\:h-auto:hover{
    height     : auto !important;
  }

  .md\:hover\:h-px:hover{
    height     : 1px !important;
  }

  .md\:hover\:h-0\.5:hover{
    height     : 0.125rem !important;
  }

  .md\:hover\:h-1\.5:hover{
    height     : 0.375rem !important;
  }

  .md\:hover\:h-2\.5:hover{
    height     : 0.625rem !important;
  }

  .md\:hover\:h-3\.5:hover{
    height     : 0.875rem !important;
  }

  .md\:hover\:h-1\/2:hover{
    height     : 50% !important;
  }

  .md\:hover\:h-1\/3:hover{
    height     : 33.333333% !important;
  }

  .md\:hover\:h-2\/3:hover{
    height     : 66.666667% !important;
  }

  .md\:hover\:h-1\/4:hover{
    height     : 25% !important;
  }

  .md\:hover\:h-2\/4:hover{
    height     : 50% !important;
  }

  .md\:hover\:h-3\/4:hover{
    height     : 75% !important;
  }

  .md\:hover\:h-1\/5:hover{
    height     : 20% !important;
  }

  .md\:hover\:h-2\/5:hover{
    height     : 40% !important;
  }

  .md\:hover\:h-3\/5:hover{
    height     : 60% !important;
  }

  .md\:hover\:h-4\/5:hover{
    height     : 80% !important;
  }

  .md\:hover\:h-1\/6:hover{
    height     : 16.666667% !important;
  }

  .md\:hover\:h-2\/6:hover{
    height     : 33.333333% !important;
  }

  .md\:hover\:h-3\/6:hover{
    height     : 50% !important;
  }

  .md\:hover\:h-4\/6:hover{
    height     : 66.666667% !important;
  }

  .md\:hover\:h-5\/6:hover{
    height     : 83.333333% !important;
  }

  .md\:hover\:h-1\/12:hover{
    height     : 8.333333% !important;
  }

  .md\:hover\:h-2\/12:hover{
    height     : 16.666667% !important;
  }

  .md\:hover\:h-3\/12:hover{
    height     : 25% !important;
  }

  .md\:hover\:h-4\/12:hover{
    height     : 33.333333% !important;
  }

  .md\:hover\:h-5\/12:hover{
    height     : 41.666667% !important;
  }

  .md\:hover\:h-6\/12:hover{
    height     : 50% !important;
  }

  .md\:hover\:h-7\/12:hover{
    height     : 58.333333% !important;
  }

  .md\:hover\:h-8\/12:hover{
    height     : 66.666667% !important;
  }

  .md\:hover\:h-9\/12:hover{
    height     : 75% !important;
  }

  .md\:hover\:h-10\/12:hover{
    height     : 83.333333% !important;
  }

  .md\:hover\:h-11\/12:hover{
    height     : 91.666667% !important;
  }

  .md\:hover\:h-full:hover{
    height     : 100% !important;
  }

  .md\:hover\:h-screen:hover{
    height     : 100vh !important;
  }

  .md\:focus\:h-0:focus{
    height     : 0 !important;
  }

  .md\:focus\:h-1:focus{
    height     : 0.25rem !important;
  }

  .md\:focus\:h-2:focus{
    height     : 0.5rem !important;
  }

  .md\:focus\:h-3:focus{
    height     : 0.75rem !important;
  }

  .md\:focus\:h-4:focus{
    height     : 1rem !important;
  }

  .md\:focus\:h-5:focus{
    height     : 1.25rem !important;
  }

  .md\:focus\:h-6:focus{
    height     : 1.5rem !important;
  }

  .md\:focus\:h-7:focus{
    height     : 1.75rem !important;
  }

  .md\:focus\:h-8:focus{
    height     : 2rem !important;
  }

  .md\:focus\:h-9:focus{
    height     : 2.25rem !important;
  }

  .md\:focus\:h-10:focus{
    height     : 2.5rem !important;
  }

  .md\:focus\:h-11:focus{
    height     : 2.75rem !important;
  }

  .md\:focus\:h-12:focus{
    height     : 3rem !important;
  }

  .md\:focus\:h-13:focus{
    height     : 3.25rem !important;
  }

  .md\:focus\:h-14:focus{
    height     : 3.5rem !important;
  }

  .md\:focus\:h-15:focus{
    height     : 3.75rem !important;
  }

  .md\:focus\:h-16:focus{
    height     : 4rem !important;
  }

  .md\:focus\:h-20:focus{
    height     : 5rem !important;
  }

  .md\:focus\:h-24:focus{
    height     : 6rem !important;
  }

  .md\:focus\:h-28:focus{
    height     : 7rem !important;
  }

  .md\:focus\:h-32:focus{
    height     : 8rem !important;
  }

  .md\:focus\:h-36:focus{
    height     : 9rem !important;
  }

  .md\:focus\:h-40:focus{
    height     : 10rem !important;
  }

  .md\:focus\:h-44:focus{
    height     : 11rem !important;
  }

  .md\:focus\:h-48:focus{
    height     : 12rem !important;
  }

  .md\:focus\:h-52:focus{
    height     : 13rem !important;
  }

  .md\:focus\:h-56:focus{
    height     : 14rem !important;
  }

  .md\:focus\:h-60:focus{
    height     : 15rem !important;
  }

  .md\:focus\:h-64:focus{
    height     : 16rem !important;
  }

  .md\:focus\:h-72:focus{
    height     : 18rem !important;
  }

  .md\:focus\:h-80:focus{
    height     : 20rem !important;
  }

  .md\:focus\:h-96:focus{
    height     : 24rem !important;
  }

  .md\:focus\:h-auto:focus{
    height     : auto !important;
  }

  .md\:focus\:h-px:focus{
    height     : 1px !important;
  }

  .md\:focus\:h-0\.5:focus{
    height     : 0.125rem !important;
  }

  .md\:focus\:h-1\.5:focus{
    height     : 0.375rem !important;
  }

  .md\:focus\:h-2\.5:focus{
    height     : 0.625rem !important;
  }

  .md\:focus\:h-3\.5:focus{
    height     : 0.875rem !important;
  }

  .md\:focus\:h-1\/2:focus{
    height     : 50% !important;
  }

  .md\:focus\:h-1\/3:focus{
    height     : 33.333333% !important;
  }

  .md\:focus\:h-2\/3:focus{
    height     : 66.666667% !important;
  }

  .md\:focus\:h-1\/4:focus{
    height     : 25% !important;
  }

  .md\:focus\:h-2\/4:focus{
    height     : 50% !important;
  }

  .md\:focus\:h-3\/4:focus{
    height     : 75% !important;
  }

  .md\:focus\:h-1\/5:focus{
    height     : 20% !important;
  }

  .md\:focus\:h-2\/5:focus{
    height     : 40% !important;
  }

  .md\:focus\:h-3\/5:focus{
    height     : 60% !important;
  }

  .md\:focus\:h-4\/5:focus{
    height     : 80% !important;
  }

  .md\:focus\:h-1\/6:focus{
    height     : 16.666667% !important;
  }

  .md\:focus\:h-2\/6:focus{
    height     : 33.333333% !important;
  }

  .md\:focus\:h-3\/6:focus{
    height     : 50% !important;
  }

  .md\:focus\:h-4\/6:focus{
    height     : 66.666667% !important;
  }

  .md\:focus\:h-5\/6:focus{
    height     : 83.333333% !important;
  }

  .md\:focus\:h-1\/12:focus{
    height     : 8.333333% !important;
  }

  .md\:focus\:h-2\/12:focus{
    height     : 16.666667% !important;
  }

  .md\:focus\:h-3\/12:focus{
    height     : 25% !important;
  }

  .md\:focus\:h-4\/12:focus{
    height     : 33.333333% !important;
  }

  .md\:focus\:h-5\/12:focus{
    height     : 41.666667% !important;
  }

  .md\:focus\:h-6\/12:focus{
    height     : 50% !important;
  }

  .md\:focus\:h-7\/12:focus{
    height     : 58.333333% !important;
  }

  .md\:focus\:h-8\/12:focus{
    height     : 66.666667% !important;
  }

  .md\:focus\:h-9\/12:focus{
    height     : 75% !important;
  }

  .md\:focus\:h-10\/12:focus{
    height     : 83.333333% !important;
  }

  .md\:focus\:h-11\/12:focus{
    height     : 91.666667% !important;
  }

  .md\:focus\:h-full:focus{
    height     : 100% !important;
  }

  .md\:focus\:h-screen:focus{
    height     : 100vh !important;
  }

  .md\:text-xs{
    font-size     : 0.75rem !important;
  }

  .md\:text-sm{
    font-size     : 0.875rem !important;
  }

  .md\:text-base{
    font-size     : 1rem !important;
  }

  .md\:text-lg{
    font-size     : 1.125rem !important;
  }

  .md\:text-xl{
    font-size     : 1.25rem !important;
  }

  .md\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .md\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .md\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .md\:text-5xl{
    font-size     : 3rem !important;
  }

  .md\:text-6xl{
    font-size     : 4rem !important;
  }

  .group:hover .md\:group-hover\:text-xs{
    font-size     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:text-sm{
    font-size     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:text-base{
    font-size     : 1rem !important;
  }

  .group:hover .md\:group-hover\:text-lg{
    font-size     : 1.125rem !important;
  }

  .group:hover .md\:group-hover\:text-xl{
    font-size     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .group:hover .md\:group-hover\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:text-5xl{
    font-size     : 3rem !important;
  }

  .group:hover .md\:group-hover\:text-6xl{
    font-size     : 4rem !important;
  }

  .md\:hover\:text-xs:hover{
    font-size     : 0.75rem !important;
  }

  .md\:hover\:text-sm:hover{
    font-size     : 0.875rem !important;
  }

  .md\:hover\:text-base:hover{
    font-size     : 1rem !important;
  }

  .md\:hover\:text-lg:hover{
    font-size     : 1.125rem !important;
  }

  .md\:hover\:text-xl:hover{
    font-size     : 1.25rem !important;
  }

  .md\:hover\:text-2xl:hover{
    font-size     : 1.5rem !important;
  }

  .md\:hover\:text-3xl:hover{
    font-size     : 1.875rem !important;
  }

  .md\:hover\:text-4xl:hover{
    font-size     : 2.25rem !important;
  }

  .md\:hover\:text-5xl:hover{
    font-size     : 3rem !important;
  }

  .md\:hover\:text-6xl:hover{
    font-size     : 4rem !important;
  }

  .md\:focus\:text-xs:focus{
    font-size     : 0.75rem !important;
  }

  .md\:focus\:text-sm:focus{
    font-size     : 0.875rem !important;
  }

  .md\:focus\:text-base:focus{
    font-size     : 1rem !important;
  }

  .md\:focus\:text-lg:focus{
    font-size     : 1.125rem !important;
  }

  .md\:focus\:text-xl:focus{
    font-size     : 1.25rem !important;
  }

  .md\:focus\:text-2xl:focus{
    font-size     : 1.5rem !important;
  }

  .md\:focus\:text-3xl:focus{
    font-size     : 1.875rem !important;
  }

  .md\:focus\:text-4xl:focus{
    font-size     : 2.25rem !important;
  }

  .md\:focus\:text-5xl:focus{
    font-size     : 3rem !important;
  }

  .md\:focus\:text-6xl:focus{
    font-size     : 4rem !important;
  }

  .md\:leading-3{
    line-height     : .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;
  }

  .group:hover .md\:group-hover\:leading-3{
    line-height     : .75rem !important;
  }

  .group:hover .md\:group-hover\:leading-4{
    line-height     : 1rem !important;
  }

  .group:hover .md\:group-hover\:leading-5{
    line-height     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:leading-6{
    line-height     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:leading-7{
    line-height     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:leading-8{
    line-height     : 2rem !important;
  }

  .group:hover .md\:group-hover\:leading-9{
    line-height     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:leading-10{
    line-height     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:leading-none{
    line-height     : 1 !important;
  }

  .group:hover .md\:group-hover\:leading-tight{
    line-height     : 1.25 !important;
  }

  .group:hover .md\:group-hover\:leading-snug{
    line-height     : 1.375 !important;
  }

  .group:hover .md\:group-hover\:leading-normal{
    line-height     : 1.5 !important;
  }

  .group:hover .md\:group-hover\:leading-relaxed{
    line-height     : 1.625 !important;
  }

  .group:hover .md\:group-hover\:leading-loose{
    line-height     : 2 !important;
  }

  .md\:hover\:leading-3:hover{
    line-height     : .75rem !important;
  }

  .md\:hover\:leading-4:hover{
    line-height     : 1rem !important;
  }

  .md\:hover\:leading-5:hover{
    line-height     : 1.25rem !important;
  }

  .md\:hover\:leading-6:hover{
    line-height     : 1.5rem !important;
  }

  .md\:hover\:leading-7:hover{
    line-height     : 1.75rem !important;
  }

  .md\:hover\:leading-8:hover{
    line-height     : 2rem !important;
  }

  .md\:hover\:leading-9:hover{
    line-height     : 2.25rem !important;
  }

  .md\:hover\:leading-10:hover{
    line-height     : 2.5rem !important;
  }

  .md\:hover\:leading-none:hover{
    line-height     : 1 !important;
  }

  .md\:hover\:leading-tight:hover{
    line-height     : 1.25 !important;
  }

  .md\:hover\:leading-snug:hover{
    line-height     : 1.375 !important;
  }

  .md\:hover\:leading-normal:hover{
    line-height     : 1.5 !important;
  }

  .md\:hover\:leading-relaxed:hover{
    line-height     : 1.625 !important;
  }

  .md\:hover\:leading-loose:hover{
    line-height     : 2 !important;
  }

  .md\:focus\:leading-3:focus{
    line-height     : .75rem !important;
  }

  .md\:focus\:leading-4:focus{
    line-height     : 1rem !important;
  }

  .md\:focus\:leading-5:focus{
    line-height     : 1.25rem !important;
  }

  .md\:focus\:leading-6:focus{
    line-height     : 1.5rem !important;
  }

  .md\:focus\:leading-7:focus{
    line-height     : 1.75rem !important;
  }

  .md\:focus\:leading-8:focus{
    line-height     : 2rem !important;
  }

  .md\:focus\:leading-9:focus{
    line-height     : 2.25rem !important;
  }

  .md\:focus\:leading-10:focus{
    line-height     : 2.5rem !important;
  }

  .md\:focus\:leading-none:focus{
    line-height     : 1 !important;
  }

  .md\:focus\:leading-tight:focus{
    line-height     : 1.25 !important;
  }

  .md\:focus\:leading-snug:focus{
    line-height     : 1.375 !important;
  }

  .md\:focus\:leading-normal:focus{
    line-height     : 1.5 !important;
  }

  .md\:focus\:leading-relaxed:focus{
    line-height     : 1.625 !important;
  }

  .md\:focus\:leading-loose:focus{
    line-height     : 2 !important;
  }

  .md\:list-inside{
    list-style-position     : inside !important;
  }

  .md\:list-outside{
    list-style-position     : outside !important;
  }

  .group:hover .md\:group-hover\:list-inside{
    list-style-position     : inside !important;
  }

  .group:hover .md\:group-hover\:list-outside{
    list-style-position     : outside !important;
  }

  .md\:hover\:list-inside:hover{
    list-style-position     : inside !important;
  }

  .md\:hover\:list-outside:hover{
    list-style-position     : outside !important;
  }

  .md\:focus\:list-inside:focus{
    list-style-position     : inside !important;
  }

  .md\:focus\:list-outside:focus{
    list-style-position     : outside !important;
  }

  .md\:list-none{
    list-style-type     : none !important;
  }

  .md\:list-disc{
    list-style-type     : disc !important;
  }

  .md\:list-decimal{
    list-style-type     : decimal !important;
  }

  .group:hover .md\:group-hover\:list-none{
    list-style-type     : none !important;
  }

  .group:hover .md\:group-hover\:list-disc{
    list-style-type     : disc !important;
  }

  .group:hover .md\:group-hover\:list-decimal{
    list-style-type     : decimal !important;
  }

  .md\:hover\:list-none:hover{
    list-style-type     : none !important;
  }

  .md\:hover\:list-disc:hover{
    list-style-type     : disc !important;
  }

  .md\:hover\:list-decimal:hover{
    list-style-type     : decimal !important;
  }

  .md\:focus\:list-none:focus{
    list-style-type     : none !important;
  }

  .md\:focus\:list-disc:focus{
    list-style-type     : disc !important;
  }

  .md\:focus\:list-decimal:focus{
    list-style-type     : decimal !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-20{
    margin     : 5rem !important;
  }

  .md\:m-24{
    margin     : 6rem !important;
  }

  .md\:m-28{
    margin     : 7rem !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-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-96{
    margin     : 24rem !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-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-20{
    margin     : -5rem !important;
  }

  .md\:-m-24{
    margin     : -6rem !important;
  }

  .md\:-m-28{
    margin     : -7rem !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-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-96{
    margin     : -24rem !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\: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-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .md\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 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-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .md\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !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-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-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .md\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !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-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-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .md\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -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-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .md\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !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-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-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .md\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !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\: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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }

  .group:hover .md\:group-hover\:m-0{
    margin     : 0 !important;
  }

  .group:hover .md\:group-hover\:m-1{
    margin     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:m-2{
    margin     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:m-3{
    margin     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:m-4{
    margin     : 1rem !important;
  }

  .group:hover .md\:group-hover\:m-5{
    margin     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:m-6{
    margin     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:m-7{
    margin     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:m-8{
    margin     : 2rem !important;
  }

  .group:hover .md\:group-hover\:m-9{
    margin     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:m-10{
    margin     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:m-11{
    margin     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:m-12{
    margin     : 3rem !important;
  }

  .group:hover .md\:group-hover\:m-13{
    margin     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:m-14{
    margin     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:m-15{
    margin     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:m-16{
    margin     : 4rem !important;
  }

  .group:hover .md\:group-hover\:m-20{
    margin     : 5rem !important;
  }

  .group:hover .md\:group-hover\:m-24{
    margin     : 6rem !important;
  }

  .group:hover .md\:group-hover\:m-28{
    margin     : 7rem !important;
  }

  .group:hover .md\:group-hover\:m-32{
    margin     : 8rem !important;
  }

  .group:hover .md\:group-hover\:m-36{
    margin     : 9rem !important;
  }

  .group:hover .md\:group-hover\:m-40{
    margin     : 10rem !important;
  }

  .group:hover .md\:group-hover\:m-44{
    margin     : 11rem !important;
  }

  .group:hover .md\:group-hover\:m-48{
    margin     : 12rem !important;
  }

  .group:hover .md\:group-hover\:m-52{
    margin     : 13rem !important;
  }

  .group:hover .md\:group-hover\:m-56{
    margin     : 14rem !important;
  }

  .group:hover .md\:group-hover\:m-60{
    margin     : 15rem !important;
  }

  .group:hover .md\:group-hover\:m-64{
    margin     : 16rem !important;
  }

  .group:hover .md\:group-hover\:m-72{
    margin     : 18rem !important;
  }

  .group:hover .md\:group-hover\:m-80{
    margin     : 20rem !important;
  }

  .group:hover .md\:group-hover\:m-96{
    margin     : 24rem !important;
  }

  .group:hover .md\:group-hover\:m-auto{
    margin     : auto !important;
  }

  .group:hover .md\:group-hover\:m-px{
    margin     : 1px !important;
  }

  .group:hover .md\:group-hover\:m-0\.5{
    margin     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:m-1\.5{
    margin     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:m-2\.5{
    margin     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:m-3\.5{
    margin     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:m-1\/2{
    margin     : 50% !important;
  }

  .group:hover .md\:group-hover\:m-1\/3{
    margin     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:m-2\/3{
    margin     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:m-1\/4{
    margin     : 25% !important;
  }

  .group:hover .md\:group-hover\:m-2\/4{
    margin     : 50% !important;
  }

  .group:hover .md\:group-hover\:m-3\/4{
    margin     : 75% !important;
  }

  .group:hover .md\:group-hover\:m-1\/5{
    margin     : 20% !important;
  }

  .group:hover .md\:group-hover\:m-2\/5{
    margin     : 40% !important;
  }

  .group:hover .md\:group-hover\:m-3\/5{
    margin     : 60% !important;
  }

  .group:hover .md\:group-hover\:m-4\/5{
    margin     : 80% !important;
  }

  .group:hover .md\:group-hover\:m-1\/6{
    margin     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:m-2\/6{
    margin     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:m-3\/6{
    margin     : 50% !important;
  }

  .group:hover .md\:group-hover\:m-4\/6{
    margin     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:m-5\/6{
    margin     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:m-1\/12{
    margin     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:m-2\/12{
    margin     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:m-3\/12{
    margin     : 25% !important;
  }

  .group:hover .md\:group-hover\:m-4\/12{
    margin     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:m-5\/12{
    margin     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:m-6\/12{
    margin     : 50% !important;
  }

  .group:hover .md\:group-hover\:m-7\/12{
    margin     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:m-8\/12{
    margin     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:m-9\/12{
    margin     : 75% !important;
  }

  .group:hover .md\:group-hover\:m-10\/12{
    margin     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:m-11\/12{
    margin     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:m-full{
    margin     : 100% !important;
  }

  .group:hover .md\:group-hover\:-m-1{
    margin     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-m-2{
    margin     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-m-3{
    margin     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-m-4{
    margin     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-m-5{
    margin     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-m-6{
    margin     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-m-7{
    margin     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-m-8{
    margin     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-m-9{
    margin     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-m-10{
    margin     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-m-11{
    margin     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-m-12{
    margin     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-m-13{
    margin     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-m-14{
    margin     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-m-15{
    margin     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-m-16{
    margin     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-m-20{
    margin     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-m-24{
    margin     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-m-28{
    margin     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-m-32{
    margin     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-m-36{
    margin     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-m-40{
    margin     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-m-44{
    margin     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-m-48{
    margin     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-m-52{
    margin     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-m-56{
    margin     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-m-60{
    margin     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-m-64{
    margin     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-m-72{
    margin     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-m-80{
    margin     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-m-96{
    margin     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-m-px{
    margin     : -1px !important;
  }

  .group:hover .md\:group-hover\:-m-0\.5{
    margin     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-m-1\.5{
    margin     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-m-2\.5{
    margin     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-m-3\.5{
    margin     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-m-1\/2{
    margin     : -50% !important;
  }

  .group:hover .md\:group-hover\:-m-1\/3{
    margin     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-2\/3{
    margin     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-1\/4{
    margin     : -25% !important;
  }

  .group:hover .md\:group-hover\:-m-2\/4{
    margin     : -50% !important;
  }

  .group:hover .md\:group-hover\:-m-3\/4{
    margin     : -75% !important;
  }

  .group:hover .md\:group-hover\:-m-1\/5{
    margin     : -20% !important;
  }

  .group:hover .md\:group-hover\:-m-2\/5{
    margin     : -40% !important;
  }

  .group:hover .md\:group-hover\:-m-3\/5{
    margin     : -60% !important;
  }

  .group:hover .md\:group-hover\:-m-4\/5{
    margin     : -80% !important;
  }

  .group:hover .md\:group-hover\:-m-1\/6{
    margin     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-2\/6{
    margin     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-3\/6{
    margin     : -50% !important;
  }

  .group:hover .md\:group-hover\:-m-4\/6{
    margin     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-5\/6{
    margin     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-1\/12{
    margin     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-2\/12{
    margin     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-3\/12{
    margin     : -25% !important;
  }

  .group:hover .md\:group-hover\:-m-4\/12{
    margin     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-5\/12{
    margin     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-6\/12{
    margin     : -50% !important;
  }

  .group:hover .md\:group-hover\:-m-7\/12{
    margin     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-8\/12{
    margin     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-9\/12{
    margin     : -75% !important;
  }

  .group:hover .md\:group-hover\:-m-10\/12{
    margin     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-m-11\/12{
    margin     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-m-full{
    margin     : -100% !important;
  }

  .group:hover .md\:group-hover\:my-0{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:mx-0{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .group:hover .md\:group-hover\:my-1{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:mx-1{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:my-2{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:mx-2{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:my-3{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:mx-3{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:my-4{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:mx-4{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .group:hover .md\:group-hover\:my-5{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:mx-5{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:my-6{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:mx-6{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:my-7{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:mx-7{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:my-8{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:mx-8{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .group:hover .md\:group-hover\:my-9{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:mx-9{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:my-10{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:mx-10{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:my-11{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:mx-11{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:my-12{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:mx-12{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .group:hover .md\:group-hover\:my-13{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:mx-13{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:my-14{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:mx-14{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:my-15{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:mx-15{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:my-16{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:mx-16{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .group:hover .md\:group-hover\:my-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .group:hover .md\:group-hover\:my-24{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:mx-24{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .group:hover .md\:group-hover\:my-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .group:hover .md\:group-hover\:my-32{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:mx-32{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .group:hover .md\:group-hover\:my-36{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:mx-36{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .group:hover .md\:group-hover\:my-40{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:mx-40{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .group:hover .md\:group-hover\:my-44{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:mx-44{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .group:hover .md\:group-hover\:my-48{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:mx-48{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .group:hover .md\:group-hover\:my-52{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:mx-52{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .group:hover .md\:group-hover\:my-56{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:mx-56{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .group:hover .md\:group-hover\:my-60{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:mx-60{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .group:hover .md\:group-hover\:my-64{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:mx-64{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .group:hover .md\:group-hover\:my-72{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:mx-72{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .group:hover .md\:group-hover\:my-80{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:mx-80{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .group:hover .md\:group-hover\:my-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .group:hover .md\:group-hover\:my-auto{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .group:hover .md\:group-hover\:mx-auto{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .group:hover .md\:group-hover\:my-px{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:mx-px{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .group:hover .md\:group-hover\:my-0\.5{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:mx-0\.5{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:my-1\.5{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:mx-1\.5{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:my-2\.5{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:mx-2\.5{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:my-3\.5{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:mx-3\.5{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:my-1\/2{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/2{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:my-1\/3{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/3{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:my-2\/3{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-2\/3{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:my-1\/4{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/4{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:my-2\/4{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:mx-2\/4{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:my-3\/4{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:mx-3\/4{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:my-1\/5{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/5{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .group:hover .md\:group-hover\:my-2\/5{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:mx-2\/5{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .group:hover .md\:group-hover\:my-3\/5{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:mx-3\/5{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .group:hover .md\:group-hover\:my-4\/5{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:mx-4\/5{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .group:hover .md\:group-hover\:my-1\/6{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/6{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:my-2\/6{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-2\/6{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:my-3\/6{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:mx-3\/6{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:my-4\/6{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-4\/6{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:my-5\/6{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-5\/6{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:my-1\/12{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-1\/12{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:my-2\/12{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-2\/12{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:my-3\/12{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:mx-3\/12{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:my-4\/12{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-4\/12{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:my-5\/12{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-5\/12{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:my-6\/12{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:mx-6\/12{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:my-7\/12{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-7\/12{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:my-8\/12{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-8\/12{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:my-9\/12{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:mx-9\/12{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:my-10\/12{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mx-10\/12{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:my-11\/12{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:mx-11\/12{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:my-full{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:mx-full{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .group:hover .md\:group-hover\:-my-1{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-mx-1{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-my-2{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-mx-2{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-my-3{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-mx-3{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-my-4{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-mx-4{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-my-5{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-mx-5{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-my-6{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-mx-6{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-my-7{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-mx-7{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-my-8{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-mx-8{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-my-9{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-mx-9{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-my-10{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-mx-10{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-my-11{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-mx-11{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-my-12{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-mx-12{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-my-13{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-mx-13{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-my-14{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-mx-14{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-my-15{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-mx-15{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-my-16{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-mx-16{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-my-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-my-24{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-mx-24{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-my-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-my-32{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-mx-32{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-my-36{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-mx-36{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-my-40{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-mx-40{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-my-44{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-mx-44{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-my-48{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-mx-48{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-my-52{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-mx-52{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-my-56{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-mx-56{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-my-60{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-mx-60{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-my-64{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-mx-64{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-my-72{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-mx-72{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-my-80{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-mx-80{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-my-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-my-px{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .group:hover .md\:group-hover\:-mx-px{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .group:hover .md\:group-hover\:-my-0\.5{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-mx-0\.5{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-my-1\.5{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-mx-1\.5{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-my-2\.5{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-mx-2\.5{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-my-3\.5{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-mx-3\.5{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-my-1\/2{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/2{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-my-1\/3{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/3{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-2\/3{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-2\/3{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-1\/4{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/4{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .md\:group-hover\:-my-2\/4{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mx-2\/4{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-my-3\/4{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mx-3\/4{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .md\:group-hover\:-my-1\/5{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/5{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .group:hover .md\:group-hover\:-my-2\/5{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .group:hover .md\:group-hover\:-mx-2\/5{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .group:hover .md\:group-hover\:-my-3\/5{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .group:hover .md\:group-hover\:-mx-3\/5{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .group:hover .md\:group-hover\:-my-4\/5{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .group:hover .md\:group-hover\:-mx-4\/5{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .group:hover .md\:group-hover\:-my-1\/6{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/6{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-2\/6{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-2\/6{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-3\/6{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mx-3\/6{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-my-4\/6{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-4\/6{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-5\/6{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-5\/6{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-1\/12{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-1\/12{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-2\/12{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-2\/12{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-3\/12{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mx-3\/12{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .md\:group-hover\:-my-4\/12{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-4\/12{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-5\/12{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-5\/12{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-6\/12{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mx-6\/12{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-my-7\/12{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-7\/12{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-8\/12{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-8\/12{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-9\/12{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mx-9\/12{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .md\:group-hover\:-my-10\/12{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mx-10\/12{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-my-11\/12{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-mx-11\/12{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-my-full{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .group:hover .md\:group-hover\:-mx-full{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .group:hover .md\:group-hover\:mt-0{
    margin-top     : 0 !important;
  }

  .group:hover .md\:group-hover\:mr-0{
    margin-right     : 0 !important;
  }

  .group:hover .md\:group-hover\:mb-0{
    margin-bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:ml-0{
    margin-left     : 0 !important;
  }

  .group:hover .md\:group-hover\:mt-1{
    margin-top     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:mr-1{
    margin-right     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:mb-1{
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:ml-1{
    margin-left     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:mt-2{
    margin-top     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:mr-2{
    margin-right     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:mb-2{
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:ml-2{
    margin-left     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:mt-3{
    margin-top     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:mr-3{
    margin-right     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:mb-3{
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:ml-3{
    margin-left     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:mt-4{
    margin-top     : 1rem !important;
  }

  .group:hover .md\:group-hover\:mr-4{
    margin-right     : 1rem !important;
  }

  .group:hover .md\:group-hover\:mb-4{
    margin-bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:ml-4{
    margin-left     : 1rem !important;
  }

  .group:hover .md\:group-hover\:mt-5{
    margin-top     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:mr-5{
    margin-right     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:mb-5{
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:ml-5{
    margin-left     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:mt-6{
    margin-top     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:mr-6{
    margin-right     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:mb-6{
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:ml-6{
    margin-left     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:mt-7{
    margin-top     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:mr-7{
    margin-right     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:mb-7{
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:ml-7{
    margin-left     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:mt-8{
    margin-top     : 2rem !important;
  }

  .group:hover .md\:group-hover\:mr-8{
    margin-right     : 2rem !important;
  }

  .group:hover .md\:group-hover\:mb-8{
    margin-bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:ml-8{
    margin-left     : 2rem !important;
  }

  .group:hover .md\:group-hover\:mt-9{
    margin-top     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:mr-9{
    margin-right     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:mb-9{
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:ml-9{
    margin-left     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:mt-10{
    margin-top     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:mr-10{
    margin-right     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:mb-10{
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:ml-10{
    margin-left     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:mt-11{
    margin-top     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:mr-11{
    margin-right     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:mb-11{
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:ml-11{
    margin-left     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:mt-12{
    margin-top     : 3rem !important;
  }

  .group:hover .md\:group-hover\:mr-12{
    margin-right     : 3rem !important;
  }

  .group:hover .md\:group-hover\:mb-12{
    margin-bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:ml-12{
    margin-left     : 3rem !important;
  }

  .group:hover .md\:group-hover\:mt-13{
    margin-top     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:mr-13{
    margin-right     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:mb-13{
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:ml-13{
    margin-left     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:mt-14{
    margin-top     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:mr-14{
    margin-right     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:mb-14{
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:ml-14{
    margin-left     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:mt-15{
    margin-top     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:mr-15{
    margin-right     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:mb-15{
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:ml-15{
    margin-left     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:mt-16{
    margin-top     : 4rem !important;
  }

  .group:hover .md\:group-hover\:mr-16{
    margin-right     : 4rem !important;
  }

  .group:hover .md\:group-hover\:mb-16{
    margin-bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:ml-16{
    margin-left     : 4rem !important;
  }

  .group:hover .md\:group-hover\:mt-20{
    margin-top     : 5rem !important;
  }

  .group:hover .md\:group-hover\:mr-20{
    margin-right     : 5rem !important;
  }

  .group:hover .md\:group-hover\:mb-20{
    margin-bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:ml-20{
    margin-left     : 5rem !important;
  }

  .group:hover .md\:group-hover\:mt-24{
    margin-top     : 6rem !important;
  }

  .group:hover .md\:group-hover\:mr-24{
    margin-right     : 6rem !important;
  }

  .group:hover .md\:group-hover\:mb-24{
    margin-bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:ml-24{
    margin-left     : 6rem !important;
  }

  .group:hover .md\:group-hover\:mt-28{
    margin-top     : 7rem !important;
  }

  .group:hover .md\:group-hover\:mr-28{
    margin-right     : 7rem !important;
  }

  .group:hover .md\:group-hover\:mb-28{
    margin-bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:ml-28{
    margin-left     : 7rem !important;
  }

  .group:hover .md\:group-hover\:mt-32{
    margin-top     : 8rem !important;
  }

  .group:hover .md\:group-hover\:mr-32{
    margin-right     : 8rem !important;
  }

  .group:hover .md\:group-hover\:mb-32{
    margin-bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:ml-32{
    margin-left     : 8rem !important;
  }

  .group:hover .md\:group-hover\:mt-36{
    margin-top     : 9rem !important;
  }

  .group:hover .md\:group-hover\:mr-36{
    margin-right     : 9rem !important;
  }

  .group:hover .md\:group-hover\:mb-36{
    margin-bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:ml-36{
    margin-left     : 9rem !important;
  }

  .group:hover .md\:group-hover\:mt-40{
    margin-top     : 10rem !important;
  }

  .group:hover .md\:group-hover\:mr-40{
    margin-right     : 10rem !important;
  }

  .group:hover .md\:group-hover\:mb-40{
    margin-bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:ml-40{
    margin-left     : 10rem !important;
  }

  .group:hover .md\:group-hover\:mt-44{
    margin-top     : 11rem !important;
  }

  .group:hover .md\:group-hover\:mr-44{
    margin-right     : 11rem !important;
  }

  .group:hover .md\:group-hover\:mb-44{
    margin-bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:ml-44{
    margin-left     : 11rem !important;
  }

  .group:hover .md\:group-hover\:mt-48{
    margin-top     : 12rem !important;
  }

  .group:hover .md\:group-hover\:mr-48{
    margin-right     : 12rem !important;
  }

  .group:hover .md\:group-hover\:mb-48{
    margin-bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:ml-48{
    margin-left     : 12rem !important;
  }

  .group:hover .md\:group-hover\:mt-52{
    margin-top     : 13rem !important;
  }

  .group:hover .md\:group-hover\:mr-52{
    margin-right     : 13rem !important;
  }

  .group:hover .md\:group-hover\:mb-52{
    margin-bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:ml-52{
    margin-left     : 13rem !important;
  }

  .group:hover .md\:group-hover\:mt-56{
    margin-top     : 14rem !important;
  }

  .group:hover .md\:group-hover\:mr-56{
    margin-right     : 14rem !important;
  }

  .group:hover .md\:group-hover\:mb-56{
    margin-bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:ml-56{
    margin-left     : 14rem !important;
  }

  .group:hover .md\:group-hover\:mt-60{
    margin-top     : 15rem !important;
  }

  .group:hover .md\:group-hover\:mr-60{
    margin-right     : 15rem !important;
  }

  .group:hover .md\:group-hover\:mb-60{
    margin-bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:ml-60{
    margin-left     : 15rem !important;
  }

  .group:hover .md\:group-hover\:mt-64{
    margin-top     : 16rem !important;
  }

  .group:hover .md\:group-hover\:mr-64{
    margin-right     : 16rem !important;
  }

  .group:hover .md\:group-hover\:mb-64{
    margin-bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:ml-64{
    margin-left     : 16rem !important;
  }

  .group:hover .md\:group-hover\:mt-72{
    margin-top     : 18rem !important;
  }

  .group:hover .md\:group-hover\:mr-72{
    margin-right     : 18rem !important;
  }

  .group:hover .md\:group-hover\:mb-72{
    margin-bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:ml-72{
    margin-left     : 18rem !important;
  }

  .group:hover .md\:group-hover\:mt-80{
    margin-top     : 20rem !important;
  }

  .group:hover .md\:group-hover\:mr-80{
    margin-right     : 20rem !important;
  }

  .group:hover .md\:group-hover\:mb-80{
    margin-bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:ml-80{
    margin-left     : 20rem !important;
  }

  .group:hover .md\:group-hover\:mt-96{
    margin-top     : 24rem !important;
  }

  .group:hover .md\:group-hover\:mr-96{
    margin-right     : 24rem !important;
  }

  .group:hover .md\:group-hover\:mb-96{
    margin-bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:ml-96{
    margin-left     : 24rem !important;
  }

  .group:hover .md\:group-hover\:mt-auto{
    margin-top     : auto !important;
  }

  .group:hover .md\:group-hover\:mr-auto{
    margin-right     : auto !important;
  }

  .group:hover .md\:group-hover\:mb-auto{
    margin-bottom     : auto !important;
  }

  .group:hover .md\:group-hover\:ml-auto{
    margin-left     : auto !important;
  }

  .group:hover .md\:group-hover\:mt-px{
    margin-top     : 1px !important;
  }

  .group:hover .md\:group-hover\:mr-px{
    margin-right     : 1px !important;
  }

  .group:hover .md\:group-hover\:mb-px{
    margin-bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:ml-px{
    margin-left     : 1px !important;
  }

  .group:hover .md\:group-hover\:mt-0\.5{
    margin-top     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:mr-0\.5{
    margin-right     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:mb-0\.5{
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:ml-0\.5{
    margin-left     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:mt-1\.5{
    margin-top     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:mr-1\.5{
    margin-right     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:mb-1\.5{
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:ml-1\.5{
    margin-left     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:mt-2\.5{
    margin-top     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:mr-2\.5{
    margin-right     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:mb-2\.5{
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:ml-2\.5{
    margin-left     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:mt-3\.5{
    margin-top     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:mr-3\.5{
    margin-right     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:mb-3\.5{
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:ml-3\.5{
    margin-left     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:mt-1\/2{
    margin-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/2{
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/2{
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/2{
    margin-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:mt-1\/3{
    margin-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/3{
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/3{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/3{
    margin-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-2\/3{
    margin-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-2\/3{
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-2\/3{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-2\/3{
    margin-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-1\/4{
    margin-top     : 25% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/4{
    margin-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/4{
    margin-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/4{
    margin-left     : 25% !important;
  }

  .group:hover .md\:group-hover\:mt-2\/4{
    margin-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:mr-2\/4{
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:mb-2\/4{
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:ml-2\/4{
    margin-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:mt-3\/4{
    margin-top     : 75% !important;
  }

  .group:hover .md\:group-hover\:mr-3\/4{
    margin-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:mb-3\/4{
    margin-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:ml-3\/4{
    margin-left     : 75% !important;
  }

  .group:hover .md\:group-hover\:mt-1\/5{
    margin-top     : 20% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/5{
    margin-right     : 20% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/5{
    margin-bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/5{
    margin-left     : 20% !important;
  }

  .group:hover .md\:group-hover\:mt-2\/5{
    margin-top     : 40% !important;
  }

  .group:hover .md\:group-hover\:mr-2\/5{
    margin-right     : 40% !important;
  }

  .group:hover .md\:group-hover\:mb-2\/5{
    margin-bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:ml-2\/5{
    margin-left     : 40% !important;
  }

  .group:hover .md\:group-hover\:mt-3\/5{
    margin-top     : 60% !important;
  }

  .group:hover .md\:group-hover\:mr-3\/5{
    margin-right     : 60% !important;
  }

  .group:hover .md\:group-hover\:mb-3\/5{
    margin-bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:ml-3\/5{
    margin-left     : 60% !important;
  }

  .group:hover .md\:group-hover\:mt-4\/5{
    margin-top     : 80% !important;
  }

  .group:hover .md\:group-hover\:mr-4\/5{
    margin-right     : 80% !important;
  }

  .group:hover .md\:group-hover\:mb-4\/5{
    margin-bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:ml-4\/5{
    margin-left     : 80% !important;
  }

  .group:hover .md\:group-hover\:mt-1\/6{
    margin-top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/6{
    margin-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/6{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/6{
    margin-left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-2\/6{
    margin-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-2\/6{
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-2\/6{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-2\/6{
    margin-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-3\/6{
    margin-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:mr-3\/6{
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:mb-3\/6{
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:ml-3\/6{
    margin-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:mt-4\/6{
    margin-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-4\/6{
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-4\/6{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-4\/6{
    margin-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-5\/6{
    margin-top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-5\/6{
    margin-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-5\/6{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-5\/6{
    margin-left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-1\/12{
    margin-top     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-1\/12{
    margin-right     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-1\/12{
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-1\/12{
    margin-left     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-2\/12{
    margin-top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-2\/12{
    margin-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-2\/12{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-2\/12{
    margin-left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-3\/12{
    margin-top     : 25% !important;
  }

  .group:hover .md\:group-hover\:mr-3\/12{
    margin-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:mb-3\/12{
    margin-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:ml-3\/12{
    margin-left     : 25% !important;
  }

  .group:hover .md\:group-hover\:mt-4\/12{
    margin-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-4\/12{
    margin-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-4\/12{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-4\/12{
    margin-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-5\/12{
    margin-top     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-5\/12{
    margin-right     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-5\/12{
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-5\/12{
    margin-left     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-6\/12{
    margin-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:mr-6\/12{
    margin-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:mb-6\/12{
    margin-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:ml-6\/12{
    margin-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:mt-7\/12{
    margin-top     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-7\/12{
    margin-right     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-7\/12{
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-7\/12{
    margin-left     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-8\/12{
    margin-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-8\/12{
    margin-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-8\/12{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-8\/12{
    margin-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-9\/12{
    margin-top     : 75% !important;
  }

  .group:hover .md\:group-hover\:mr-9\/12{
    margin-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:mb-9\/12{
    margin-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:ml-9\/12{
    margin-left     : 75% !important;
  }

  .group:hover .md\:group-hover\:mt-10\/12{
    margin-top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mr-10\/12{
    margin-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mb-10\/12{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:ml-10\/12{
    margin-left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:mt-11\/12{
    margin-top     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:mr-11\/12{
    margin-right     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:mb-11\/12{
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:ml-11\/12{
    margin-left     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:mt-full{
    margin-top     : 100% !important;
  }

  .group:hover .md\:group-hover\:mr-full{
    margin-right     : 100% !important;
  }

  .group:hover .md\:group-hover\:mb-full{
    margin-bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:ml-full{
    margin-left     : 100% !important;
  }

  .group:hover .md\:group-hover\:-mt-1{
    margin-top     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-mr-1{
    margin-right     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-mb-1{
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-ml-1{
    margin-left     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-mt-2{
    margin-top     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-mr-2{
    margin-right     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-mb-2{
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-ml-2{
    margin-left     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-mt-3{
    margin-top     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-mr-3{
    margin-right     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-mb-3{
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-ml-3{
    margin-left     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-mt-4{
    margin-top     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-mr-4{
    margin-right     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-mb-4{
    margin-bottom     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-ml-4{
    margin-left     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-mt-5{
    margin-top     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-mr-5{
    margin-right     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-mb-5{
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-ml-5{
    margin-left     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-mt-6{
    margin-top     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-mr-6{
    margin-right     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-mb-6{
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-ml-6{
    margin-left     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-mt-7{
    margin-top     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-mr-7{
    margin-right     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-mb-7{
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-ml-7{
    margin-left     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-mt-8{
    margin-top     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-mr-8{
    margin-right     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-mb-8{
    margin-bottom     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-ml-8{
    margin-left     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-mt-9{
    margin-top     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-mr-9{
    margin-right     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-mb-9{
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-ml-9{
    margin-left     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-mt-10{
    margin-top     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-mr-10{
    margin-right     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-mb-10{
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-ml-10{
    margin-left     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-mt-11{
    margin-top     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-mr-11{
    margin-right     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-mb-11{
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-ml-11{
    margin-left     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-mt-12{
    margin-top     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-mr-12{
    margin-right     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-mb-12{
    margin-bottom     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-ml-12{
    margin-left     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-mt-13{
    margin-top     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-mr-13{
    margin-right     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-mb-13{
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-ml-13{
    margin-left     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-mt-14{
    margin-top     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-mr-14{
    margin-right     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-mb-14{
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-ml-14{
    margin-left     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-mt-15{
    margin-top     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-mr-15{
    margin-right     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-mb-15{
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-ml-15{
    margin-left     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-mt-16{
    margin-top     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-mr-16{
    margin-right     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-mb-16{
    margin-bottom     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-ml-16{
    margin-left     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-mt-20{
    margin-top     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-mr-20{
    margin-right     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-mb-20{
    margin-bottom     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-ml-20{
    margin-left     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-mt-24{
    margin-top     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-mr-24{
    margin-right     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-mb-24{
    margin-bottom     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-ml-24{
    margin-left     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-mt-28{
    margin-top     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-mr-28{
    margin-right     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-mb-28{
    margin-bottom     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-ml-28{
    margin-left     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-mt-32{
    margin-top     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-mr-32{
    margin-right     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-mb-32{
    margin-bottom     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-ml-32{
    margin-left     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-mt-36{
    margin-top     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-mr-36{
    margin-right     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-mb-36{
    margin-bottom     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-ml-36{
    margin-left     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-mt-40{
    margin-top     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-mr-40{
    margin-right     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-mb-40{
    margin-bottom     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-ml-40{
    margin-left     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-mt-44{
    margin-top     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-mr-44{
    margin-right     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-mb-44{
    margin-bottom     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-ml-44{
    margin-left     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-mt-48{
    margin-top     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-mr-48{
    margin-right     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-mb-48{
    margin-bottom     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-ml-48{
    margin-left     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-mt-52{
    margin-top     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-mr-52{
    margin-right     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-mb-52{
    margin-bottom     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-ml-52{
    margin-left     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-mt-56{
    margin-top     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-mr-56{
    margin-right     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-mb-56{
    margin-bottom     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-ml-56{
    margin-left     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-mt-60{
    margin-top     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-mr-60{
    margin-right     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-mb-60{
    margin-bottom     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-ml-60{
    margin-left     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-mt-64{
    margin-top     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-mr-64{
    margin-right     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-mb-64{
    margin-bottom     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-ml-64{
    margin-left     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-mt-72{
    margin-top     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-mr-72{
    margin-right     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-mb-72{
    margin-bottom     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-ml-72{
    margin-left     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-mt-80{
    margin-top     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-mr-80{
    margin-right     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-mb-80{
    margin-bottom     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-ml-80{
    margin-left     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-mt-96{
    margin-top     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-mr-96{
    margin-right     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-mb-96{
    margin-bottom     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-ml-96{
    margin-left     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-mt-px{
    margin-top     : -1px !important;
  }

  .group:hover .md\:group-hover\:-mr-px{
    margin-right     : -1px !important;
  }

  .group:hover .md\:group-hover\:-mb-px{
    margin-bottom     : -1px !important;
  }

  .group:hover .md\:group-hover\:-ml-px{
    margin-left     : -1px !important;
  }

  .group:hover .md\:group-hover\:-mt-0\.5{
    margin-top     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-mr-0\.5{
    margin-right     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-mb-0\.5{
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-ml-0\.5{
    margin-left     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-mt-1\.5{
    margin-top     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-mr-1\.5{
    margin-right     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-mb-1\.5{
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-ml-1\.5{
    margin-left     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-mt-2\.5{
    margin-top     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-mr-2\.5{
    margin-right     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-mb-2\.5{
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-ml-2\.5{
    margin-left     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-mt-3\.5{
    margin-top     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-mr-3\.5{
    margin-right     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-mb-3\.5{
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-ml-3\.5{
    margin-left     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/2{
    margin-top     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/2{
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/2{
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/2{
    margin-left     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/3{
    margin-top     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/3{
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/3{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/3{
    margin-left     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-2\/3{
    margin-top     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-2\/3{
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-2\/3{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-2\/3{
    margin-left     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/4{
    margin-top     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/4{
    margin-right     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/4{
    margin-bottom     : -25% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/4{
    margin-left     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mt-2\/4{
    margin-top     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mr-2\/4{
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mb-2\/4{
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-ml-2\/4{
    margin-left     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mt-3\/4{
    margin-top     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mr-3\/4{
    margin-right     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mb-3\/4{
    margin-bottom     : -75% !important;
  }

  .group:hover .md\:group-hover\:-ml-3\/4{
    margin-left     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/5{
    margin-top     : -20% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/5{
    margin-right     : -20% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/5{
    margin-bottom     : -20% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/5{
    margin-left     : -20% !important;
  }

  .group:hover .md\:group-hover\:-mt-2\/5{
    margin-top     : -40% !important;
  }

  .group:hover .md\:group-hover\:-mr-2\/5{
    margin-right     : -40% !important;
  }

  .group:hover .md\:group-hover\:-mb-2\/5{
    margin-bottom     : -40% !important;
  }

  .group:hover .md\:group-hover\:-ml-2\/5{
    margin-left     : -40% !important;
  }

  .group:hover .md\:group-hover\:-mt-3\/5{
    margin-top     : -60% !important;
  }

  .group:hover .md\:group-hover\:-mr-3\/5{
    margin-right     : -60% !important;
  }

  .group:hover .md\:group-hover\:-mb-3\/5{
    margin-bottom     : -60% !important;
  }

  .group:hover .md\:group-hover\:-ml-3\/5{
    margin-left     : -60% !important;
  }

  .group:hover .md\:group-hover\:-mt-4\/5{
    margin-top     : -80% !important;
  }

  .group:hover .md\:group-hover\:-mr-4\/5{
    margin-right     : -80% !important;
  }

  .group:hover .md\:group-hover\:-mb-4\/5{
    margin-bottom     : -80% !important;
  }

  .group:hover .md\:group-hover\:-ml-4\/5{
    margin-left     : -80% !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/6{
    margin-top     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/6{
    margin-right     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/6{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/6{
    margin-left     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-2\/6{
    margin-top     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-2\/6{
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-2\/6{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-2\/6{
    margin-left     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-3\/6{
    margin-top     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mr-3\/6{
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mb-3\/6{
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-ml-3\/6{
    margin-left     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mt-4\/6{
    margin-top     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-4\/6{
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-4\/6{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-4\/6{
    margin-left     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-5\/6{
    margin-top     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-5\/6{
    margin-right     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-5\/6{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-5\/6{
    margin-left     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-1\/12{
    margin-top     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-1\/12{
    margin-right     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-1\/12{
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-1\/12{
    margin-left     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-2\/12{
    margin-top     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-2\/12{
    margin-right     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-2\/12{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-2\/12{
    margin-left     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-3\/12{
    margin-top     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mr-3\/12{
    margin-right     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mb-3\/12{
    margin-bottom     : -25% !important;
  }

  .group:hover .md\:group-hover\:-ml-3\/12{
    margin-left     : -25% !important;
  }

  .group:hover .md\:group-hover\:-mt-4\/12{
    margin-top     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-4\/12{
    margin-right     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-4\/12{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-4\/12{
    margin-left     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-5\/12{
    margin-top     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-5\/12{
    margin-right     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-5\/12{
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-5\/12{
    margin-left     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-6\/12{
    margin-top     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mr-6\/12{
    margin-right     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mb-6\/12{
    margin-bottom     : -50% !important;
  }

  .group:hover .md\:group-hover\:-ml-6\/12{
    margin-left     : -50% !important;
  }

  .group:hover .md\:group-hover\:-mt-7\/12{
    margin-top     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-7\/12{
    margin-right     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-7\/12{
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-7\/12{
    margin-left     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-8\/12{
    margin-top     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-8\/12{
    margin-right     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-8\/12{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-8\/12{
    margin-left     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-9\/12{
    margin-top     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mr-9\/12{
    margin-right     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mb-9\/12{
    margin-bottom     : -75% !important;
  }

  .group:hover .md\:group-hover\:-ml-9\/12{
    margin-left     : -75% !important;
  }

  .group:hover .md\:group-hover\:-mt-10\/12{
    margin-top     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mr-10\/12{
    margin-right     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mb-10\/12{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-ml-10\/12{
    margin-left     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-mt-11\/12{
    margin-top     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-mr-11\/12{
    margin-right     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-mb-11\/12{
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-ml-11\/12{
    margin-left     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-mt-full{
    margin-top     : -100% !important;
  }

  .group:hover .md\:group-hover\:-mr-full{
    margin-right     : -100% !important;
  }

  .group:hover .md\:group-hover\:-mb-full{
    margin-bottom     : -100% !important;
  }

  .group:hover .md\:group-hover\:-ml-full{
    margin-left     : -100% !important;
  }

  .md\:hover\:m-0:hover{
    margin     : 0 !important;
  }

  .md\:hover\:m-1:hover{
    margin     : 0.25rem !important;
  }

  .md\:hover\:m-2:hover{
    margin     : 0.5rem !important;
  }

  .md\:hover\:m-3:hover{
    margin     : 0.75rem !important;
  }

  .md\:hover\:m-4:hover{
    margin     : 1rem !important;
  }

  .md\:hover\:m-5:hover{
    margin     : 1.25rem !important;
  }

  .md\:hover\:m-6:hover{
    margin     : 1.5rem !important;
  }

  .md\:hover\:m-7:hover{
    margin     : 1.75rem !important;
  }

  .md\:hover\:m-8:hover{
    margin     : 2rem !important;
  }

  .md\:hover\:m-9:hover{
    margin     : 2.25rem !important;
  }

  .md\:hover\:m-10:hover{
    margin     : 2.5rem !important;
  }

  .md\:hover\:m-11:hover{
    margin     : 2.75rem !important;
  }

  .md\:hover\:m-12:hover{
    margin     : 3rem !important;
  }

  .md\:hover\:m-13:hover{
    margin     : 3.25rem !important;
  }

  .md\:hover\:m-14:hover{
    margin     : 3.5rem !important;
  }

  .md\:hover\:m-15:hover{
    margin     : 3.75rem !important;
  }

  .md\:hover\:m-16:hover{
    margin     : 4rem !important;
  }

  .md\:hover\:m-20:hover{
    margin     : 5rem !important;
  }

  .md\:hover\:m-24:hover{
    margin     : 6rem !important;
  }

  .md\:hover\:m-28:hover{
    margin     : 7rem !important;
  }

  .md\:hover\:m-32:hover{
    margin     : 8rem !important;
  }

  .md\:hover\:m-36:hover{
    margin     : 9rem !important;
  }

  .md\:hover\:m-40:hover{
    margin     : 10rem !important;
  }

  .md\:hover\:m-44:hover{
    margin     : 11rem !important;
  }

  .md\:hover\:m-48:hover{
    margin     : 12rem !important;
  }

  .md\:hover\:m-52:hover{
    margin     : 13rem !important;
  }

  .md\:hover\:m-56:hover{
    margin     : 14rem !important;
  }

  .md\:hover\:m-60:hover{
    margin     : 15rem !important;
  }

  .md\:hover\:m-64:hover{
    margin     : 16rem !important;
  }

  .md\:hover\:m-72:hover{
    margin     : 18rem !important;
  }

  .md\:hover\:m-80:hover{
    margin     : 20rem !important;
  }

  .md\:hover\:m-96:hover{
    margin     : 24rem !important;
  }

  .md\:hover\:m-auto:hover{
    margin     : auto !important;
  }

  .md\:hover\:m-px:hover{
    margin     : 1px !important;
  }

  .md\:hover\:m-0\.5:hover{
    margin     : 0.125rem !important;
  }

  .md\:hover\:m-1\.5:hover{
    margin     : 0.375rem !important;
  }

  .md\:hover\:m-2\.5:hover{
    margin     : 0.625rem !important;
  }

  .md\:hover\:m-3\.5:hover{
    margin     : 0.875rem !important;
  }

  .md\:hover\:m-1\/2:hover{
    margin     : 50% !important;
  }

  .md\:hover\:m-1\/3:hover{
    margin     : 33.333333% !important;
  }

  .md\:hover\:m-2\/3:hover{
    margin     : 66.666667% !important;
  }

  .md\:hover\:m-1\/4:hover{
    margin     : 25% !important;
  }

  .md\:hover\:m-2\/4:hover{
    margin     : 50% !important;
  }

  .md\:hover\:m-3\/4:hover{
    margin     : 75% !important;
  }

  .md\:hover\:m-1\/5:hover{
    margin     : 20% !important;
  }

  .md\:hover\:m-2\/5:hover{
    margin     : 40% !important;
  }

  .md\:hover\:m-3\/5:hover{
    margin     : 60% !important;
  }

  .md\:hover\:m-4\/5:hover{
    margin     : 80% !important;
  }

  .md\:hover\:m-1\/6:hover{
    margin     : 16.666667% !important;
  }

  .md\:hover\:m-2\/6:hover{
    margin     : 33.333333% !important;
  }

  .md\:hover\:m-3\/6:hover{
    margin     : 50% !important;
  }

  .md\:hover\:m-4\/6:hover{
    margin     : 66.666667% !important;
  }

  .md\:hover\:m-5\/6:hover{
    margin     : 83.333333% !important;
  }

  .md\:hover\:m-1\/12:hover{
    margin     : 8.333333% !important;
  }

  .md\:hover\:m-2\/12:hover{
    margin     : 16.666667% !important;
  }

  .md\:hover\:m-3\/12:hover{
    margin     : 25% !important;
  }

  .md\:hover\:m-4\/12:hover{
    margin     : 33.333333% !important;
  }

  .md\:hover\:m-5\/12:hover{
    margin     : 41.666667% !important;
  }

  .md\:hover\:m-6\/12:hover{
    margin     : 50% !important;
  }

  .md\:hover\:m-7\/12:hover{
    margin     : 58.333333% !important;
  }

  .md\:hover\:m-8\/12:hover{
    margin     : 66.666667% !important;
  }

  .md\:hover\:m-9\/12:hover{
    margin     : 75% !important;
  }

  .md\:hover\:m-10\/12:hover{
    margin     : 83.333333% !important;
  }

  .md\:hover\:m-11\/12:hover{
    margin     : 91.666667% !important;
  }

  .md\:hover\:m-full:hover{
    margin     : 100% !important;
  }

  .md\:hover\:-m-1:hover{
    margin     : -0.25rem !important;
  }

  .md\:hover\:-m-2:hover{
    margin     : -0.5rem !important;
  }

  .md\:hover\:-m-3:hover{
    margin     : -0.75rem !important;
  }

  .md\:hover\:-m-4:hover{
    margin     : -1rem !important;
  }

  .md\:hover\:-m-5:hover{
    margin     : -1.25rem !important;
  }

  .md\:hover\:-m-6:hover{
    margin     : -1.5rem !important;
  }

  .md\:hover\:-m-7:hover{
    margin     : -1.75rem !important;
  }

  .md\:hover\:-m-8:hover{
    margin     : -2rem !important;
  }

  .md\:hover\:-m-9:hover{
    margin     : -2.25rem !important;
  }

  .md\:hover\:-m-10:hover{
    margin     : -2.5rem !important;
  }

  .md\:hover\:-m-11:hover{
    margin     : -2.75rem !important;
  }

  .md\:hover\:-m-12:hover{
    margin     : -3rem !important;
  }

  .md\:hover\:-m-13:hover{
    margin     : -3.25rem !important;
  }

  .md\:hover\:-m-14:hover{
    margin     : -3.5rem !important;
  }

  .md\:hover\:-m-15:hover{
    margin     : -3.75rem !important;
  }

  .md\:hover\:-m-16:hover{
    margin     : -4rem !important;
  }

  .md\:hover\:-m-20:hover{
    margin     : -5rem !important;
  }

  .md\:hover\:-m-24:hover{
    margin     : -6rem !important;
  }

  .md\:hover\:-m-28:hover{
    margin     : -7rem !important;
  }

  .md\:hover\:-m-32:hover{
    margin     : -8rem !important;
  }

  .md\:hover\:-m-36:hover{
    margin     : -9rem !important;
  }

  .md\:hover\:-m-40:hover{
    margin     : -10rem !important;
  }

  .md\:hover\:-m-44:hover{
    margin     : -11rem !important;
  }

  .md\:hover\:-m-48:hover{
    margin     : -12rem !important;
  }

  .md\:hover\:-m-52:hover{
    margin     : -13rem !important;
  }

  .md\:hover\:-m-56:hover{
    margin     : -14rem !important;
  }

  .md\:hover\:-m-60:hover{
    margin     : -15rem !important;
  }

  .md\:hover\:-m-64:hover{
    margin     : -16rem !important;
  }

  .md\:hover\:-m-72:hover{
    margin     : -18rem !important;
  }

  .md\:hover\:-m-80:hover{
    margin     : -20rem !important;
  }

  .md\:hover\:-m-96:hover{
    margin     : -24rem !important;
  }

  .md\:hover\:-m-px:hover{
    margin     : -1px !important;
  }

  .md\:hover\:-m-0\.5:hover{
    margin     : -0.125rem !important;
  }

  .md\:hover\:-m-1\.5:hover{
    margin     : -0.375rem !important;
  }

  .md\:hover\:-m-2\.5:hover{
    margin     : -0.625rem !important;
  }

  .md\:hover\:-m-3\.5:hover{
    margin     : -0.875rem !important;
  }

  .md\:hover\:-m-1\/2:hover{
    margin     : -50% !important;
  }

  .md\:hover\:-m-1\/3:hover{
    margin     : -33.33333% !important;
  }

  .md\:hover\:-m-2\/3:hover{
    margin     : -66.66667% !important;
  }

  .md\:hover\:-m-1\/4:hover{
    margin     : -25% !important;
  }

  .md\:hover\:-m-2\/4:hover{
    margin     : -50% !important;
  }

  .md\:hover\:-m-3\/4:hover{
    margin     : -75% !important;
  }

  .md\:hover\:-m-1\/5:hover{
    margin     : -20% !important;
  }

  .md\:hover\:-m-2\/5:hover{
    margin     : -40% !important;
  }

  .md\:hover\:-m-3\/5:hover{
    margin     : -60% !important;
  }

  .md\:hover\:-m-4\/5:hover{
    margin     : -80% !important;
  }

  .md\:hover\:-m-1\/6:hover{
    margin     : -16.66667% !important;
  }

  .md\:hover\:-m-2\/6:hover{
    margin     : -33.33333% !important;
  }

  .md\:hover\:-m-3\/6:hover{
    margin     : -50% !important;
  }

  .md\:hover\:-m-4\/6:hover{
    margin     : -66.66667% !important;
  }

  .md\:hover\:-m-5\/6:hover{
    margin     : -83.33333% !important;
  }

  .md\:hover\:-m-1\/12:hover{
    margin     : -8.33333% !important;
  }

  .md\:hover\:-m-2\/12:hover{
    margin     : -16.66667% !important;
  }

  .md\:hover\:-m-3\/12:hover{
    margin     : -25% !important;
  }

  .md\:hover\:-m-4\/12:hover{
    margin     : -33.33333% !important;
  }

  .md\:hover\:-m-5\/12:hover{
    margin     : -41.66667% !important;
  }

  .md\:hover\:-m-6\/12:hover{
    margin     : -50% !important;
  }

  .md\:hover\:-m-7\/12:hover{
    margin     : -58.33333% !important;
  }

  .md\:hover\:-m-8\/12:hover{
    margin     : -66.66667% !important;
  }

  .md\:hover\:-m-9\/12:hover{
    margin     : -75% !important;
  }

  .md\:hover\:-m-10\/12:hover{
    margin     : -83.33333% !important;
  }

  .md\:hover\:-m-11\/12:hover{
    margin     : -91.66667% !important;
  }

  .md\:hover\:-m-full:hover{
    margin     : -100% !important;
  }

  .md\:hover\:my-0:hover{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .md\:hover\:mx-0:hover{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .md\:hover\:my-1:hover{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .md\:hover\:mx-1:hover{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .md\:hover\:my-2:hover{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .md\:hover\:mx-2:hover{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .md\:hover\:my-3:hover{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .md\:hover\:mx-3:hover{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .md\:hover\:my-4:hover{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .md\:hover\:mx-4:hover{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .md\:hover\:my-5:hover{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .md\:hover\:mx-5:hover{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .md\:hover\:my-6:hover{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .md\:hover\:mx-6:hover{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .md\:hover\:my-7:hover{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .md\:hover\:mx-7:hover{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .md\:hover\:my-8:hover{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .md\:hover\:mx-8:hover{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .md\:hover\:my-9:hover{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .md\:hover\:mx-9:hover{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .md\:hover\:my-10:hover{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .md\:hover\:mx-10:hover{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .md\:hover\:my-11:hover{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .md\:hover\:mx-11:hover{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .md\:hover\:my-12:hover{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .md\:hover\:mx-12:hover{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .md\:hover\:my-13:hover{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .md\:hover\:mx-13:hover{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .md\:hover\:my-14:hover{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .md\:hover\:mx-14:hover{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .md\:hover\:my-15:hover{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .md\:hover\:mx-15:hover{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .md\:hover\:my-16:hover{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .md\:hover\:mx-16:hover{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .md\:hover\:my-20:hover{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .md\:hover\:mx-20:hover{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .md\:hover\:my-24:hover{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .md\:hover\:mx-24:hover{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .md\:hover\:my-28:hover{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .md\:hover\:mx-28:hover{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .md\:hover\:my-32:hover{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .md\:hover\:mx-32:hover{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .md\:hover\:my-36:hover{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .md\:hover\:mx-36:hover{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .md\:hover\:my-40:hover{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .md\:hover\:mx-40:hover{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .md\:hover\:my-44:hover{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .md\:hover\:mx-44:hover{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .md\:hover\:my-48:hover{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .md\:hover\:mx-48:hover{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .md\:hover\:my-52:hover{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .md\:hover\:mx-52:hover{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .md\:hover\:my-56:hover{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .md\:hover\:mx-56:hover{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .md\:hover\:my-60:hover{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .md\:hover\:mx-60:hover{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .md\:hover\:my-64:hover{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .md\:hover\:mx-64:hover{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .md\:hover\:my-72:hover{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .md\:hover\:mx-72:hover{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .md\:hover\:my-80:hover{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .md\:hover\:mx-80:hover{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .md\:hover\:my-96:hover{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .md\:hover\:mx-96:hover{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .md\:hover\:my-auto:hover{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .md\:hover\:mx-auto:hover{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .md\:hover\:my-px:hover{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .md\:hover\:mx-px:hover{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .md\:hover\:my-0\.5:hover{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .md\:hover\:mx-0\.5:hover{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .md\:hover\:my-1\.5:hover{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .md\:hover\:mx-1\.5:hover{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .md\:hover\:my-2\.5:hover{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .md\:hover\:mx-2\.5:hover{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .md\:hover\:my-3\.5:hover{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .md\:hover\:mx-3\.5:hover{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .md\:hover\:my-1\/2:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:hover\:mx-1\/2:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:hover\:my-1\/3:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:mx-1\/3:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:my-2\/3:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:mx-2\/3:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:my-1\/4:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .md\:hover\:mx-1\/4:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .md\:hover\:my-2\/4:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:hover\:mx-2\/4:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:hover\:my-3\/4:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .md\:hover\:mx-3\/4:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .md\:hover\:my-1\/5:hover{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .md\:hover\:mx-1\/5:hover{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .md\:hover\:my-2\/5:hover{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .md\:hover\:mx-2\/5:hover{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .md\:hover\:my-3\/5:hover{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .md\:hover\:mx-3\/5:hover{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .md\:hover\:my-4\/5:hover{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .md\:hover\:mx-4\/5:hover{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .md\:hover\:my-1\/6:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .md\:hover\:mx-1\/6:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .md\:hover\:my-2\/6:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:mx-2\/6:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:my-3\/6:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:hover\:mx-3\/6:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:hover\:my-4\/6:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:mx-4\/6:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:my-5\/6:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .md\:hover\:mx-5\/6:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .md\:hover\:my-1\/12:hover{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .md\:hover\:mx-1\/12:hover{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .md\:hover\:my-2\/12:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .md\:hover\:mx-2\/12:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .md\:hover\:my-3\/12:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .md\:hover\:mx-3\/12:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .md\:hover\:my-4\/12:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:mx-4\/12:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:my-5\/12:hover{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .md\:hover\:mx-5\/12:hover{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .md\:hover\:my-6\/12:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:hover\:mx-6\/12:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:hover\:my-7\/12:hover{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .md\:hover\:mx-7\/12:hover{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .md\:hover\:my-8\/12:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:mx-8\/12:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:my-9\/12:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .md\:hover\:mx-9\/12:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .md\:hover\:my-10\/12:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .md\:hover\:mx-10\/12:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .md\:hover\:my-11\/12:hover{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .md\:hover\:mx-11\/12:hover{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .md\:hover\:my-full:hover{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .md\:hover\:mx-full:hover{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .md\:hover\:-my-1:hover{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .md\:hover\:-mx-1:hover{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .md\:hover\:-my-2:hover{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .md\:hover\:-mx-2:hover{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .md\:hover\:-my-3:hover{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .md\:hover\:-mx-3:hover{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .md\:hover\:-my-4:hover{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .md\:hover\:-mx-4:hover{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .md\:hover\:-my-5:hover{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .md\:hover\:-mx-5:hover{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .md\:hover\:-my-6:hover{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .md\:hover\:-mx-6:hover{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .md\:hover\:-my-7:hover{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .md\:hover\:-mx-7:hover{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .md\:hover\:-my-8:hover{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .md\:hover\:-mx-8:hover{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .md\:hover\:-my-9:hover{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .md\:hover\:-mx-9:hover{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .md\:hover\:-my-10:hover{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .md\:hover\:-mx-10:hover{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .md\:hover\:-my-11:hover{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .md\:hover\:-mx-11:hover{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .md\:hover\:-my-12:hover{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .md\:hover\:-mx-12:hover{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .md\:hover\:-my-13:hover{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .md\:hover\:-mx-13:hover{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .md\:hover\:-my-14:hover{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .md\:hover\:-mx-14:hover{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .md\:hover\:-my-15:hover{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .md\:hover\:-mx-15:hover{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .md\:hover\:-my-16:hover{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .md\:hover\:-mx-16:hover{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .md\:hover\:-my-20:hover{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .md\:hover\:-mx-20:hover{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .md\:hover\:-my-24:hover{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .md\:hover\:-mx-24:hover{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .md\:hover\:-my-28:hover{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .md\:hover\:-mx-28:hover{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .md\:hover\:-my-32:hover{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .md\:hover\:-mx-32:hover{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .md\:hover\:-my-36:hover{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .md\:hover\:-mx-36:hover{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .md\:hover\:-my-40:hover{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .md\:hover\:-mx-40:hover{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .md\:hover\:-my-44:hover{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .md\:hover\:-mx-44:hover{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .md\:hover\:-my-48:hover{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .md\:hover\:-mx-48:hover{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .md\:hover\:-my-52:hover{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .md\:hover\:-mx-52:hover{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .md\:hover\:-my-56:hover{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .md\:hover\:-mx-56:hover{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .md\:hover\:-my-60:hover{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .md\:hover\:-mx-60:hover{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .md\:hover\:-my-64:hover{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .md\:hover\:-mx-64:hover{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .md\:hover\:-my-72:hover{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .md\:hover\:-mx-72:hover{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .md\:hover\:-my-80:hover{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .md\:hover\:-mx-80:hover{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .md\:hover\:-my-96:hover{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .md\:hover\:-mx-96:hover{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .md\:hover\:-my-px:hover{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .md\:hover\:-mx-px:hover{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .md\:hover\:-my-0\.5:hover{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .md\:hover\:-mx-0\.5:hover{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .md\:hover\:-my-1\.5:hover{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .md\:hover\:-mx-1\.5:hover{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .md\:hover\:-my-2\.5:hover{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .md\:hover\:-mx-2\.5:hover{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .md\:hover\:-my-3\.5:hover{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .md\:hover\:-mx-3\.5:hover{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .md\:hover\:-my-1\/2:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-mx-1\/2:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:hover\:-my-1\/3:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-mx-1\/3:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-my-2\/3:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-mx-2\/3:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-my-1\/4:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .md\:hover\:-mx-1\/4:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .md\:hover\:-my-2\/4:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-mx-2\/4:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:hover\:-my-3\/4:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .md\:hover\:-mx-3\/4:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .md\:hover\:-my-1\/5:hover{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .md\:hover\:-mx-1\/5:hover{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .md\:hover\:-my-2\/5:hover{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .md\:hover\:-mx-2\/5:hover{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .md\:hover\:-my-3\/5:hover{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .md\:hover\:-mx-3\/5:hover{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .md\:hover\:-my-4\/5:hover{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .md\:hover\:-mx-4\/5:hover{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .md\:hover\:-my-1\/6:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .md\:hover\:-mx-1\/6:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .md\:hover\:-my-2\/6:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-mx-2\/6:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-my-3\/6:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-mx-3\/6:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:hover\:-my-4\/6:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-mx-4\/6:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-my-5\/6:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .md\:hover\:-mx-5\/6:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .md\:hover\:-my-1\/12:hover{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .md\:hover\:-mx-1\/12:hover{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .md\:hover\:-my-2\/12:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .md\:hover\:-mx-2\/12:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .md\:hover\:-my-3\/12:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .md\:hover\:-mx-3\/12:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .md\:hover\:-my-4\/12:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-mx-4\/12:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-my-5\/12:hover{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .md\:hover\:-mx-5\/12:hover{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .md\:hover\:-my-6\/12:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-mx-6\/12:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:hover\:-my-7\/12:hover{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .md\:hover\:-mx-7\/12:hover{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .md\:hover\:-my-8\/12:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-mx-8\/12:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-my-9\/12:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .md\:hover\:-mx-9\/12:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .md\:hover\:-my-10\/12:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .md\:hover\:-mx-10\/12:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .md\:hover\:-my-11\/12:hover{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .md\:hover\:-mx-11\/12:hover{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .md\:hover\:-my-full:hover{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .md\:hover\:-mx-full:hover{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .md\:hover\:mt-0:hover{
    margin-top     : 0 !important;
  }

  .md\:hover\:mr-0:hover{
    margin-right     : 0 !important;
  }

  .md\:hover\:mb-0:hover{
    margin-bottom     : 0 !important;
  }

  .md\:hover\:ml-0:hover{
    margin-left     : 0 !important;
  }

  .md\:hover\:mt-1:hover{
    margin-top     : 0.25rem !important;
  }

  .md\:hover\:mr-1:hover{
    margin-right     : 0.25rem !important;
  }

  .md\:hover\:mb-1:hover{
    margin-bottom     : 0.25rem !important;
  }

  .md\:hover\:ml-1:hover{
    margin-left     : 0.25rem !important;
  }

  .md\:hover\:mt-2:hover{
    margin-top     : 0.5rem !important;
  }

  .md\:hover\:mr-2:hover{
    margin-right     : 0.5rem !important;
  }

  .md\:hover\:mb-2:hover{
    margin-bottom     : 0.5rem !important;
  }

  .md\:hover\:ml-2:hover{
    margin-left     : 0.5rem !important;
  }

  .md\:hover\:mt-3:hover{
    margin-top     : 0.75rem !important;
  }

  .md\:hover\:mr-3:hover{
    margin-right     : 0.75rem !important;
  }

  .md\:hover\:mb-3:hover{
    margin-bottom     : 0.75rem !important;
  }

  .md\:hover\:ml-3:hover{
    margin-left     : 0.75rem !important;
  }

  .md\:hover\:mt-4:hover{
    margin-top     : 1rem !important;
  }

  .md\:hover\:mr-4:hover{
    margin-right     : 1rem !important;
  }

  .md\:hover\:mb-4:hover{
    margin-bottom     : 1rem !important;
  }

  .md\:hover\:ml-4:hover{
    margin-left     : 1rem !important;
  }

  .md\:hover\:mt-5:hover{
    margin-top     : 1.25rem !important;
  }

  .md\:hover\:mr-5:hover{
    margin-right     : 1.25rem !important;
  }

  .md\:hover\:mb-5:hover{
    margin-bottom     : 1.25rem !important;
  }

  .md\:hover\:ml-5:hover{
    margin-left     : 1.25rem !important;
  }

  .md\:hover\:mt-6:hover{
    margin-top     : 1.5rem !important;
  }

  .md\:hover\:mr-6:hover{
    margin-right     : 1.5rem !important;
  }

  .md\:hover\:mb-6:hover{
    margin-bottom     : 1.5rem !important;
  }

  .md\:hover\:ml-6:hover{
    margin-left     : 1.5rem !important;
  }

  .md\:hover\:mt-7:hover{
    margin-top     : 1.75rem !important;
  }

  .md\:hover\:mr-7:hover{
    margin-right     : 1.75rem !important;
  }

  .md\:hover\:mb-7:hover{
    margin-bottom     : 1.75rem !important;
  }

  .md\:hover\:ml-7:hover{
    margin-left     : 1.75rem !important;
  }

  .md\:hover\:mt-8:hover{
    margin-top     : 2rem !important;
  }

  .md\:hover\:mr-8:hover{
    margin-right     : 2rem !important;
  }

  .md\:hover\:mb-8:hover{
    margin-bottom     : 2rem !important;
  }

  .md\:hover\:ml-8:hover{
    margin-left     : 2rem !important;
  }

  .md\:hover\:mt-9:hover{
    margin-top     : 2.25rem !important;
  }

  .md\:hover\:mr-9:hover{
    margin-right     : 2.25rem !important;
  }

  .md\:hover\:mb-9:hover{
    margin-bottom     : 2.25rem !important;
  }

  .md\:hover\:ml-9:hover{
    margin-left     : 2.25rem !important;
  }

  .md\:hover\:mt-10:hover{
    margin-top     : 2.5rem !important;
  }

  .md\:hover\:mr-10:hover{
    margin-right     : 2.5rem !important;
  }

  .md\:hover\:mb-10:hover{
    margin-bottom     : 2.5rem !important;
  }

  .md\:hover\:ml-10:hover{
    margin-left     : 2.5rem !important;
  }

  .md\:hover\:mt-11:hover{
    margin-top     : 2.75rem !important;
  }

  .md\:hover\:mr-11:hover{
    margin-right     : 2.75rem !important;
  }

  .md\:hover\:mb-11:hover{
    margin-bottom     : 2.75rem !important;
  }

  .md\:hover\:ml-11:hover{
    margin-left     : 2.75rem !important;
  }

  .md\:hover\:mt-12:hover{
    margin-top     : 3rem !important;
  }

  .md\:hover\:mr-12:hover{
    margin-right     : 3rem !important;
  }

  .md\:hover\:mb-12:hover{
    margin-bottom     : 3rem !important;
  }

  .md\:hover\:ml-12:hover{
    margin-left     : 3rem !important;
  }

  .md\:hover\:mt-13:hover{
    margin-top     : 3.25rem !important;
  }

  .md\:hover\:mr-13:hover{
    margin-right     : 3.25rem !important;
  }

  .md\:hover\:mb-13:hover{
    margin-bottom     : 3.25rem !important;
  }

  .md\:hover\:ml-13:hover{
    margin-left     : 3.25rem !important;
  }

  .md\:hover\:mt-14:hover{
    margin-top     : 3.5rem !important;
  }

  .md\:hover\:mr-14:hover{
    margin-right     : 3.5rem !important;
  }

  .md\:hover\:mb-14:hover{
    margin-bottom     : 3.5rem !important;
  }

  .md\:hover\:ml-14:hover{
    margin-left     : 3.5rem !important;
  }

  .md\:hover\:mt-15:hover{
    margin-top     : 3.75rem !important;
  }

  .md\:hover\:mr-15:hover{
    margin-right     : 3.75rem !important;
  }

  .md\:hover\:mb-15:hover{
    margin-bottom     : 3.75rem !important;
  }

  .md\:hover\:ml-15:hover{
    margin-left     : 3.75rem !important;
  }

  .md\:hover\:mt-16:hover{
    margin-top     : 4rem !important;
  }

  .md\:hover\:mr-16:hover{
    margin-right     : 4rem !important;
  }

  .md\:hover\:mb-16:hover{
    margin-bottom     : 4rem !important;
  }

  .md\:hover\:ml-16:hover{
    margin-left     : 4rem !important;
  }

  .md\:hover\:mt-20:hover{
    margin-top     : 5rem !important;
  }

  .md\:hover\:mr-20:hover{
    margin-right     : 5rem !important;
  }

  .md\:hover\:mb-20:hover{
    margin-bottom     : 5rem !important;
  }

  .md\:hover\:ml-20:hover{
    margin-left     : 5rem !important;
  }

  .md\:hover\:mt-24:hover{
    margin-top     : 6rem !important;
  }

  .md\:hover\:mr-24:hover{
    margin-right     : 6rem !important;
  }

  .md\:hover\:mb-24:hover{
    margin-bottom     : 6rem !important;
  }

  .md\:hover\:ml-24:hover{
    margin-left     : 6rem !important;
  }

  .md\:hover\:mt-28:hover{
    margin-top     : 7rem !important;
  }

  .md\:hover\:mr-28:hover{
    margin-right     : 7rem !important;
  }

  .md\:hover\:mb-28:hover{
    margin-bottom     : 7rem !important;
  }

  .md\:hover\:ml-28:hover{
    margin-left     : 7rem !important;
  }

  .md\:hover\:mt-32:hover{
    margin-top     : 8rem !important;
  }

  .md\:hover\:mr-32:hover{
    margin-right     : 8rem !important;
  }

  .md\:hover\:mb-32:hover{
    margin-bottom     : 8rem !important;
  }

  .md\:hover\:ml-32:hover{
    margin-left     : 8rem !important;
  }

  .md\:hover\:mt-36:hover{
    margin-top     : 9rem !important;
  }

  .md\:hover\:mr-36:hover{
    margin-right     : 9rem !important;
  }

  .md\:hover\:mb-36:hover{
    margin-bottom     : 9rem !important;
  }

  .md\:hover\:ml-36:hover{
    margin-left     : 9rem !important;
  }

  .md\:hover\:mt-40:hover{
    margin-top     : 10rem !important;
  }

  .md\:hover\:mr-40:hover{
    margin-right     : 10rem !important;
  }

  .md\:hover\:mb-40:hover{
    margin-bottom     : 10rem !important;
  }

  .md\:hover\:ml-40:hover{
    margin-left     : 10rem !important;
  }

  .md\:hover\:mt-44:hover{
    margin-top     : 11rem !important;
  }

  .md\:hover\:mr-44:hover{
    margin-right     : 11rem !important;
  }

  .md\:hover\:mb-44:hover{
    margin-bottom     : 11rem !important;
  }

  .md\:hover\:ml-44:hover{
    margin-left     : 11rem !important;
  }

  .md\:hover\:mt-48:hover{
    margin-top     : 12rem !important;
  }

  .md\:hover\:mr-48:hover{
    margin-right     : 12rem !important;
  }

  .md\:hover\:mb-48:hover{
    margin-bottom     : 12rem !important;
  }

  .md\:hover\:ml-48:hover{
    margin-left     : 12rem !important;
  }

  .md\:hover\:mt-52:hover{
    margin-top     : 13rem !important;
  }

  .md\:hover\:mr-52:hover{
    margin-right     : 13rem !important;
  }

  .md\:hover\:mb-52:hover{
    margin-bottom     : 13rem !important;
  }

  .md\:hover\:ml-52:hover{
    margin-left     : 13rem !important;
  }

  .md\:hover\:mt-56:hover{
    margin-top     : 14rem !important;
  }

  .md\:hover\:mr-56:hover{
    margin-right     : 14rem !important;
  }

  .md\:hover\:mb-56:hover{
    margin-bottom     : 14rem !important;
  }

  .md\:hover\:ml-56:hover{
    margin-left     : 14rem !important;
  }

  .md\:hover\:mt-60:hover{
    margin-top     : 15rem !important;
  }

  .md\:hover\:mr-60:hover{
    margin-right     : 15rem !important;
  }

  .md\:hover\:mb-60:hover{
    margin-bottom     : 15rem !important;
  }

  .md\:hover\:ml-60:hover{
    margin-left     : 15rem !important;
  }

  .md\:hover\:mt-64:hover{
    margin-top     : 16rem !important;
  }

  .md\:hover\:mr-64:hover{
    margin-right     : 16rem !important;
  }

  .md\:hover\:mb-64:hover{
    margin-bottom     : 16rem !important;
  }

  .md\:hover\:ml-64:hover{
    margin-left     : 16rem !important;
  }

  .md\:hover\:mt-72:hover{
    margin-top     : 18rem !important;
  }

  .md\:hover\:mr-72:hover{
    margin-right     : 18rem !important;
  }

  .md\:hover\:mb-72:hover{
    margin-bottom     : 18rem !important;
  }

  .md\:hover\:ml-72:hover{
    margin-left     : 18rem !important;
  }

  .md\:hover\:mt-80:hover{
    margin-top     : 20rem !important;
  }

  .md\:hover\:mr-80:hover{
    margin-right     : 20rem !important;
  }

  .md\:hover\:mb-80:hover{
    margin-bottom     : 20rem !important;
  }

  .md\:hover\:ml-80:hover{
    margin-left     : 20rem !important;
  }

  .md\:hover\:mt-96:hover{
    margin-top     : 24rem !important;
  }

  .md\:hover\:mr-96:hover{
    margin-right     : 24rem !important;
  }

  .md\:hover\:mb-96:hover{
    margin-bottom     : 24rem !important;
  }

  .md\:hover\:ml-96:hover{
    margin-left     : 24rem !important;
  }

  .md\:hover\:mt-auto:hover{
    margin-top     : auto !important;
  }

  .md\:hover\:mr-auto:hover{
    margin-right     : auto !important;
  }

  .md\:hover\:mb-auto:hover{
    margin-bottom     : auto !important;
  }

  .md\:hover\:ml-auto:hover{
    margin-left     : auto !important;
  }

  .md\:hover\:mt-px:hover{
    margin-top     : 1px !important;
  }

  .md\:hover\:mr-px:hover{
    margin-right     : 1px !important;
  }

  .md\:hover\:mb-px:hover{
    margin-bottom     : 1px !important;
  }

  .md\:hover\:ml-px:hover{
    margin-left     : 1px !important;
  }

  .md\:hover\:mt-0\.5:hover{
    margin-top     : 0.125rem !important;
  }

  .md\:hover\:mr-0\.5:hover{
    margin-right     : 0.125rem !important;
  }

  .md\:hover\:mb-0\.5:hover{
    margin-bottom     : 0.125rem !important;
  }

  .md\:hover\:ml-0\.5:hover{
    margin-left     : 0.125rem !important;
  }

  .md\:hover\:mt-1\.5:hover{
    margin-top     : 0.375rem !important;
  }

  .md\:hover\:mr-1\.5:hover{
    margin-right     : 0.375rem !important;
  }

  .md\:hover\:mb-1\.5:hover{
    margin-bottom     : 0.375rem !important;
  }

  .md\:hover\:ml-1\.5:hover{
    margin-left     : 0.375rem !important;
  }

  .md\:hover\:mt-2\.5:hover{
    margin-top     : 0.625rem !important;
  }

  .md\:hover\:mr-2\.5:hover{
    margin-right     : 0.625rem !important;
  }

  .md\:hover\:mb-2\.5:hover{
    margin-bottom     : 0.625rem !important;
  }

  .md\:hover\:ml-2\.5:hover{
    margin-left     : 0.625rem !important;
  }

  .md\:hover\:mt-3\.5:hover{
    margin-top     : 0.875rem !important;
  }

  .md\:hover\:mr-3\.5:hover{
    margin-right     : 0.875rem !important;
  }

  .md\:hover\:mb-3\.5:hover{
    margin-bottom     : 0.875rem !important;
  }

  .md\:hover\:ml-3\.5:hover{
    margin-left     : 0.875rem !important;
  }

  .md\:hover\:mt-1\/2:hover{
    margin-top     : 50% !important;
  }

  .md\:hover\:mr-1\/2:hover{
    margin-right     : 50% !important;
  }

  .md\:hover\:mb-1\/2:hover{
    margin-bottom     : 50% !important;
  }

  .md\:hover\:ml-1\/2:hover{
    margin-left     : 50% !important;
  }

  .md\:hover\:mt-1\/3:hover{
    margin-top     : 33.333333% !important;
  }

  .md\:hover\:mr-1\/3:hover{
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:mb-1\/3:hover{
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:ml-1\/3:hover{
    margin-left     : 33.333333% !important;
  }

  .md\:hover\:mt-2\/3:hover{
    margin-top     : 66.666667% !important;
  }

  .md\:hover\:mr-2\/3:hover{
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:mb-2\/3:hover{
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:ml-2\/3:hover{
    margin-left     : 66.666667% !important;
  }

  .md\:hover\:mt-1\/4:hover{
    margin-top     : 25% !important;
  }

  .md\:hover\:mr-1\/4:hover{
    margin-right     : 25% !important;
  }

  .md\:hover\:mb-1\/4:hover{
    margin-bottom     : 25% !important;
  }

  .md\:hover\:ml-1\/4:hover{
    margin-left     : 25% !important;
  }

  .md\:hover\:mt-2\/4:hover{
    margin-top     : 50% !important;
  }

  .md\:hover\:mr-2\/4:hover{
    margin-right     : 50% !important;
  }

  .md\:hover\:mb-2\/4:hover{
    margin-bottom     : 50% !important;
  }

  .md\:hover\:ml-2\/4:hover{
    margin-left     : 50% !important;
  }

  .md\:hover\:mt-3\/4:hover{
    margin-top     : 75% !important;
  }

  .md\:hover\:mr-3\/4:hover{
    margin-right     : 75% !important;
  }

  .md\:hover\:mb-3\/4:hover{
    margin-bottom     : 75% !important;
  }

  .md\:hover\:ml-3\/4:hover{
    margin-left     : 75% !important;
  }

  .md\:hover\:mt-1\/5:hover{
    margin-top     : 20% !important;
  }

  .md\:hover\:mr-1\/5:hover{
    margin-right     : 20% !important;
  }

  .md\:hover\:mb-1\/5:hover{
    margin-bottom     : 20% !important;
  }

  .md\:hover\:ml-1\/5:hover{
    margin-left     : 20% !important;
  }

  .md\:hover\:mt-2\/5:hover{
    margin-top     : 40% !important;
  }

  .md\:hover\:mr-2\/5:hover{
    margin-right     : 40% !important;
  }

  .md\:hover\:mb-2\/5:hover{
    margin-bottom     : 40% !important;
  }

  .md\:hover\:ml-2\/5:hover{
    margin-left     : 40% !important;
  }

  .md\:hover\:mt-3\/5:hover{
    margin-top     : 60% !important;
  }

  .md\:hover\:mr-3\/5:hover{
    margin-right     : 60% !important;
  }

  .md\:hover\:mb-3\/5:hover{
    margin-bottom     : 60% !important;
  }

  .md\:hover\:ml-3\/5:hover{
    margin-left     : 60% !important;
  }

  .md\:hover\:mt-4\/5:hover{
    margin-top     : 80% !important;
  }

  .md\:hover\:mr-4\/5:hover{
    margin-right     : 80% !important;
  }

  .md\:hover\:mb-4\/5:hover{
    margin-bottom     : 80% !important;
  }

  .md\:hover\:ml-4\/5:hover{
    margin-left     : 80% !important;
  }

  .md\:hover\:mt-1\/6:hover{
    margin-top     : 16.666667% !important;
  }

  .md\:hover\:mr-1\/6:hover{
    margin-right     : 16.666667% !important;
  }

  .md\:hover\:mb-1\/6:hover{
    margin-bottom     : 16.666667% !important;
  }

  .md\:hover\:ml-1\/6:hover{
    margin-left     : 16.666667% !important;
  }

  .md\:hover\:mt-2\/6:hover{
    margin-top     : 33.333333% !important;
  }

  .md\:hover\:mr-2\/6:hover{
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:mb-2\/6:hover{
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:ml-2\/6:hover{
    margin-left     : 33.333333% !important;
  }

  .md\:hover\:mt-3\/6:hover{
    margin-top     : 50% !important;
  }

  .md\:hover\:mr-3\/6:hover{
    margin-right     : 50% !important;
  }

  .md\:hover\:mb-3\/6:hover{
    margin-bottom     : 50% !important;
  }

  .md\:hover\:ml-3\/6:hover{
    margin-left     : 50% !important;
  }

  .md\:hover\:mt-4\/6:hover{
    margin-top     : 66.666667% !important;
  }

  .md\:hover\:mr-4\/6:hover{
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:mb-4\/6:hover{
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:ml-4\/6:hover{
    margin-left     : 66.666667% !important;
  }

  .md\:hover\:mt-5\/6:hover{
    margin-top     : 83.333333% !important;
  }

  .md\:hover\:mr-5\/6:hover{
    margin-right     : 83.333333% !important;
  }

  .md\:hover\:mb-5\/6:hover{
    margin-bottom     : 83.333333% !important;
  }

  .md\:hover\:ml-5\/6:hover{
    margin-left     : 83.333333% !important;
  }

  .md\:hover\:mt-1\/12:hover{
    margin-top     : 8.333333% !important;
  }

  .md\:hover\:mr-1\/12:hover{
    margin-right     : 8.333333% !important;
  }

  .md\:hover\:mb-1\/12:hover{
    margin-bottom     : 8.333333% !important;
  }

  .md\:hover\:ml-1\/12:hover{
    margin-left     : 8.333333% !important;
  }

  .md\:hover\:mt-2\/12:hover{
    margin-top     : 16.666667% !important;
  }

  .md\:hover\:mr-2\/12:hover{
    margin-right     : 16.666667% !important;
  }

  .md\:hover\:mb-2\/12:hover{
    margin-bottom     : 16.666667% !important;
  }

  .md\:hover\:ml-2\/12:hover{
    margin-left     : 16.666667% !important;
  }

  .md\:hover\:mt-3\/12:hover{
    margin-top     : 25% !important;
  }

  .md\:hover\:mr-3\/12:hover{
    margin-right     : 25% !important;
  }

  .md\:hover\:mb-3\/12:hover{
    margin-bottom     : 25% !important;
  }

  .md\:hover\:ml-3\/12:hover{
    margin-left     : 25% !important;
  }

  .md\:hover\:mt-4\/12:hover{
    margin-top     : 33.333333% !important;
  }

  .md\:hover\:mr-4\/12:hover{
    margin-right     : 33.333333% !important;
  }

  .md\:hover\:mb-4\/12:hover{
    margin-bottom     : 33.333333% !important;
  }

  .md\:hover\:ml-4\/12:hover{
    margin-left     : 33.333333% !important;
  }

  .md\:hover\:mt-5\/12:hover{
    margin-top     : 41.666667% !important;
  }

  .md\:hover\:mr-5\/12:hover{
    margin-right     : 41.666667% !important;
  }

  .md\:hover\:mb-5\/12:hover{
    margin-bottom     : 41.666667% !important;
  }

  .md\:hover\:ml-5\/12:hover{
    margin-left     : 41.666667% !important;
  }

  .md\:hover\:mt-6\/12:hover{
    margin-top     : 50% !important;
  }

  .md\:hover\:mr-6\/12:hover{
    margin-right     : 50% !important;
  }

  .md\:hover\:mb-6\/12:hover{
    margin-bottom     : 50% !important;
  }

  .md\:hover\:ml-6\/12:hover{
    margin-left     : 50% !important;
  }

  .md\:hover\:mt-7\/12:hover{
    margin-top     : 58.333333% !important;
  }

  .md\:hover\:mr-7\/12:hover{
    margin-right     : 58.333333% !important;
  }

  .md\:hover\:mb-7\/12:hover{
    margin-bottom     : 58.333333% !important;
  }

  .md\:hover\:ml-7\/12:hover{
    margin-left     : 58.333333% !important;
  }

  .md\:hover\:mt-8\/12:hover{
    margin-top     : 66.666667% !important;
  }

  .md\:hover\:mr-8\/12:hover{
    margin-right     : 66.666667% !important;
  }

  .md\:hover\:mb-8\/12:hover{
    margin-bottom     : 66.666667% !important;
  }

  .md\:hover\:ml-8\/12:hover{
    margin-left     : 66.666667% !important;
  }

  .md\:hover\:mt-9\/12:hover{
    margin-top     : 75% !important;
  }

  .md\:hover\:mr-9\/12:hover{
    margin-right     : 75% !important;
  }

  .md\:hover\:mb-9\/12:hover{
    margin-bottom     : 75% !important;
  }

  .md\:hover\:ml-9\/12:hover{
    margin-left     : 75% !important;
  }

  .md\:hover\:mt-10\/12:hover{
    margin-top     : 83.333333% !important;
  }

  .md\:hover\:mr-10\/12:hover{
    margin-right     : 83.333333% !important;
  }

  .md\:hover\:mb-10\/12:hover{
    margin-bottom     : 83.333333% !important;
  }

  .md\:hover\:ml-10\/12:hover{
    margin-left     : 83.333333% !important;
  }

  .md\:hover\:mt-11\/12:hover{
    margin-top     : 91.666667% !important;
  }

  .md\:hover\:mr-11\/12:hover{
    margin-right     : 91.666667% !important;
  }

  .md\:hover\:mb-11\/12:hover{
    margin-bottom     : 91.666667% !important;
  }

  .md\:hover\:ml-11\/12:hover{
    margin-left     : 91.666667% !important;
  }

  .md\:hover\:mt-full:hover{
    margin-top     : 100% !important;
  }

  .md\:hover\:mr-full:hover{
    margin-right     : 100% !important;
  }

  .md\:hover\:mb-full:hover{
    margin-bottom     : 100% !important;
  }

  .md\:hover\:ml-full:hover{
    margin-left     : 100% !important;
  }

  .md\:hover\:-mt-1:hover{
    margin-top     : -0.25rem !important;
  }

  .md\:hover\:-mr-1:hover{
    margin-right     : -0.25rem !important;
  }

  .md\:hover\:-mb-1:hover{
    margin-bottom     : -0.25rem !important;
  }

  .md\:hover\:-ml-1:hover{
    margin-left     : -0.25rem !important;
  }

  .md\:hover\:-mt-2:hover{
    margin-top     : -0.5rem !important;
  }

  .md\:hover\:-mr-2:hover{
    margin-right     : -0.5rem !important;
  }

  .md\:hover\:-mb-2:hover{
    margin-bottom     : -0.5rem !important;
  }

  .md\:hover\:-ml-2:hover{
    margin-left     : -0.5rem !important;
  }

  .md\:hover\:-mt-3:hover{
    margin-top     : -0.75rem !important;
  }

  .md\:hover\:-mr-3:hover{
    margin-right     : -0.75rem !important;
  }

  .md\:hover\:-mb-3:hover{
    margin-bottom     : -0.75rem !important;
  }

  .md\:hover\:-ml-3:hover{
    margin-left     : -0.75rem !important;
  }

  .md\:hover\:-mt-4:hover{
    margin-top     : -1rem !important;
  }

  .md\:hover\:-mr-4:hover{
    margin-right     : -1rem !important;
  }

  .md\:hover\:-mb-4:hover{
    margin-bottom     : -1rem !important;
  }

  .md\:hover\:-ml-4:hover{
    margin-left     : -1rem !important;
  }

  .md\:hover\:-mt-5:hover{
    margin-top     : -1.25rem !important;
  }

  .md\:hover\:-mr-5:hover{
    margin-right     : -1.25rem !important;
  }

  .md\:hover\:-mb-5:hover{
    margin-bottom     : -1.25rem !important;
  }

  .md\:hover\:-ml-5:hover{
    margin-left     : -1.25rem !important;
  }

  .md\:hover\:-mt-6:hover{
    margin-top     : -1.5rem !important;
  }

  .md\:hover\:-mr-6:hover{
    margin-right     : -1.5rem !important;
  }

  .md\:hover\:-mb-6:hover{
    margin-bottom     : -1.5rem !important;
  }

  .md\:hover\:-ml-6:hover{
    margin-left     : -1.5rem !important;
  }

  .md\:hover\:-mt-7:hover{
    margin-top     : -1.75rem !important;
  }

  .md\:hover\:-mr-7:hover{
    margin-right     : -1.75rem !important;
  }

  .md\:hover\:-mb-7:hover{
    margin-bottom     : -1.75rem !important;
  }

  .md\:hover\:-ml-7:hover{
    margin-left     : -1.75rem !important;
  }

  .md\:hover\:-mt-8:hover{
    margin-top     : -2rem !important;
  }

  .md\:hover\:-mr-8:hover{
    margin-right     : -2rem !important;
  }

  .md\:hover\:-mb-8:hover{
    margin-bottom     : -2rem !important;
  }

  .md\:hover\:-ml-8:hover{
    margin-left     : -2rem !important;
  }

  .md\:hover\:-mt-9:hover{
    margin-top     : -2.25rem !important;
  }

  .md\:hover\:-mr-9:hover{
    margin-right     : -2.25rem !important;
  }

  .md\:hover\:-mb-9:hover{
    margin-bottom     : -2.25rem !important;
  }

  .md\:hover\:-ml-9:hover{
    margin-left     : -2.25rem !important;
  }

  .md\:hover\:-mt-10:hover{
    margin-top     : -2.5rem !important;
  }

  .md\:hover\:-mr-10:hover{
    margin-right     : -2.5rem !important;
  }

  .md\:hover\:-mb-10:hover{
    margin-bottom     : -2.5rem !important;
  }

  .md\:hover\:-ml-10:hover{
    margin-left     : -2.5rem !important;
  }

  .md\:hover\:-mt-11:hover{
    margin-top     : -2.75rem !important;
  }

  .md\:hover\:-mr-11:hover{
    margin-right     : -2.75rem !important;
  }

  .md\:hover\:-mb-11:hover{
    margin-bottom     : -2.75rem !important;
  }

  .md\:hover\:-ml-11:hover{
    margin-left     : -2.75rem !important;
  }

  .md\:hover\:-mt-12:hover{
    margin-top     : -3rem !important;
  }

  .md\:hover\:-mr-12:hover{
    margin-right     : -3rem !important;
  }

  .md\:hover\:-mb-12:hover{
    margin-bottom     : -3rem !important;
  }

  .md\:hover\:-ml-12:hover{
    margin-left     : -3rem !important;
  }

  .md\:hover\:-mt-13:hover{
    margin-top     : -3.25rem !important;
  }

  .md\:hover\:-mr-13:hover{
    margin-right     : -3.25rem !important;
  }

  .md\:hover\:-mb-13:hover{
    margin-bottom     : -3.25rem !important;
  }

  .md\:hover\:-ml-13:hover{
    margin-left     : -3.25rem !important;
  }

  .md\:hover\:-mt-14:hover{
    margin-top     : -3.5rem !important;
  }

  .md\:hover\:-mr-14:hover{
    margin-right     : -3.5rem !important;
  }

  .md\:hover\:-mb-14:hover{
    margin-bottom     : -3.5rem !important;
  }

  .md\:hover\:-ml-14:hover{
    margin-left     : -3.5rem !important;
  }

  .md\:hover\:-mt-15:hover{
    margin-top     : -3.75rem !important;
  }

  .md\:hover\:-mr-15:hover{
    margin-right     : -3.75rem !important;
  }

  .md\:hover\:-mb-15:hover{
    margin-bottom     : -3.75rem !important;
  }

  .md\:hover\:-ml-15:hover{
    margin-left     : -3.75rem !important;
  }

  .md\:hover\:-mt-16:hover{
    margin-top     : -4rem !important;
  }

  .md\:hover\:-mr-16:hover{
    margin-right     : -4rem !important;
  }

  .md\:hover\:-mb-16:hover{
    margin-bottom     : -4rem !important;
  }

  .md\:hover\:-ml-16:hover{
    margin-left     : -4rem !important;
  }

  .md\:hover\:-mt-20:hover{
    margin-top     : -5rem !important;
  }

  .md\:hover\:-mr-20:hover{
    margin-right     : -5rem !important;
  }

  .md\:hover\:-mb-20:hover{
    margin-bottom     : -5rem !important;
  }

  .md\:hover\:-ml-20:hover{
    margin-left     : -5rem !important;
  }

  .md\:hover\:-mt-24:hover{
    margin-top     : -6rem !important;
  }

  .md\:hover\:-mr-24:hover{
    margin-right     : -6rem !important;
  }

  .md\:hover\:-mb-24:hover{
    margin-bottom     : -6rem !important;
  }

  .md\:hover\:-ml-24:hover{
    margin-left     : -6rem !important;
  }

  .md\:hover\:-mt-28:hover{
    margin-top     : -7rem !important;
  }

  .md\:hover\:-mr-28:hover{
    margin-right     : -7rem !important;
  }

  .md\:hover\:-mb-28:hover{
    margin-bottom     : -7rem !important;
  }

  .md\:hover\:-ml-28:hover{
    margin-left     : -7rem !important;
  }

  .md\:hover\:-mt-32:hover{
    margin-top     : -8rem !important;
  }

  .md\:hover\:-mr-32:hover{
    margin-right     : -8rem !important;
  }

  .md\:hover\:-mb-32:hover{
    margin-bottom     : -8rem !important;
  }

  .md\:hover\:-ml-32:hover{
    margin-left     : -8rem !important;
  }

  .md\:hover\:-mt-36:hover{
    margin-top     : -9rem !important;
  }

  .md\:hover\:-mr-36:hover{
    margin-right     : -9rem !important;
  }

  .md\:hover\:-mb-36:hover{
    margin-bottom     : -9rem !important;
  }

  .md\:hover\:-ml-36:hover{
    margin-left     : -9rem !important;
  }

  .md\:hover\:-mt-40:hover{
    margin-top     : -10rem !important;
  }

  .md\:hover\:-mr-40:hover{
    margin-right     : -10rem !important;
  }

  .md\:hover\:-mb-40:hover{
    margin-bottom     : -10rem !important;
  }

  .md\:hover\:-ml-40:hover{
    margin-left     : -10rem !important;
  }

  .md\:hover\:-mt-44:hover{
    margin-top     : -11rem !important;
  }

  .md\:hover\:-mr-44:hover{
    margin-right     : -11rem !important;
  }

  .md\:hover\:-mb-44:hover{
    margin-bottom     : -11rem !important;
  }

  .md\:hover\:-ml-44:hover{
    margin-left     : -11rem !important;
  }

  .md\:hover\:-mt-48:hover{
    margin-top     : -12rem !important;
  }

  .md\:hover\:-mr-48:hover{
    margin-right     : -12rem !important;
  }

  .md\:hover\:-mb-48:hover{
    margin-bottom     : -12rem !important;
  }

  .md\:hover\:-ml-48:hover{
    margin-left     : -12rem !important;
  }

  .md\:hover\:-mt-52:hover{
    margin-top     : -13rem !important;
  }

  .md\:hover\:-mr-52:hover{
    margin-right     : -13rem !important;
  }

  .md\:hover\:-mb-52:hover{
    margin-bottom     : -13rem !important;
  }

  .md\:hover\:-ml-52:hover{
    margin-left     : -13rem !important;
  }

  .md\:hover\:-mt-56:hover{
    margin-top     : -14rem !important;
  }

  .md\:hover\:-mr-56:hover{
    margin-right     : -14rem !important;
  }

  .md\:hover\:-mb-56:hover{
    margin-bottom     : -14rem !important;
  }

  .md\:hover\:-ml-56:hover{
    margin-left     : -14rem !important;
  }

  .md\:hover\:-mt-60:hover{
    margin-top     : -15rem !important;
  }

  .md\:hover\:-mr-60:hover{
    margin-right     : -15rem !important;
  }

  .md\:hover\:-mb-60:hover{
    margin-bottom     : -15rem !important;
  }

  .md\:hover\:-ml-60:hover{
    margin-left     : -15rem !important;
  }

  .md\:hover\:-mt-64:hover{
    margin-top     : -16rem !important;
  }

  .md\:hover\:-mr-64:hover{
    margin-right     : -16rem !important;
  }

  .md\:hover\:-mb-64:hover{
    margin-bottom     : -16rem !important;
  }

  .md\:hover\:-ml-64:hover{
    margin-left     : -16rem !important;
  }

  .md\:hover\:-mt-72:hover{
    margin-top     : -18rem !important;
  }

  .md\:hover\:-mr-72:hover{
    margin-right     : -18rem !important;
  }

  .md\:hover\:-mb-72:hover{
    margin-bottom     : -18rem !important;
  }

  .md\:hover\:-ml-72:hover{
    margin-left     : -18rem !important;
  }

  .md\:hover\:-mt-80:hover{
    margin-top     : -20rem !important;
  }

  .md\:hover\:-mr-80:hover{
    margin-right     : -20rem !important;
  }

  .md\:hover\:-mb-80:hover{
    margin-bottom     : -20rem !important;
  }

  .md\:hover\:-ml-80:hover{
    margin-left     : -20rem !important;
  }

  .md\:hover\:-mt-96:hover{
    margin-top     : -24rem !important;
  }

  .md\:hover\:-mr-96:hover{
    margin-right     : -24rem !important;
  }

  .md\:hover\:-mb-96:hover{
    margin-bottom     : -24rem !important;
  }

  .md\:hover\:-ml-96:hover{
    margin-left     : -24rem !important;
  }

  .md\:hover\:-mt-px:hover{
    margin-top     : -1px !important;
  }

  .md\:hover\:-mr-px:hover{
    margin-right     : -1px !important;
  }

  .md\:hover\:-mb-px:hover{
    margin-bottom     : -1px !important;
  }

  .md\:hover\:-ml-px:hover{
    margin-left     : -1px !important;
  }

  .md\:hover\:-mt-0\.5:hover{
    margin-top     : -0.125rem !important;
  }

  .md\:hover\:-mr-0\.5:hover{
    margin-right     : -0.125rem !important;
  }

  .md\:hover\:-mb-0\.5:hover{
    margin-bottom     : -0.125rem !important;
  }

  .md\:hover\:-ml-0\.5:hover{
    margin-left     : -0.125rem !important;
  }

  .md\:hover\:-mt-1\.5:hover{
    margin-top     : -0.375rem !important;
  }

  .md\:hover\:-mr-1\.5:hover{
    margin-right     : -0.375rem !important;
  }

  .md\:hover\:-mb-1\.5:hover{
    margin-bottom     : -0.375rem !important;
  }

  .md\:hover\:-ml-1\.5:hover{
    margin-left     : -0.375rem !important;
  }

  .md\:hover\:-mt-2\.5:hover{
    margin-top     : -0.625rem !important;
  }

  .md\:hover\:-mr-2\.5:hover{
    margin-right     : -0.625rem !important;
  }

  .md\:hover\:-mb-2\.5:hover{
    margin-bottom     : -0.625rem !important;
  }

  .md\:hover\:-ml-2\.5:hover{
    margin-left     : -0.625rem !important;
  }

  .md\:hover\:-mt-3\.5:hover{
    margin-top     : -0.875rem !important;
  }

  .md\:hover\:-mr-3\.5:hover{
    margin-right     : -0.875rem !important;
  }

  .md\:hover\:-mb-3\.5:hover{
    margin-bottom     : -0.875rem !important;
  }

  .md\:hover\:-ml-3\.5:hover{
    margin-left     : -0.875rem !important;
  }

  .md\:hover\:-mt-1\/2:hover{
    margin-top     : -50% !important;
  }

  .md\:hover\:-mr-1\/2:hover{
    margin-right     : -50% !important;
  }

  .md\:hover\:-mb-1\/2:hover{
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-ml-1\/2:hover{
    margin-left     : -50% !important;
  }

  .md\:hover\:-mt-1\/3:hover{
    margin-top     : -33.33333% !important;
  }

  .md\:hover\:-mr-1\/3:hover{
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-mb-1\/3:hover{
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-ml-1\/3:hover{
    margin-left     : -33.33333% !important;
  }

  .md\:hover\:-mt-2\/3:hover{
    margin-top     : -66.66667% !important;
  }

  .md\:hover\:-mr-2\/3:hover{
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-mb-2\/3:hover{
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-ml-2\/3:hover{
    margin-left     : -66.66667% !important;
  }

  .md\:hover\:-mt-1\/4:hover{
    margin-top     : -25% !important;
  }

  .md\:hover\:-mr-1\/4:hover{
    margin-right     : -25% !important;
  }

  .md\:hover\:-mb-1\/4:hover{
    margin-bottom     : -25% !important;
  }

  .md\:hover\:-ml-1\/4:hover{
    margin-left     : -25% !important;
  }

  .md\:hover\:-mt-2\/4:hover{
    margin-top     : -50% !important;
  }

  .md\:hover\:-mr-2\/4:hover{
    margin-right     : -50% !important;
  }

  .md\:hover\:-mb-2\/4:hover{
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-ml-2\/4:hover{
    margin-left     : -50% !important;
  }

  .md\:hover\:-mt-3\/4:hover{
    margin-top     : -75% !important;
  }

  .md\:hover\:-mr-3\/4:hover{
    margin-right     : -75% !important;
  }

  .md\:hover\:-mb-3\/4:hover{
    margin-bottom     : -75% !important;
  }

  .md\:hover\:-ml-3\/4:hover{
    margin-left     : -75% !important;
  }

  .md\:hover\:-mt-1\/5:hover{
    margin-top     : -20% !important;
  }

  .md\:hover\:-mr-1\/5:hover{
    margin-right     : -20% !important;
  }

  .md\:hover\:-mb-1\/5:hover{
    margin-bottom     : -20% !important;
  }

  .md\:hover\:-ml-1\/5:hover{
    margin-left     : -20% !important;
  }

  .md\:hover\:-mt-2\/5:hover{
    margin-top     : -40% !important;
  }

  .md\:hover\:-mr-2\/5:hover{
    margin-right     : -40% !important;
  }

  .md\:hover\:-mb-2\/5:hover{
    margin-bottom     : -40% !important;
  }

  .md\:hover\:-ml-2\/5:hover{
    margin-left     : -40% !important;
  }

  .md\:hover\:-mt-3\/5:hover{
    margin-top     : -60% !important;
  }

  .md\:hover\:-mr-3\/5:hover{
    margin-right     : -60% !important;
  }

  .md\:hover\:-mb-3\/5:hover{
    margin-bottom     : -60% !important;
  }

  .md\:hover\:-ml-3\/5:hover{
    margin-left     : -60% !important;
  }

  .md\:hover\:-mt-4\/5:hover{
    margin-top     : -80% !important;
  }

  .md\:hover\:-mr-4\/5:hover{
    margin-right     : -80% !important;
  }

  .md\:hover\:-mb-4\/5:hover{
    margin-bottom     : -80% !important;
  }

  .md\:hover\:-ml-4\/5:hover{
    margin-left     : -80% !important;
  }

  .md\:hover\:-mt-1\/6:hover{
    margin-top     : -16.66667% !important;
  }

  .md\:hover\:-mr-1\/6:hover{
    margin-right     : -16.66667% !important;
  }

  .md\:hover\:-mb-1\/6:hover{
    margin-bottom     : -16.66667% !important;
  }

  .md\:hover\:-ml-1\/6:hover{
    margin-left     : -16.66667% !important;
  }

  .md\:hover\:-mt-2\/6:hover{
    margin-top     : -33.33333% !important;
  }

  .md\:hover\:-mr-2\/6:hover{
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-mb-2\/6:hover{
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-ml-2\/6:hover{
    margin-left     : -33.33333% !important;
  }

  .md\:hover\:-mt-3\/6:hover{
    margin-top     : -50% !important;
  }

  .md\:hover\:-mr-3\/6:hover{
    margin-right     : -50% !important;
  }

  .md\:hover\:-mb-3\/6:hover{
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-ml-3\/6:hover{
    margin-left     : -50% !important;
  }

  .md\:hover\:-mt-4\/6:hover{
    margin-top     : -66.66667% !important;
  }

  .md\:hover\:-mr-4\/6:hover{
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-mb-4\/6:hover{
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-ml-4\/6:hover{
    margin-left     : -66.66667% !important;
  }

  .md\:hover\:-mt-5\/6:hover{
    margin-top     : -83.33333% !important;
  }

  .md\:hover\:-mr-5\/6:hover{
    margin-right     : -83.33333% !important;
  }

  .md\:hover\:-mb-5\/6:hover{
    margin-bottom     : -83.33333% !important;
  }

  .md\:hover\:-ml-5\/6:hover{
    margin-left     : -83.33333% !important;
  }

  .md\:hover\:-mt-1\/12:hover{
    margin-top     : -8.33333% !important;
  }

  .md\:hover\:-mr-1\/12:hover{
    margin-right     : -8.33333% !important;
  }

  .md\:hover\:-mb-1\/12:hover{
    margin-bottom     : -8.33333% !important;
  }

  .md\:hover\:-ml-1\/12:hover{
    margin-left     : -8.33333% !important;
  }

  .md\:hover\:-mt-2\/12:hover{
    margin-top     : -16.66667% !important;
  }

  .md\:hover\:-mr-2\/12:hover{
    margin-right     : -16.66667% !important;
  }

  .md\:hover\:-mb-2\/12:hover{
    margin-bottom     : -16.66667% !important;
  }

  .md\:hover\:-ml-2\/12:hover{
    margin-left     : -16.66667% !important;
  }

  .md\:hover\:-mt-3\/12:hover{
    margin-top     : -25% !important;
  }

  .md\:hover\:-mr-3\/12:hover{
    margin-right     : -25% !important;
  }

  .md\:hover\:-mb-3\/12:hover{
    margin-bottom     : -25% !important;
  }

  .md\:hover\:-ml-3\/12:hover{
    margin-left     : -25% !important;
  }

  .md\:hover\:-mt-4\/12:hover{
    margin-top     : -33.33333% !important;
  }

  .md\:hover\:-mr-4\/12:hover{
    margin-right     : -33.33333% !important;
  }

  .md\:hover\:-mb-4\/12:hover{
    margin-bottom     : -33.33333% !important;
  }

  .md\:hover\:-ml-4\/12:hover{
    margin-left     : -33.33333% !important;
  }

  .md\:hover\:-mt-5\/12:hover{
    margin-top     : -41.66667% !important;
  }

  .md\:hover\:-mr-5\/12:hover{
    margin-right     : -41.66667% !important;
  }

  .md\:hover\:-mb-5\/12:hover{
    margin-bottom     : -41.66667% !important;
  }

  .md\:hover\:-ml-5\/12:hover{
    margin-left     : -41.66667% !important;
  }

  .md\:hover\:-mt-6\/12:hover{
    margin-top     : -50% !important;
  }

  .md\:hover\:-mr-6\/12:hover{
    margin-right     : -50% !important;
  }

  .md\:hover\:-mb-6\/12:hover{
    margin-bottom     : -50% !important;
  }

  .md\:hover\:-ml-6\/12:hover{
    margin-left     : -50% !important;
  }

  .md\:hover\:-mt-7\/12:hover{
    margin-top     : -58.33333% !important;
  }

  .md\:hover\:-mr-7\/12:hover{
    margin-right     : -58.33333% !important;
  }

  .md\:hover\:-mb-7\/12:hover{
    margin-bottom     : -58.33333% !important;
  }

  .md\:hover\:-ml-7\/12:hover{
    margin-left     : -58.33333% !important;
  }

  .md\:hover\:-mt-8\/12:hover{
    margin-top     : -66.66667% !important;
  }

  .md\:hover\:-mr-8\/12:hover{
    margin-right     : -66.66667% !important;
  }

  .md\:hover\:-mb-8\/12:hover{
    margin-bottom     : -66.66667% !important;
  }

  .md\:hover\:-ml-8\/12:hover{
    margin-left     : -66.66667% !important;
  }

  .md\:hover\:-mt-9\/12:hover{
    margin-top     : -75% !important;
  }

  .md\:hover\:-mr-9\/12:hover{
    margin-right     : -75% !important;
  }

  .md\:hover\:-mb-9\/12:hover{
    margin-bottom     : -75% !important;
  }

  .md\:hover\:-ml-9\/12:hover{
    margin-left     : -75% !important;
  }

  .md\:hover\:-mt-10\/12:hover{
    margin-top     : -83.33333% !important;
  }

  .md\:hover\:-mr-10\/12:hover{
    margin-right     : -83.33333% !important;
  }

  .md\:hover\:-mb-10\/12:hover{
    margin-bottom     : -83.33333% !important;
  }

  .md\:hover\:-ml-10\/12:hover{
    margin-left     : -83.33333% !important;
  }

  .md\:hover\:-mt-11\/12:hover{
    margin-top     : -91.66667% !important;
  }

  .md\:hover\:-mr-11\/12:hover{
    margin-right     : -91.66667% !important;
  }

  .md\:hover\:-mb-11\/12:hover{
    margin-bottom     : -91.66667% !important;
  }

  .md\:hover\:-ml-11\/12:hover{
    margin-left     : -91.66667% !important;
  }

  .md\:hover\:-mt-full:hover{
    margin-top     : -100% !important;
  }

  .md\:hover\:-mr-full:hover{
    margin-right     : -100% !important;
  }

  .md\:hover\:-mb-full:hover{
    margin-bottom     : -100% !important;
  }

  .md\:hover\:-ml-full:hover{
    margin-left     : -100% !important;
  }

  .md\:focus\:m-0:focus{
    margin     : 0 !important;
  }

  .md\:focus\:m-1:focus{
    margin     : 0.25rem !important;
  }

  .md\:focus\:m-2:focus{
    margin     : 0.5rem !important;
  }

  .md\:focus\:m-3:focus{
    margin     : 0.75rem !important;
  }

  .md\:focus\:m-4:focus{
    margin     : 1rem !important;
  }

  .md\:focus\:m-5:focus{
    margin     : 1.25rem !important;
  }

  .md\:focus\:m-6:focus{
    margin     : 1.5rem !important;
  }

  .md\:focus\:m-7:focus{
    margin     : 1.75rem !important;
  }

  .md\:focus\:m-8:focus{
    margin     : 2rem !important;
  }

  .md\:focus\:m-9:focus{
    margin     : 2.25rem !important;
  }

  .md\:focus\:m-10:focus{
    margin     : 2.5rem !important;
  }

  .md\:focus\:m-11:focus{
    margin     : 2.75rem !important;
  }

  .md\:focus\:m-12:focus{
    margin     : 3rem !important;
  }

  .md\:focus\:m-13:focus{
    margin     : 3.25rem !important;
  }

  .md\:focus\:m-14:focus{
    margin     : 3.5rem !important;
  }

  .md\:focus\:m-15:focus{
    margin     : 3.75rem !important;
  }

  .md\:focus\:m-16:focus{
    margin     : 4rem !important;
  }

  .md\:focus\:m-20:focus{
    margin     : 5rem !important;
  }

  .md\:focus\:m-24:focus{
    margin     : 6rem !important;
  }

  .md\:focus\:m-28:focus{
    margin     : 7rem !important;
  }

  .md\:focus\:m-32:focus{
    margin     : 8rem !important;
  }

  .md\:focus\:m-36:focus{
    margin     : 9rem !important;
  }

  .md\:focus\:m-40:focus{
    margin     : 10rem !important;
  }

  .md\:focus\:m-44:focus{
    margin     : 11rem !important;
  }

  .md\:focus\:m-48:focus{
    margin     : 12rem !important;
  }

  .md\:focus\:m-52:focus{
    margin     : 13rem !important;
  }

  .md\:focus\:m-56:focus{
    margin     : 14rem !important;
  }

  .md\:focus\:m-60:focus{
    margin     : 15rem !important;
  }

  .md\:focus\:m-64:focus{
    margin     : 16rem !important;
  }

  .md\:focus\:m-72:focus{
    margin     : 18rem !important;
  }

  .md\:focus\:m-80:focus{
    margin     : 20rem !important;
  }

  .md\:focus\:m-96:focus{
    margin     : 24rem !important;
  }

  .md\:focus\:m-auto:focus{
    margin     : auto !important;
  }

  .md\:focus\:m-px:focus{
    margin     : 1px !important;
  }

  .md\:focus\:m-0\.5:focus{
    margin     : 0.125rem !important;
  }

  .md\:focus\:m-1\.5:focus{
    margin     : 0.375rem !important;
  }

  .md\:focus\:m-2\.5:focus{
    margin     : 0.625rem !important;
  }

  .md\:focus\:m-3\.5:focus{
    margin     : 0.875rem !important;
  }

  .md\:focus\:m-1\/2:focus{
    margin     : 50% !important;
  }

  .md\:focus\:m-1\/3:focus{
    margin     : 33.333333% !important;
  }

  .md\:focus\:m-2\/3:focus{
    margin     : 66.666667% !important;
  }

  .md\:focus\:m-1\/4:focus{
    margin     : 25% !important;
  }

  .md\:focus\:m-2\/4:focus{
    margin     : 50% !important;
  }

  .md\:focus\:m-3\/4:focus{
    margin     : 75% !important;
  }

  .md\:focus\:m-1\/5:focus{
    margin     : 20% !important;
  }

  .md\:focus\:m-2\/5:focus{
    margin     : 40% !important;
  }

  .md\:focus\:m-3\/5:focus{
    margin     : 60% !important;
  }

  .md\:focus\:m-4\/5:focus{
    margin     : 80% !important;
  }

  .md\:focus\:m-1\/6:focus{
    margin     : 16.666667% !important;
  }

  .md\:focus\:m-2\/6:focus{
    margin     : 33.333333% !important;
  }

  .md\:focus\:m-3\/6:focus{
    margin     : 50% !important;
  }

  .md\:focus\:m-4\/6:focus{
    margin     : 66.666667% !important;
  }

  .md\:focus\:m-5\/6:focus{
    margin     : 83.333333% !important;
  }

  .md\:focus\:m-1\/12:focus{
    margin     : 8.333333% !important;
  }

  .md\:focus\:m-2\/12:focus{
    margin     : 16.666667% !important;
  }

  .md\:focus\:m-3\/12:focus{
    margin     : 25% !important;
  }

  .md\:focus\:m-4\/12:focus{
    margin     : 33.333333% !important;
  }

  .md\:focus\:m-5\/12:focus{
    margin     : 41.666667% !important;
  }

  .md\:focus\:m-6\/12:focus{
    margin     : 50% !important;
  }

  .md\:focus\:m-7\/12:focus{
    margin     : 58.333333% !important;
  }

  .md\:focus\:m-8\/12:focus{
    margin     : 66.666667% !important;
  }

  .md\:focus\:m-9\/12:focus{
    margin     : 75% !important;
  }

  .md\:focus\:m-10\/12:focus{
    margin     : 83.333333% !important;
  }

  .md\:focus\:m-11\/12:focus{
    margin     : 91.666667% !important;
  }

  .md\:focus\:m-full:focus{
    margin     : 100% !important;
  }

  .md\:focus\:-m-1:focus{
    margin     : -0.25rem !important;
  }

  .md\:focus\:-m-2:focus{
    margin     : -0.5rem !important;
  }

  .md\:focus\:-m-3:focus{
    margin     : -0.75rem !important;
  }

  .md\:focus\:-m-4:focus{
    margin     : -1rem !important;
  }

  .md\:focus\:-m-5:focus{
    margin     : -1.25rem !important;
  }

  .md\:focus\:-m-6:focus{
    margin     : -1.5rem !important;
  }

  .md\:focus\:-m-7:focus{
    margin     : -1.75rem !important;
  }

  .md\:focus\:-m-8:focus{
    margin     : -2rem !important;
  }

  .md\:focus\:-m-9:focus{
    margin     : -2.25rem !important;
  }

  .md\:focus\:-m-10:focus{
    margin     : -2.5rem !important;
  }

  .md\:focus\:-m-11:focus{
    margin     : -2.75rem !important;
  }

  .md\:focus\:-m-12:focus{
    margin     : -3rem !important;
  }

  .md\:focus\:-m-13:focus{
    margin     : -3.25rem !important;
  }

  .md\:focus\:-m-14:focus{
    margin     : -3.5rem !important;
  }

  .md\:focus\:-m-15:focus{
    margin     : -3.75rem !important;
  }

  .md\:focus\:-m-16:focus{
    margin     : -4rem !important;
  }

  .md\:focus\:-m-20:focus{
    margin     : -5rem !important;
  }

  .md\:focus\:-m-24:focus{
    margin     : -6rem !important;
  }

  .md\:focus\:-m-28:focus{
    margin     : -7rem !important;
  }

  .md\:focus\:-m-32:focus{
    margin     : -8rem !important;
  }

  .md\:focus\:-m-36:focus{
    margin     : -9rem !important;
  }

  .md\:focus\:-m-40:focus{
    margin     : -10rem !important;
  }

  .md\:focus\:-m-44:focus{
    margin     : -11rem !important;
  }

  .md\:focus\:-m-48:focus{
    margin     : -12rem !important;
  }

  .md\:focus\:-m-52:focus{
    margin     : -13rem !important;
  }

  .md\:focus\:-m-56:focus{
    margin     : -14rem !important;
  }

  .md\:focus\:-m-60:focus{
    margin     : -15rem !important;
  }

  .md\:focus\:-m-64:focus{
    margin     : -16rem !important;
  }

  .md\:focus\:-m-72:focus{
    margin     : -18rem !important;
  }

  .md\:focus\:-m-80:focus{
    margin     : -20rem !important;
  }

  .md\:focus\:-m-96:focus{
    margin     : -24rem !important;
  }

  .md\:focus\:-m-px:focus{
    margin     : -1px !important;
  }

  .md\:focus\:-m-0\.5:focus{
    margin     : -0.125rem !important;
  }

  .md\:focus\:-m-1\.5:focus{
    margin     : -0.375rem !important;
  }

  .md\:focus\:-m-2\.5:focus{
    margin     : -0.625rem !important;
  }

  .md\:focus\:-m-3\.5:focus{
    margin     : -0.875rem !important;
  }

  .md\:focus\:-m-1\/2:focus{
    margin     : -50% !important;
  }

  .md\:focus\:-m-1\/3:focus{
    margin     : -33.33333% !important;
  }

  .md\:focus\:-m-2\/3:focus{
    margin     : -66.66667% !important;
  }

  .md\:focus\:-m-1\/4:focus{
    margin     : -25% !important;
  }

  .md\:focus\:-m-2\/4:focus{
    margin     : -50% !important;
  }

  .md\:focus\:-m-3\/4:focus{
    margin     : -75% !important;
  }

  .md\:focus\:-m-1\/5:focus{
    margin     : -20% !important;
  }

  .md\:focus\:-m-2\/5:focus{
    margin     : -40% !important;
  }

  .md\:focus\:-m-3\/5:focus{
    margin     : -60% !important;
  }

  .md\:focus\:-m-4\/5:focus{
    margin     : -80% !important;
  }

  .md\:focus\:-m-1\/6:focus{
    margin     : -16.66667% !important;
  }

  .md\:focus\:-m-2\/6:focus{
    margin     : -33.33333% !important;
  }

  .md\:focus\:-m-3\/6:focus{
    margin     : -50% !important;
  }

  .md\:focus\:-m-4\/6:focus{
    margin     : -66.66667% !important;
  }

  .md\:focus\:-m-5\/6:focus{
    margin     : -83.33333% !important;
  }

  .md\:focus\:-m-1\/12:focus{
    margin     : -8.33333% !important;
  }

  .md\:focus\:-m-2\/12:focus{
    margin     : -16.66667% !important;
  }

  .md\:focus\:-m-3\/12:focus{
    margin     : -25% !important;
  }

  .md\:focus\:-m-4\/12:focus{
    margin     : -33.33333% !important;
  }

  .md\:focus\:-m-5\/12:focus{
    margin     : -41.66667% !important;
  }

  .md\:focus\:-m-6\/12:focus{
    margin     : -50% !important;
  }

  .md\:focus\:-m-7\/12:focus{
    margin     : -58.33333% !important;
  }

  .md\:focus\:-m-8\/12:focus{
    margin     : -66.66667% !important;
  }

  .md\:focus\:-m-9\/12:focus{
    margin     : -75% !important;
  }

  .md\:focus\:-m-10\/12:focus{
    margin     : -83.33333% !important;
  }

  .md\:focus\:-m-11\/12:focus{
    margin     : -91.66667% !important;
  }

  .md\:focus\:-m-full:focus{
    margin     : -100% !important;
  }

  .md\:focus\:my-0:focus{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .md\:focus\:mx-0:focus{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .md\:focus\:my-1:focus{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .md\:focus\:mx-1:focus{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .md\:focus\:my-2:focus{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .md\:focus\:mx-2:focus{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .md\:focus\:my-3:focus{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .md\:focus\:mx-3:focus{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .md\:focus\:my-4:focus{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .md\:focus\:mx-4:focus{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .md\:focus\:my-5:focus{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .md\:focus\:mx-5:focus{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .md\:focus\:my-6:focus{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .md\:focus\:mx-6:focus{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .md\:focus\:my-7:focus{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .md\:focus\:mx-7:focus{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .md\:focus\:my-8:focus{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .md\:focus\:mx-8:focus{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .md\:focus\:my-9:focus{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .md\:focus\:mx-9:focus{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .md\:focus\:my-10:focus{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .md\:focus\:mx-10:focus{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .md\:focus\:my-11:focus{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .md\:focus\:mx-11:focus{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .md\:focus\:my-12:focus{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .md\:focus\:mx-12:focus{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .md\:focus\:my-13:focus{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .md\:focus\:mx-13:focus{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .md\:focus\:my-14:focus{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .md\:focus\:mx-14:focus{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .md\:focus\:my-15:focus{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .md\:focus\:mx-15:focus{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .md\:focus\:my-16:focus{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .md\:focus\:mx-16:focus{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .md\:focus\:my-20:focus{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .md\:focus\:mx-20:focus{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .md\:focus\:my-24:focus{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .md\:focus\:mx-24:focus{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .md\:focus\:my-28:focus{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .md\:focus\:mx-28:focus{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .md\:focus\:my-32:focus{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .md\:focus\:mx-32:focus{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .md\:focus\:my-36:focus{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .md\:focus\:mx-36:focus{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .md\:focus\:my-40:focus{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .md\:focus\:mx-40:focus{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .md\:focus\:my-44:focus{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .md\:focus\:mx-44:focus{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .md\:focus\:my-48:focus{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .md\:focus\:mx-48:focus{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .md\:focus\:my-52:focus{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .md\:focus\:mx-52:focus{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .md\:focus\:my-56:focus{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .md\:focus\:mx-56:focus{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .md\:focus\:my-60:focus{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .md\:focus\:mx-60:focus{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .md\:focus\:my-64:focus{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .md\:focus\:mx-64:focus{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .md\:focus\:my-72:focus{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .md\:focus\:mx-72:focus{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .md\:focus\:my-80:focus{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .md\:focus\:mx-80:focus{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .md\:focus\:my-96:focus{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .md\:focus\:mx-96:focus{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .md\:focus\:my-auto:focus{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .md\:focus\:mx-auto:focus{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .md\:focus\:my-px:focus{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .md\:focus\:mx-px:focus{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .md\:focus\:my-0\.5:focus{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .md\:focus\:mx-0\.5:focus{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .md\:focus\:my-1\.5:focus{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .md\:focus\:mx-1\.5:focus{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .md\:focus\:my-2\.5:focus{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .md\:focus\:mx-2\.5:focus{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .md\:focus\:my-3\.5:focus{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .md\:focus\:mx-3\.5:focus{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .md\:focus\:my-1\/2:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:focus\:mx-1\/2:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:focus\:my-1\/3:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:mx-1\/3:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:my-2\/3:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:mx-2\/3:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:my-1\/4:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .md\:focus\:mx-1\/4:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .md\:focus\:my-2\/4:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:focus\:mx-2\/4:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:focus\:my-3\/4:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .md\:focus\:mx-3\/4:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .md\:focus\:my-1\/5:focus{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .md\:focus\:mx-1\/5:focus{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .md\:focus\:my-2\/5:focus{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .md\:focus\:mx-2\/5:focus{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .md\:focus\:my-3\/5:focus{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .md\:focus\:mx-3\/5:focus{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .md\:focus\:my-4\/5:focus{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .md\:focus\:mx-4\/5:focus{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .md\:focus\:my-1\/6:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .md\:focus\:mx-1\/6:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .md\:focus\:my-2\/6:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:mx-2\/6:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:my-3\/6:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:focus\:mx-3\/6:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:focus\:my-4\/6:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:mx-4\/6:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:my-5\/6:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .md\:focus\:mx-5\/6:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .md\:focus\:my-1\/12:focus{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .md\:focus\:mx-1\/12:focus{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .md\:focus\:my-2\/12:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .md\:focus\:mx-2\/12:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .md\:focus\:my-3\/12:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .md\:focus\:mx-3\/12:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .md\:focus\:my-4\/12:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:mx-4\/12:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:my-5\/12:focus{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .md\:focus\:mx-5\/12:focus{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .md\:focus\:my-6\/12:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .md\:focus\:mx-6\/12:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .md\:focus\:my-7\/12:focus{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .md\:focus\:mx-7\/12:focus{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .md\:focus\:my-8\/12:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:mx-8\/12:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:my-9\/12:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .md\:focus\:mx-9\/12:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .md\:focus\:my-10\/12:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .md\:focus\:mx-10\/12:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .md\:focus\:my-11\/12:focus{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .md\:focus\:mx-11\/12:focus{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .md\:focus\:my-full:focus{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .md\:focus\:mx-full:focus{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .md\:focus\:-my-1:focus{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .md\:focus\:-mx-1:focus{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .md\:focus\:-my-2:focus{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .md\:focus\:-mx-2:focus{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .md\:focus\:-my-3:focus{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .md\:focus\:-mx-3:focus{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .md\:focus\:-my-4:focus{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .md\:focus\:-mx-4:focus{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .md\:focus\:-my-5:focus{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .md\:focus\:-mx-5:focus{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .md\:focus\:-my-6:focus{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .md\:focus\:-mx-6:focus{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .md\:focus\:-my-7:focus{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .md\:focus\:-mx-7:focus{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .md\:focus\:-my-8:focus{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .md\:focus\:-mx-8:focus{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .md\:focus\:-my-9:focus{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .md\:focus\:-mx-9:focus{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .md\:focus\:-my-10:focus{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .md\:focus\:-mx-10:focus{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .md\:focus\:-my-11:focus{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .md\:focus\:-mx-11:focus{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .md\:focus\:-my-12:focus{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .md\:focus\:-mx-12:focus{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .md\:focus\:-my-13:focus{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .md\:focus\:-mx-13:focus{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .md\:focus\:-my-14:focus{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .md\:focus\:-mx-14:focus{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .md\:focus\:-my-15:focus{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .md\:focus\:-mx-15:focus{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .md\:focus\:-my-16:focus{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .md\:focus\:-mx-16:focus{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .md\:focus\:-my-20:focus{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .md\:focus\:-mx-20:focus{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .md\:focus\:-my-24:focus{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .md\:focus\:-mx-24:focus{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .md\:focus\:-my-28:focus{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .md\:focus\:-mx-28:focus{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .md\:focus\:-my-32:focus{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .md\:focus\:-mx-32:focus{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .md\:focus\:-my-36:focus{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .md\:focus\:-mx-36:focus{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .md\:focus\:-my-40:focus{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .md\:focus\:-mx-40:focus{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .md\:focus\:-my-44:focus{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .md\:focus\:-mx-44:focus{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .md\:focus\:-my-48:focus{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .md\:focus\:-mx-48:focus{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .md\:focus\:-my-52:focus{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .md\:focus\:-mx-52:focus{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .md\:focus\:-my-56:focus{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .md\:focus\:-mx-56:focus{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .md\:focus\:-my-60:focus{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .md\:focus\:-mx-60:focus{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .md\:focus\:-my-64:focus{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .md\:focus\:-mx-64:focus{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .md\:focus\:-my-72:focus{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .md\:focus\:-mx-72:focus{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .md\:focus\:-my-80:focus{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .md\:focus\:-mx-80:focus{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .md\:focus\:-my-96:focus{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .md\:focus\:-mx-96:focus{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .md\:focus\:-my-px:focus{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .md\:focus\:-mx-px:focus{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .md\:focus\:-my-0\.5:focus{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .md\:focus\:-mx-0\.5:focus{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .md\:focus\:-my-1\.5:focus{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .md\:focus\:-mx-1\.5:focus{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .md\:focus\:-my-2\.5:focus{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .md\:focus\:-mx-2\.5:focus{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .md\:focus\:-my-3\.5:focus{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .md\:focus\:-mx-3\.5:focus{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .md\:focus\:-my-1\/2:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-mx-1\/2:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:focus\:-my-1\/3:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-mx-1\/3:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-my-2\/3:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-mx-2\/3:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-my-1\/4:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .md\:focus\:-mx-1\/4:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .md\:focus\:-my-2\/4:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-mx-2\/4:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:focus\:-my-3\/4:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .md\:focus\:-mx-3\/4:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .md\:focus\:-my-1\/5:focus{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .md\:focus\:-mx-1\/5:focus{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .md\:focus\:-my-2\/5:focus{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .md\:focus\:-mx-2\/5:focus{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .md\:focus\:-my-3\/5:focus{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .md\:focus\:-mx-3\/5:focus{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .md\:focus\:-my-4\/5:focus{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .md\:focus\:-mx-4\/5:focus{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .md\:focus\:-my-1\/6:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .md\:focus\:-mx-1\/6:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .md\:focus\:-my-2\/6:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-mx-2\/6:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-my-3\/6:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-mx-3\/6:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:focus\:-my-4\/6:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-mx-4\/6:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-my-5\/6:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .md\:focus\:-mx-5\/6:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .md\:focus\:-my-1\/12:focus{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .md\:focus\:-mx-1\/12:focus{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .md\:focus\:-my-2\/12:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .md\:focus\:-mx-2\/12:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .md\:focus\:-my-3\/12:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .md\:focus\:-mx-3\/12:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .md\:focus\:-my-4\/12:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-mx-4\/12:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-my-5\/12:focus{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .md\:focus\:-mx-5\/12:focus{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .md\:focus\:-my-6\/12:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-mx-6\/12:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .md\:focus\:-my-7\/12:focus{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .md\:focus\:-mx-7\/12:focus{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .md\:focus\:-my-8\/12:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-mx-8\/12:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-my-9\/12:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .md\:focus\:-mx-9\/12:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .md\:focus\:-my-10\/12:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .md\:focus\:-mx-10\/12:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .md\:focus\:-my-11\/12:focus{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .md\:focus\:-mx-11\/12:focus{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .md\:focus\:-my-full:focus{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .md\:focus\:-mx-full:focus{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .md\:focus\:mt-0:focus{
    margin-top     : 0 !important;
  }

  .md\:focus\:mr-0:focus{
    margin-right     : 0 !important;
  }

  .md\:focus\:mb-0:focus{
    margin-bottom     : 0 !important;
  }

  .md\:focus\:ml-0:focus{
    margin-left     : 0 !important;
  }

  .md\:focus\:mt-1:focus{
    margin-top     : 0.25rem !important;
  }

  .md\:focus\:mr-1:focus{
    margin-right     : 0.25rem !important;
  }

  .md\:focus\:mb-1:focus{
    margin-bottom     : 0.25rem !important;
  }

  .md\:focus\:ml-1:focus{
    margin-left     : 0.25rem !important;
  }

  .md\:focus\:mt-2:focus{
    margin-top     : 0.5rem !important;
  }

  .md\:focus\:mr-2:focus{
    margin-right     : 0.5rem !important;
  }

  .md\:focus\:mb-2:focus{
    margin-bottom     : 0.5rem !important;
  }

  .md\:focus\:ml-2:focus{
    margin-left     : 0.5rem !important;
  }

  .md\:focus\:mt-3:focus{
    margin-top     : 0.75rem !important;
  }

  .md\:focus\:mr-3:focus{
    margin-right     : 0.75rem !important;
  }

  .md\:focus\:mb-3:focus{
    margin-bottom     : 0.75rem !important;
  }

  .md\:focus\:ml-3:focus{
    margin-left     : 0.75rem !important;
  }

  .md\:focus\:mt-4:focus{
    margin-top     : 1rem !important;
  }

  .md\:focus\:mr-4:focus{
    margin-right     : 1rem !important;
  }

  .md\:focus\:mb-4:focus{
    margin-bottom     : 1rem !important;
  }

  .md\:focus\:ml-4:focus{
    margin-left     : 1rem !important;
  }

  .md\:focus\:mt-5:focus{
    margin-top     : 1.25rem !important;
  }

  .md\:focus\:mr-5:focus{
    margin-right     : 1.25rem !important;
  }

  .md\:focus\:mb-5:focus{
    margin-bottom     : 1.25rem !important;
  }

  .md\:focus\:ml-5:focus{
    margin-left     : 1.25rem !important;
  }

  .md\:focus\:mt-6:focus{
    margin-top     : 1.5rem !important;
  }

  .md\:focus\:mr-6:focus{
    margin-right     : 1.5rem !important;
  }

  .md\:focus\:mb-6:focus{
    margin-bottom     : 1.5rem !important;
  }

  .md\:focus\:ml-6:focus{
    margin-left     : 1.5rem !important;
  }

  .md\:focus\:mt-7:focus{
    margin-top     : 1.75rem !important;
  }

  .md\:focus\:mr-7:focus{
    margin-right     : 1.75rem !important;
  }

  .md\:focus\:mb-7:focus{
    margin-bottom     : 1.75rem !important;
  }

  .md\:focus\:ml-7:focus{
    margin-left     : 1.75rem !important;
  }

  .md\:focus\:mt-8:focus{
    margin-top     : 2rem !important;
  }

  .md\:focus\:mr-8:focus{
    margin-right     : 2rem !important;
  }

  .md\:focus\:mb-8:focus{
    margin-bottom     : 2rem !important;
  }

  .md\:focus\:ml-8:focus{
    margin-left     : 2rem !important;
  }

  .md\:focus\:mt-9:focus{
    margin-top     : 2.25rem !important;
  }

  .md\:focus\:mr-9:focus{
    margin-right     : 2.25rem !important;
  }

  .md\:focus\:mb-9:focus{
    margin-bottom     : 2.25rem !important;
  }

  .md\:focus\:ml-9:focus{
    margin-left     : 2.25rem !important;
  }

  .md\:focus\:mt-10:focus{
    margin-top     : 2.5rem !important;
  }

  .md\:focus\:mr-10:focus{
    margin-right     : 2.5rem !important;
  }

  .md\:focus\:mb-10:focus{
    margin-bottom     : 2.5rem !important;
  }

  .md\:focus\:ml-10:focus{
    margin-left     : 2.5rem !important;
  }

  .md\:focus\:mt-11:focus{
    margin-top     : 2.75rem !important;
  }

  .md\:focus\:mr-11:focus{
    margin-right     : 2.75rem !important;
  }

  .md\:focus\:mb-11:focus{
    margin-bottom     : 2.75rem !important;
  }

  .md\:focus\:ml-11:focus{
    margin-left     : 2.75rem !important;
  }

  .md\:focus\:mt-12:focus{
    margin-top     : 3rem !important;
  }

  .md\:focus\:mr-12:focus{
    margin-right     : 3rem !important;
  }

  .md\:focus\:mb-12:focus{
    margin-bottom     : 3rem !important;
  }

  .md\:focus\:ml-12:focus{
    margin-left     : 3rem !important;
  }

  .md\:focus\:mt-13:focus{
    margin-top     : 3.25rem !important;
  }

  .md\:focus\:mr-13:focus{
    margin-right     : 3.25rem !important;
  }

  .md\:focus\:mb-13:focus{
    margin-bottom     : 3.25rem !important;
  }

  .md\:focus\:ml-13:focus{
    margin-left     : 3.25rem !important;
  }

  .md\:focus\:mt-14:focus{
    margin-top     : 3.5rem !important;
  }

  .md\:focus\:mr-14:focus{
    margin-right     : 3.5rem !important;
  }

  .md\:focus\:mb-14:focus{
    margin-bottom     : 3.5rem !important;
  }

  .md\:focus\:ml-14:focus{
    margin-left     : 3.5rem !important;
  }

  .md\:focus\:mt-15:focus{
    margin-top     : 3.75rem !important;
  }

  .md\:focus\:mr-15:focus{
    margin-right     : 3.75rem !important;
  }

  .md\:focus\:mb-15:focus{
    margin-bottom     : 3.75rem !important;
  }

  .md\:focus\:ml-15:focus{
    margin-left     : 3.75rem !important;
  }

  .md\:focus\:mt-16:focus{
    margin-top     : 4rem !important;
  }

  .md\:focus\:mr-16:focus{
    margin-right     : 4rem !important;
  }

  .md\:focus\:mb-16:focus{
    margin-bottom     : 4rem !important;
  }

  .md\:focus\:ml-16:focus{
    margin-left     : 4rem !important;
  }

  .md\:focus\:mt-20:focus{
    margin-top     : 5rem !important;
  }

  .md\:focus\:mr-20:focus{
    margin-right     : 5rem !important;
  }

  .md\:focus\:mb-20:focus{
    margin-bottom     : 5rem !important;
  }

  .md\:focus\:ml-20:focus{
    margin-left     : 5rem !important;
  }

  .md\:focus\:mt-24:focus{
    margin-top     : 6rem !important;
  }

  .md\:focus\:mr-24:focus{
    margin-right     : 6rem !important;
  }

  .md\:focus\:mb-24:focus{
    margin-bottom     : 6rem !important;
  }

  .md\:focus\:ml-24:focus{
    margin-left     : 6rem !important;
  }

  .md\:focus\:mt-28:focus{
    margin-top     : 7rem !important;
  }

  .md\:focus\:mr-28:focus{
    margin-right     : 7rem !important;
  }

  .md\:focus\:mb-28:focus{
    margin-bottom     : 7rem !important;
  }

  .md\:focus\:ml-28:focus{
    margin-left     : 7rem !important;
  }

  .md\:focus\:mt-32:focus{
    margin-top     : 8rem !important;
  }

  .md\:focus\:mr-32:focus{
    margin-right     : 8rem !important;
  }

  .md\:focus\:mb-32:focus{
    margin-bottom     : 8rem !important;
  }

  .md\:focus\:ml-32:focus{
    margin-left     : 8rem !important;
  }

  .md\:focus\:mt-36:focus{
    margin-top     : 9rem !important;
  }

  .md\:focus\:mr-36:focus{
    margin-right     : 9rem !important;
  }

  .md\:focus\:mb-36:focus{
    margin-bottom     : 9rem !important;
  }

  .md\:focus\:ml-36:focus{
    margin-left     : 9rem !important;
  }

  .md\:focus\:mt-40:focus{
    margin-top     : 10rem !important;
  }

  .md\:focus\:mr-40:focus{
    margin-right     : 10rem !important;
  }

  .md\:focus\:mb-40:focus{
    margin-bottom     : 10rem !important;
  }

  .md\:focus\:ml-40:focus{
    margin-left     : 10rem !important;
  }

  .md\:focus\:mt-44:focus{
    margin-top     : 11rem !important;
  }

  .md\:focus\:mr-44:focus{
    margin-right     : 11rem !important;
  }

  .md\:focus\:mb-44:focus{
    margin-bottom     : 11rem !important;
  }

  .md\:focus\:ml-44:focus{
    margin-left     : 11rem !important;
  }

  .md\:focus\:mt-48:focus{
    margin-top     : 12rem !important;
  }

  .md\:focus\:mr-48:focus{
    margin-right     : 12rem !important;
  }

  .md\:focus\:mb-48:focus{
    margin-bottom     : 12rem !important;
  }

  .md\:focus\:ml-48:focus{
    margin-left     : 12rem !important;
  }

  .md\:focus\:mt-52:focus{
    margin-top     : 13rem !important;
  }

  .md\:focus\:mr-52:focus{
    margin-right     : 13rem !important;
  }

  .md\:focus\:mb-52:focus{
    margin-bottom     : 13rem !important;
  }

  .md\:focus\:ml-52:focus{
    margin-left     : 13rem !important;
  }

  .md\:focus\:mt-56:focus{
    margin-top     : 14rem !important;
  }

  .md\:focus\:mr-56:focus{
    margin-right     : 14rem !important;
  }

  .md\:focus\:mb-56:focus{
    margin-bottom     : 14rem !important;
  }

  .md\:focus\:ml-56:focus{
    margin-left     : 14rem !important;
  }

  .md\:focus\:mt-60:focus{
    margin-top     : 15rem !important;
  }

  .md\:focus\:mr-60:focus{
    margin-right     : 15rem !important;
  }

  .md\:focus\:mb-60:focus{
    margin-bottom     : 15rem !important;
  }

  .md\:focus\:ml-60:focus{
    margin-left     : 15rem !important;
  }

  .md\:focus\:mt-64:focus{
    margin-top     : 16rem !important;
  }

  .md\:focus\:mr-64:focus{
    margin-right     : 16rem !important;
  }

  .md\:focus\:mb-64:focus{
    margin-bottom     : 16rem !important;
  }

  .md\:focus\:ml-64:focus{
    margin-left     : 16rem !important;
  }

  .md\:focus\:mt-72:focus{
    margin-top     : 18rem !important;
  }

  .md\:focus\:mr-72:focus{
    margin-right     : 18rem !important;
  }

  .md\:focus\:mb-72:focus{
    margin-bottom     : 18rem !important;
  }

  .md\:focus\:ml-72:focus{
    margin-left     : 18rem !important;
  }

  .md\:focus\:mt-80:focus{
    margin-top     : 20rem !important;
  }

  .md\:focus\:mr-80:focus{
    margin-right     : 20rem !important;
  }

  .md\:focus\:mb-80:focus{
    margin-bottom     : 20rem !important;
  }

  .md\:focus\:ml-80:focus{
    margin-left     : 20rem !important;
  }

  .md\:focus\:mt-96:focus{
    margin-top     : 24rem !important;
  }

  .md\:focus\:mr-96:focus{
    margin-right     : 24rem !important;
  }

  .md\:focus\:mb-96:focus{
    margin-bottom     : 24rem !important;
  }

  .md\:focus\:ml-96:focus{
    margin-left     : 24rem !important;
  }

  .md\:focus\:mt-auto:focus{
    margin-top     : auto !important;
  }

  .md\:focus\:mr-auto:focus{
    margin-right     : auto !important;
  }

  .md\:focus\:mb-auto:focus{
    margin-bottom     : auto !important;
  }

  .md\:focus\:ml-auto:focus{
    margin-left     : auto !important;
  }

  .md\:focus\:mt-px:focus{
    margin-top     : 1px !important;
  }

  .md\:focus\:mr-px:focus{
    margin-right     : 1px !important;
  }

  .md\:focus\:mb-px:focus{
    margin-bottom     : 1px !important;
  }

  .md\:focus\:ml-px:focus{
    margin-left     : 1px !important;
  }

  .md\:focus\:mt-0\.5:focus{
    margin-top     : 0.125rem !important;
  }

  .md\:focus\:mr-0\.5:focus{
    margin-right     : 0.125rem !important;
  }

  .md\:focus\:mb-0\.5:focus{
    margin-bottom     : 0.125rem !important;
  }

  .md\:focus\:ml-0\.5:focus{
    margin-left     : 0.125rem !important;
  }

  .md\:focus\:mt-1\.5:focus{
    margin-top     : 0.375rem !important;
  }

  .md\:focus\:mr-1\.5:focus{
    margin-right     : 0.375rem !important;
  }

  .md\:focus\:mb-1\.5:focus{
    margin-bottom     : 0.375rem !important;
  }

  .md\:focus\:ml-1\.5:focus{
    margin-left     : 0.375rem !important;
  }

  .md\:focus\:mt-2\.5:focus{
    margin-top     : 0.625rem !important;
  }

  .md\:focus\:mr-2\.5:focus{
    margin-right     : 0.625rem !important;
  }

  .md\:focus\:mb-2\.5:focus{
    margin-bottom     : 0.625rem !important;
  }

  .md\:focus\:ml-2\.5:focus{
    margin-left     : 0.625rem !important;
  }

  .md\:focus\:mt-3\.5:focus{
    margin-top     : 0.875rem !important;
  }

  .md\:focus\:mr-3\.5:focus{
    margin-right     : 0.875rem !important;
  }

  .md\:focus\:mb-3\.5:focus{
    margin-bottom     : 0.875rem !important;
  }

  .md\:focus\:ml-3\.5:focus{
    margin-left     : 0.875rem !important;
  }

  .md\:focus\:mt-1\/2:focus{
    margin-top     : 50% !important;
  }

  .md\:focus\:mr-1\/2:focus{
    margin-right     : 50% !important;
  }

  .md\:focus\:mb-1\/2:focus{
    margin-bottom     : 50% !important;
  }

  .md\:focus\:ml-1\/2:focus{
    margin-left     : 50% !important;
  }

  .md\:focus\:mt-1\/3:focus{
    margin-top     : 33.333333% !important;
  }

  .md\:focus\:mr-1\/3:focus{
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:mb-1\/3:focus{
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:ml-1\/3:focus{
    margin-left     : 33.333333% !important;
  }

  .md\:focus\:mt-2\/3:focus{
    margin-top     : 66.666667% !important;
  }

  .md\:focus\:mr-2\/3:focus{
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:mb-2\/3:focus{
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:ml-2\/3:focus{
    margin-left     : 66.666667% !important;
  }

  .md\:focus\:mt-1\/4:focus{
    margin-top     : 25% !important;
  }

  .md\:focus\:mr-1\/4:focus{
    margin-right     : 25% !important;
  }

  .md\:focus\:mb-1\/4:focus{
    margin-bottom     : 25% !important;
  }

  .md\:focus\:ml-1\/4:focus{
    margin-left     : 25% !important;
  }

  .md\:focus\:mt-2\/4:focus{
    margin-top     : 50% !important;
  }

  .md\:focus\:mr-2\/4:focus{
    margin-right     : 50% !important;
  }

  .md\:focus\:mb-2\/4:focus{
    margin-bottom     : 50% !important;
  }

  .md\:focus\:ml-2\/4:focus{
    margin-left     : 50% !important;
  }

  .md\:focus\:mt-3\/4:focus{
    margin-top     : 75% !important;
  }

  .md\:focus\:mr-3\/4:focus{
    margin-right     : 75% !important;
  }

  .md\:focus\:mb-3\/4:focus{
    margin-bottom     : 75% !important;
  }

  .md\:focus\:ml-3\/4:focus{
    margin-left     : 75% !important;
  }

  .md\:focus\:mt-1\/5:focus{
    margin-top     : 20% !important;
  }

  .md\:focus\:mr-1\/5:focus{
    margin-right     : 20% !important;
  }

  .md\:focus\:mb-1\/5:focus{
    margin-bottom     : 20% !important;
  }

  .md\:focus\:ml-1\/5:focus{
    margin-left     : 20% !important;
  }

  .md\:focus\:mt-2\/5:focus{
    margin-top     : 40% !important;
  }

  .md\:focus\:mr-2\/5:focus{
    margin-right     : 40% !important;
  }

  .md\:focus\:mb-2\/5:focus{
    margin-bottom     : 40% !important;
  }

  .md\:focus\:ml-2\/5:focus{
    margin-left     : 40% !important;
  }

  .md\:focus\:mt-3\/5:focus{
    margin-top     : 60% !important;
  }

  .md\:focus\:mr-3\/5:focus{
    margin-right     : 60% !important;
  }

  .md\:focus\:mb-3\/5:focus{
    margin-bottom     : 60% !important;
  }

  .md\:focus\:ml-3\/5:focus{
    margin-left     : 60% !important;
  }

  .md\:focus\:mt-4\/5:focus{
    margin-top     : 80% !important;
  }

  .md\:focus\:mr-4\/5:focus{
    margin-right     : 80% !important;
  }

  .md\:focus\:mb-4\/5:focus{
    margin-bottom     : 80% !important;
  }

  .md\:focus\:ml-4\/5:focus{
    margin-left     : 80% !important;
  }

  .md\:focus\:mt-1\/6:focus{
    margin-top     : 16.666667% !important;
  }

  .md\:focus\:mr-1\/6:focus{
    margin-right     : 16.666667% !important;
  }

  .md\:focus\:mb-1\/6:focus{
    margin-bottom     : 16.666667% !important;
  }

  .md\:focus\:ml-1\/6:focus{
    margin-left     : 16.666667% !important;
  }

  .md\:focus\:mt-2\/6:focus{
    margin-top     : 33.333333% !important;
  }

  .md\:focus\:mr-2\/6:focus{
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:mb-2\/6:focus{
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:ml-2\/6:focus{
    margin-left     : 33.333333% !important;
  }

  .md\:focus\:mt-3\/6:focus{
    margin-top     : 50% !important;
  }

  .md\:focus\:mr-3\/6:focus{
    margin-right     : 50% !important;
  }

  .md\:focus\:mb-3\/6:focus{
    margin-bottom     : 50% !important;
  }

  .md\:focus\:ml-3\/6:focus{
    margin-left     : 50% !important;
  }

  .md\:focus\:mt-4\/6:focus{
    margin-top     : 66.666667% !important;
  }

  .md\:focus\:mr-4\/6:focus{
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:mb-4\/6:focus{
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:ml-4\/6:focus{
    margin-left     : 66.666667% !important;
  }

  .md\:focus\:mt-5\/6:focus{
    margin-top     : 83.333333% !important;
  }

  .md\:focus\:mr-5\/6:focus{
    margin-right     : 83.333333% !important;
  }

  .md\:focus\:mb-5\/6:focus{
    margin-bottom     : 83.333333% !important;
  }

  .md\:focus\:ml-5\/6:focus{
    margin-left     : 83.333333% !important;
  }

  .md\:focus\:mt-1\/12:focus{
    margin-top     : 8.333333% !important;
  }

  .md\:focus\:mr-1\/12:focus{
    margin-right     : 8.333333% !important;
  }

  .md\:focus\:mb-1\/12:focus{
    margin-bottom     : 8.333333% !important;
  }

  .md\:focus\:ml-1\/12:focus{
    margin-left     : 8.333333% !important;
  }

  .md\:focus\:mt-2\/12:focus{
    margin-top     : 16.666667% !important;
  }

  .md\:focus\:mr-2\/12:focus{
    margin-right     : 16.666667% !important;
  }

  .md\:focus\:mb-2\/12:focus{
    margin-bottom     : 16.666667% !important;
  }

  .md\:focus\:ml-2\/12:focus{
    margin-left     : 16.666667% !important;
  }

  .md\:focus\:mt-3\/12:focus{
    margin-top     : 25% !important;
  }

  .md\:focus\:mr-3\/12:focus{
    margin-right     : 25% !important;
  }

  .md\:focus\:mb-3\/12:focus{
    margin-bottom     : 25% !important;
  }

  .md\:focus\:ml-3\/12:focus{
    margin-left     : 25% !important;
  }

  .md\:focus\:mt-4\/12:focus{
    margin-top     : 33.333333% !important;
  }

  .md\:focus\:mr-4\/12:focus{
    margin-right     : 33.333333% !important;
  }

  .md\:focus\:mb-4\/12:focus{
    margin-bottom     : 33.333333% !important;
  }

  .md\:focus\:ml-4\/12:focus{
    margin-left     : 33.333333% !important;
  }

  .md\:focus\:mt-5\/12:focus{
    margin-top     : 41.666667% !important;
  }

  .md\:focus\:mr-5\/12:focus{
    margin-right     : 41.666667% !important;
  }

  .md\:focus\:mb-5\/12:focus{
    margin-bottom     : 41.666667% !important;
  }

  .md\:focus\:ml-5\/12:focus{
    margin-left     : 41.666667% !important;
  }

  .md\:focus\:mt-6\/12:focus{
    margin-top     : 50% !important;
  }

  .md\:focus\:mr-6\/12:focus{
    margin-right     : 50% !important;
  }

  .md\:focus\:mb-6\/12:focus{
    margin-bottom     : 50% !important;
  }

  .md\:focus\:ml-6\/12:focus{
    margin-left     : 50% !important;
  }

  .md\:focus\:mt-7\/12:focus{
    margin-top     : 58.333333% !important;
  }

  .md\:focus\:mr-7\/12:focus{
    margin-right     : 58.333333% !important;
  }

  .md\:focus\:mb-7\/12:focus{
    margin-bottom     : 58.333333% !important;
  }

  .md\:focus\:ml-7\/12:focus{
    margin-left     : 58.333333% !important;
  }

  .md\:focus\:mt-8\/12:focus{
    margin-top     : 66.666667% !important;
  }

  .md\:focus\:mr-8\/12:focus{
    margin-right     : 66.666667% !important;
  }

  .md\:focus\:mb-8\/12:focus{
    margin-bottom     : 66.666667% !important;
  }

  .md\:focus\:ml-8\/12:focus{
    margin-left     : 66.666667% !important;
  }

  .md\:focus\:mt-9\/12:focus{
    margin-top     : 75% !important;
  }

  .md\:focus\:mr-9\/12:focus{
    margin-right     : 75% !important;
  }

  .md\:focus\:mb-9\/12:focus{
    margin-bottom     : 75% !important;
  }

  .md\:focus\:ml-9\/12:focus{
    margin-left     : 75% !important;
  }

  .md\:focus\:mt-10\/12:focus{
    margin-top     : 83.333333% !important;
  }

  .md\:focus\:mr-10\/12:focus{
    margin-right     : 83.333333% !important;
  }

  .md\:focus\:mb-10\/12:focus{
    margin-bottom     : 83.333333% !important;
  }

  .md\:focus\:ml-10\/12:focus{
    margin-left     : 83.333333% !important;
  }

  .md\:focus\:mt-11\/12:focus{
    margin-top     : 91.666667% !important;
  }

  .md\:focus\:mr-11\/12:focus{
    margin-right     : 91.666667% !important;
  }

  .md\:focus\:mb-11\/12:focus{
    margin-bottom     : 91.666667% !important;
  }

  .md\:focus\:ml-11\/12:focus{
    margin-left     : 91.666667% !important;
  }

  .md\:focus\:mt-full:focus{
    margin-top     : 100% !important;
  }

  .md\:focus\:mr-full:focus{
    margin-right     : 100% !important;
  }

  .md\:focus\:mb-full:focus{
    margin-bottom     : 100% !important;
  }

  .md\:focus\:ml-full:focus{
    margin-left     : 100% !important;
  }

  .md\:focus\:-mt-1:focus{
    margin-top     : -0.25rem !important;
  }

  .md\:focus\:-mr-1:focus{
    margin-right     : -0.25rem !important;
  }

  .md\:focus\:-mb-1:focus{
    margin-bottom     : -0.25rem !important;
  }

  .md\:focus\:-ml-1:focus{
    margin-left     : -0.25rem !important;
  }

  .md\:focus\:-mt-2:focus{
    margin-top     : -0.5rem !important;
  }

  .md\:focus\:-mr-2:focus{
    margin-right     : -0.5rem !important;
  }

  .md\:focus\:-mb-2:focus{
    margin-bottom     : -0.5rem !important;
  }

  .md\:focus\:-ml-2:focus{
    margin-left     : -0.5rem !important;
  }

  .md\:focus\:-mt-3:focus{
    margin-top     : -0.75rem !important;
  }

  .md\:focus\:-mr-3:focus{
    margin-right     : -0.75rem !important;
  }

  .md\:focus\:-mb-3:focus{
    margin-bottom     : -0.75rem !important;
  }

  .md\:focus\:-ml-3:focus{
    margin-left     : -0.75rem !important;
  }

  .md\:focus\:-mt-4:focus{
    margin-top     : -1rem !important;
  }

  .md\:focus\:-mr-4:focus{
    margin-right     : -1rem !important;
  }

  .md\:focus\:-mb-4:focus{
    margin-bottom     : -1rem !important;
  }

  .md\:focus\:-ml-4:focus{
    margin-left     : -1rem !important;
  }

  .md\:focus\:-mt-5:focus{
    margin-top     : -1.25rem !important;
  }

  .md\:focus\:-mr-5:focus{
    margin-right     : -1.25rem !important;
  }

  .md\:focus\:-mb-5:focus{
    margin-bottom     : -1.25rem !important;
  }

  .md\:focus\:-ml-5:focus{
    margin-left     : -1.25rem !important;
  }

  .md\:focus\:-mt-6:focus{
    margin-top     : -1.5rem !important;
  }

  .md\:focus\:-mr-6:focus{
    margin-right     : -1.5rem !important;
  }

  .md\:focus\:-mb-6:focus{
    margin-bottom     : -1.5rem !important;
  }

  .md\:focus\:-ml-6:focus{
    margin-left     : -1.5rem !important;
  }

  .md\:focus\:-mt-7:focus{
    margin-top     : -1.75rem !important;
  }

  .md\:focus\:-mr-7:focus{
    margin-right     : -1.75rem !important;
  }

  .md\:focus\:-mb-7:focus{
    margin-bottom     : -1.75rem !important;
  }

  .md\:focus\:-ml-7:focus{
    margin-left     : -1.75rem !important;
  }

  .md\:focus\:-mt-8:focus{
    margin-top     : -2rem !important;
  }

  .md\:focus\:-mr-8:focus{
    margin-right     : -2rem !important;
  }

  .md\:focus\:-mb-8:focus{
    margin-bottom     : -2rem !important;
  }

  .md\:focus\:-ml-8:focus{
    margin-left     : -2rem !important;
  }

  .md\:focus\:-mt-9:focus{
    margin-top     : -2.25rem !important;
  }

  .md\:focus\:-mr-9:focus{
    margin-right     : -2.25rem !important;
  }

  .md\:focus\:-mb-9:focus{
    margin-bottom     : -2.25rem !important;
  }

  .md\:focus\:-ml-9:focus{
    margin-left     : -2.25rem !important;
  }

  .md\:focus\:-mt-10:focus{
    margin-top     : -2.5rem !important;
  }

  .md\:focus\:-mr-10:focus{
    margin-right     : -2.5rem !important;
  }

  .md\:focus\:-mb-10:focus{
    margin-bottom     : -2.5rem !important;
  }

  .md\:focus\:-ml-10:focus{
    margin-left     : -2.5rem !important;
  }

  .md\:focus\:-mt-11:focus{
    margin-top     : -2.75rem !important;
  }

  .md\:focus\:-mr-11:focus{
    margin-right     : -2.75rem !important;
  }

  .md\:focus\:-mb-11:focus{
    margin-bottom     : -2.75rem !important;
  }

  .md\:focus\:-ml-11:focus{
    margin-left     : -2.75rem !important;
  }

  .md\:focus\:-mt-12:focus{
    margin-top     : -3rem !important;
  }

  .md\:focus\:-mr-12:focus{
    margin-right     : -3rem !important;
  }

  .md\:focus\:-mb-12:focus{
    margin-bottom     : -3rem !important;
  }

  .md\:focus\:-ml-12:focus{
    margin-left     : -3rem !important;
  }

  .md\:focus\:-mt-13:focus{
    margin-top     : -3.25rem !important;
  }

  .md\:focus\:-mr-13:focus{
    margin-right     : -3.25rem !important;
  }

  .md\:focus\:-mb-13:focus{
    margin-bottom     : -3.25rem !important;
  }

  .md\:focus\:-ml-13:focus{
    margin-left     : -3.25rem !important;
  }

  .md\:focus\:-mt-14:focus{
    margin-top     : -3.5rem !important;
  }

  .md\:focus\:-mr-14:focus{
    margin-right     : -3.5rem !important;
  }

  .md\:focus\:-mb-14:focus{
    margin-bottom     : -3.5rem !important;
  }

  .md\:focus\:-ml-14:focus{
    margin-left     : -3.5rem !important;
  }

  .md\:focus\:-mt-15:focus{
    margin-top     : -3.75rem !important;
  }

  .md\:focus\:-mr-15:focus{
    margin-right     : -3.75rem !important;
  }

  .md\:focus\:-mb-15:focus{
    margin-bottom     : -3.75rem !important;
  }

  .md\:focus\:-ml-15:focus{
    margin-left     : -3.75rem !important;
  }

  .md\:focus\:-mt-16:focus{
    margin-top     : -4rem !important;
  }

  .md\:focus\:-mr-16:focus{
    margin-right     : -4rem !important;
  }

  .md\:focus\:-mb-16:focus{
    margin-bottom     : -4rem !important;
  }

  .md\:focus\:-ml-16:focus{
    margin-left     : -4rem !important;
  }

  .md\:focus\:-mt-20:focus{
    margin-top     : -5rem !important;
  }

  .md\:focus\:-mr-20:focus{
    margin-right     : -5rem !important;
  }

  .md\:focus\:-mb-20:focus{
    margin-bottom     : -5rem !important;
  }

  .md\:focus\:-ml-20:focus{
    margin-left     : -5rem !important;
  }

  .md\:focus\:-mt-24:focus{
    margin-top     : -6rem !important;
  }

  .md\:focus\:-mr-24:focus{
    margin-right     : -6rem !important;
  }

  .md\:focus\:-mb-24:focus{
    margin-bottom     : -6rem !important;
  }

  .md\:focus\:-ml-24:focus{
    margin-left     : -6rem !important;
  }

  .md\:focus\:-mt-28:focus{
    margin-top     : -7rem !important;
  }

  .md\:focus\:-mr-28:focus{
    margin-right     : -7rem !important;
  }

  .md\:focus\:-mb-28:focus{
    margin-bottom     : -7rem !important;
  }

  .md\:focus\:-ml-28:focus{
    margin-left     : -7rem !important;
  }

  .md\:focus\:-mt-32:focus{
    margin-top     : -8rem !important;
  }

  .md\:focus\:-mr-32:focus{
    margin-right     : -8rem !important;
  }

  .md\:focus\:-mb-32:focus{
    margin-bottom     : -8rem !important;
  }

  .md\:focus\:-ml-32:focus{
    margin-left     : -8rem !important;
  }

  .md\:focus\:-mt-36:focus{
    margin-top     : -9rem !important;
  }

  .md\:focus\:-mr-36:focus{
    margin-right     : -9rem !important;
  }

  .md\:focus\:-mb-36:focus{
    margin-bottom     : -9rem !important;
  }

  .md\:focus\:-ml-36:focus{
    margin-left     : -9rem !important;
  }

  .md\:focus\:-mt-40:focus{
    margin-top     : -10rem !important;
  }

  .md\:focus\:-mr-40:focus{
    margin-right     : -10rem !important;
  }

  .md\:focus\:-mb-40:focus{
    margin-bottom     : -10rem !important;
  }

  .md\:focus\:-ml-40:focus{
    margin-left     : -10rem !important;
  }

  .md\:focus\:-mt-44:focus{
    margin-top     : -11rem !important;
  }

  .md\:focus\:-mr-44:focus{
    margin-right     : -11rem !important;
  }

  .md\:focus\:-mb-44:focus{
    margin-bottom     : -11rem !important;
  }

  .md\:focus\:-ml-44:focus{
    margin-left     : -11rem !important;
  }

  .md\:focus\:-mt-48:focus{
    margin-top     : -12rem !important;
  }

  .md\:focus\:-mr-48:focus{
    margin-right     : -12rem !important;
  }

  .md\:focus\:-mb-48:focus{
    margin-bottom     : -12rem !important;
  }

  .md\:focus\:-ml-48:focus{
    margin-left     : -12rem !important;
  }

  .md\:focus\:-mt-52:focus{
    margin-top     : -13rem !important;
  }

  .md\:focus\:-mr-52:focus{
    margin-right     : -13rem !important;
  }

  .md\:focus\:-mb-52:focus{
    margin-bottom     : -13rem !important;
  }

  .md\:focus\:-ml-52:focus{
    margin-left     : -13rem !important;
  }

  .md\:focus\:-mt-56:focus{
    margin-top     : -14rem !important;
  }

  .md\:focus\:-mr-56:focus{
    margin-right     : -14rem !important;
  }

  .md\:focus\:-mb-56:focus{
    margin-bottom     : -14rem !important;
  }

  .md\:focus\:-ml-56:focus{
    margin-left     : -14rem !important;
  }

  .md\:focus\:-mt-60:focus{
    margin-top     : -15rem !important;
  }

  .md\:focus\:-mr-60:focus{
    margin-right     : -15rem !important;
  }

  .md\:focus\:-mb-60:focus{
    margin-bottom     : -15rem !important;
  }

  .md\:focus\:-ml-60:focus{
    margin-left     : -15rem !important;
  }

  .md\:focus\:-mt-64:focus{
    margin-top     : -16rem !important;
  }

  .md\:focus\:-mr-64:focus{
    margin-right     : -16rem !important;
  }

  .md\:focus\:-mb-64:focus{
    margin-bottom     : -16rem !important;
  }

  .md\:focus\:-ml-64:focus{
    margin-left     : -16rem !important;
  }

  .md\:focus\:-mt-72:focus{
    margin-top     : -18rem !important;
  }

  .md\:focus\:-mr-72:focus{
    margin-right     : -18rem !important;
  }

  .md\:focus\:-mb-72:focus{
    margin-bottom     : -18rem !important;
  }

  .md\:focus\:-ml-72:focus{
    margin-left     : -18rem !important;
  }

  .md\:focus\:-mt-80:focus{
    margin-top     : -20rem !important;
  }

  .md\:focus\:-mr-80:focus{
    margin-right     : -20rem !important;
  }

  .md\:focus\:-mb-80:focus{
    margin-bottom     : -20rem !important;
  }

  .md\:focus\:-ml-80:focus{
    margin-left     : -20rem !important;
  }

  .md\:focus\:-mt-96:focus{
    margin-top     : -24rem !important;
  }

  .md\:focus\:-mr-96:focus{
    margin-right     : -24rem !important;
  }

  .md\:focus\:-mb-96:focus{
    margin-bottom     : -24rem !important;
  }

  .md\:focus\:-ml-96:focus{
    margin-left     : -24rem !important;
  }

  .md\:focus\:-mt-px:focus{
    margin-top     : -1px !important;
  }

  .md\:focus\:-mr-px:focus{
    margin-right     : -1px !important;
  }

  .md\:focus\:-mb-px:focus{
    margin-bottom     : -1px !important;
  }

  .md\:focus\:-ml-px:focus{
    margin-left     : -1px !important;
  }

  .md\:focus\:-mt-0\.5:focus{
    margin-top     : -0.125rem !important;
  }

  .md\:focus\:-mr-0\.5:focus{
    margin-right     : -0.125rem !important;
  }

  .md\:focus\:-mb-0\.5:focus{
    margin-bottom     : -0.125rem !important;
  }

  .md\:focus\:-ml-0\.5:focus{
    margin-left     : -0.125rem !important;
  }

  .md\:focus\:-mt-1\.5:focus{
    margin-top     : -0.375rem !important;
  }

  .md\:focus\:-mr-1\.5:focus{
    margin-right     : -0.375rem !important;
  }

  .md\:focus\:-mb-1\.5:focus{
    margin-bottom     : -0.375rem !important;
  }

  .md\:focus\:-ml-1\.5:focus{
    margin-left     : -0.375rem !important;
  }

  .md\:focus\:-mt-2\.5:focus{
    margin-top     : -0.625rem !important;
  }

  .md\:focus\:-mr-2\.5:focus{
    margin-right     : -0.625rem !important;
  }

  .md\:focus\:-mb-2\.5:focus{
    margin-bottom     : -0.625rem !important;
  }

  .md\:focus\:-ml-2\.5:focus{
    margin-left     : -0.625rem !important;
  }

  .md\:focus\:-mt-3\.5:focus{
    margin-top     : -0.875rem !important;
  }

  .md\:focus\:-mr-3\.5:focus{
    margin-right     : -0.875rem !important;
  }

  .md\:focus\:-mb-3\.5:focus{
    margin-bottom     : -0.875rem !important;
  }

  .md\:focus\:-ml-3\.5:focus{
    margin-left     : -0.875rem !important;
  }

  .md\:focus\:-mt-1\/2:focus{
    margin-top     : -50% !important;
  }

  .md\:focus\:-mr-1\/2:focus{
    margin-right     : -50% !important;
  }

  .md\:focus\:-mb-1\/2:focus{
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-ml-1\/2:focus{
    margin-left     : -50% !important;
  }

  .md\:focus\:-mt-1\/3:focus{
    margin-top     : -33.33333% !important;
  }

  .md\:focus\:-mr-1\/3:focus{
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-mb-1\/3:focus{
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-ml-1\/3:focus{
    margin-left     : -33.33333% !important;
  }

  .md\:focus\:-mt-2\/3:focus{
    margin-top     : -66.66667% !important;
  }

  .md\:focus\:-mr-2\/3:focus{
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-mb-2\/3:focus{
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-ml-2\/3:focus{
    margin-left     : -66.66667% !important;
  }

  .md\:focus\:-mt-1\/4:focus{
    margin-top     : -25% !important;
  }

  .md\:focus\:-mr-1\/4:focus{
    margin-right     : -25% !important;
  }

  .md\:focus\:-mb-1\/4:focus{
    margin-bottom     : -25% !important;
  }

  .md\:focus\:-ml-1\/4:focus{
    margin-left     : -25% !important;
  }

  .md\:focus\:-mt-2\/4:focus{
    margin-top     : -50% !important;
  }

  .md\:focus\:-mr-2\/4:focus{
    margin-right     : -50% !important;
  }

  .md\:focus\:-mb-2\/4:focus{
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-ml-2\/4:focus{
    margin-left     : -50% !important;
  }

  .md\:focus\:-mt-3\/4:focus{
    margin-top     : -75% !important;
  }

  .md\:focus\:-mr-3\/4:focus{
    margin-right     : -75% !important;
  }

  .md\:focus\:-mb-3\/4:focus{
    margin-bottom     : -75% !important;
  }

  .md\:focus\:-ml-3\/4:focus{
    margin-left     : -75% !important;
  }

  .md\:focus\:-mt-1\/5:focus{
    margin-top     : -20% !important;
  }

  .md\:focus\:-mr-1\/5:focus{
    margin-right     : -20% !important;
  }

  .md\:focus\:-mb-1\/5:focus{
    margin-bottom     : -20% !important;
  }

  .md\:focus\:-ml-1\/5:focus{
    margin-left     : -20% !important;
  }

  .md\:focus\:-mt-2\/5:focus{
    margin-top     : -40% !important;
  }

  .md\:focus\:-mr-2\/5:focus{
    margin-right     : -40% !important;
  }

  .md\:focus\:-mb-2\/5:focus{
    margin-bottom     : -40% !important;
  }

  .md\:focus\:-ml-2\/5:focus{
    margin-left     : -40% !important;
  }

  .md\:focus\:-mt-3\/5:focus{
    margin-top     : -60% !important;
  }

  .md\:focus\:-mr-3\/5:focus{
    margin-right     : -60% !important;
  }

  .md\:focus\:-mb-3\/5:focus{
    margin-bottom     : -60% !important;
  }

  .md\:focus\:-ml-3\/5:focus{
    margin-left     : -60% !important;
  }

  .md\:focus\:-mt-4\/5:focus{
    margin-top     : -80% !important;
  }

  .md\:focus\:-mr-4\/5:focus{
    margin-right     : -80% !important;
  }

  .md\:focus\:-mb-4\/5:focus{
    margin-bottom     : -80% !important;
  }

  .md\:focus\:-ml-4\/5:focus{
    margin-left     : -80% !important;
  }

  .md\:focus\:-mt-1\/6:focus{
    margin-top     : -16.66667% !important;
  }

  .md\:focus\:-mr-1\/6:focus{
    margin-right     : -16.66667% !important;
  }

  .md\:focus\:-mb-1\/6:focus{
    margin-bottom     : -16.66667% !important;
  }

  .md\:focus\:-ml-1\/6:focus{
    margin-left     : -16.66667% !important;
  }

  .md\:focus\:-mt-2\/6:focus{
    margin-top     : -33.33333% !important;
  }

  .md\:focus\:-mr-2\/6:focus{
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-mb-2\/6:focus{
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-ml-2\/6:focus{
    margin-left     : -33.33333% !important;
  }

  .md\:focus\:-mt-3\/6:focus{
    margin-top     : -50% !important;
  }

  .md\:focus\:-mr-3\/6:focus{
    margin-right     : -50% !important;
  }

  .md\:focus\:-mb-3\/6:focus{
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-ml-3\/6:focus{
    margin-left     : -50% !important;
  }

  .md\:focus\:-mt-4\/6:focus{
    margin-top     : -66.66667% !important;
  }

  .md\:focus\:-mr-4\/6:focus{
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-mb-4\/6:focus{
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-ml-4\/6:focus{
    margin-left     : -66.66667% !important;
  }

  .md\:focus\:-mt-5\/6:focus{
    margin-top     : -83.33333% !important;
  }

  .md\:focus\:-mr-5\/6:focus{
    margin-right     : -83.33333% !important;
  }

  .md\:focus\:-mb-5\/6:focus{
    margin-bottom     : -83.33333% !important;
  }

  .md\:focus\:-ml-5\/6:focus{
    margin-left     : -83.33333% !important;
  }

  .md\:focus\:-mt-1\/12:focus{
    margin-top     : -8.33333% !important;
  }

  .md\:focus\:-mr-1\/12:focus{
    margin-right     : -8.33333% !important;
  }

  .md\:focus\:-mb-1\/12:focus{
    margin-bottom     : -8.33333% !important;
  }

  .md\:focus\:-ml-1\/12:focus{
    margin-left     : -8.33333% !important;
  }

  .md\:focus\:-mt-2\/12:focus{
    margin-top     : -16.66667% !important;
  }

  .md\:focus\:-mr-2\/12:focus{
    margin-right     : -16.66667% !important;
  }

  .md\:focus\:-mb-2\/12:focus{
    margin-bottom     : -16.66667% !important;
  }

  .md\:focus\:-ml-2\/12:focus{
    margin-left     : -16.66667% !important;
  }

  .md\:focus\:-mt-3\/12:focus{
    margin-top     : -25% !important;
  }

  .md\:focus\:-mr-3\/12:focus{
    margin-right     : -25% !important;
  }

  .md\:focus\:-mb-3\/12:focus{
    margin-bottom     : -25% !important;
  }

  .md\:focus\:-ml-3\/12:focus{
    margin-left     : -25% !important;
  }

  .md\:focus\:-mt-4\/12:focus{
    margin-top     : -33.33333% !important;
  }

  .md\:focus\:-mr-4\/12:focus{
    margin-right     : -33.33333% !important;
  }

  .md\:focus\:-mb-4\/12:focus{
    margin-bottom     : -33.33333% !important;
  }

  .md\:focus\:-ml-4\/12:focus{
    margin-left     : -33.33333% !important;
  }

  .md\:focus\:-mt-5\/12:focus{
    margin-top     : -41.66667% !important;
  }

  .md\:focus\:-mr-5\/12:focus{
    margin-right     : -41.66667% !important;
  }

  .md\:focus\:-mb-5\/12:focus{
    margin-bottom     : -41.66667% !important;
  }

  .md\:focus\:-ml-5\/12:focus{
    margin-left     : -41.66667% !important;
  }

  .md\:focus\:-mt-6\/12:focus{
    margin-top     : -50% !important;
  }

  .md\:focus\:-mr-6\/12:focus{
    margin-right     : -50% !important;
  }

  .md\:focus\:-mb-6\/12:focus{
    margin-bottom     : -50% !important;
  }

  .md\:focus\:-ml-6\/12:focus{
    margin-left     : -50% !important;
  }

  .md\:focus\:-mt-7\/12:focus{
    margin-top     : -58.33333% !important;
  }

  .md\:focus\:-mr-7\/12:focus{
    margin-right     : -58.33333% !important;
  }

  .md\:focus\:-mb-7\/12:focus{
    margin-bottom     : -58.33333% !important;
  }

  .md\:focus\:-ml-7\/12:focus{
    margin-left     : -58.33333% !important;
  }

  .md\:focus\:-mt-8\/12:focus{
    margin-top     : -66.66667% !important;
  }

  .md\:focus\:-mr-8\/12:focus{
    margin-right     : -66.66667% !important;
  }

  .md\:focus\:-mb-8\/12:focus{
    margin-bottom     : -66.66667% !important;
  }

  .md\:focus\:-ml-8\/12:focus{
    margin-left     : -66.66667% !important;
  }

  .md\:focus\:-mt-9\/12:focus{
    margin-top     : -75% !important;
  }

  .md\:focus\:-mr-9\/12:focus{
    margin-right     : -75% !important;
  }

  .md\:focus\:-mb-9\/12:focus{
    margin-bottom     : -75% !important;
  }

  .md\:focus\:-ml-9\/12:focus{
    margin-left     : -75% !important;
  }

  .md\:focus\:-mt-10\/12:focus{
    margin-top     : -83.33333% !important;
  }

  .md\:focus\:-mr-10\/12:focus{
    margin-right     : -83.33333% !important;
  }

  .md\:focus\:-mb-10\/12:focus{
    margin-bottom     : -83.33333% !important;
  }

  .md\:focus\:-ml-10\/12:focus{
    margin-left     : -83.33333% !important;
  }

  .md\:focus\:-mt-11\/12:focus{
    margin-top     : -91.66667% !important;
  }

  .md\:focus\:-mr-11\/12:focus{
    margin-right     : -91.66667% !important;
  }

  .md\:focus\:-mb-11\/12:focus{
    margin-bottom     : -91.66667% !important;
  }

  .md\:focus\:-ml-11\/12:focus{
    margin-left     : -91.66667% !important;
  }

  .md\:focus\:-mt-full:focus{
    margin-top     : -100% !important;
  }

  .md\:focus\:-mr-full:focus{
    margin-right     : -100% !important;
  }

  .md\:focus\:-mb-full:focus{
    margin-bottom     : -100% !important;
  }

  .md\:focus\:-ml-full:focus{
    margin-left     : -100% !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-20{
    max-height     : 5rem !important;
  }

  .md\:max-h-24{
    max-height     : 6rem !important;
  }

  .md\:max-h-28{
    max-height     : 7rem !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-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-96{
    max-height     : 24rem !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;
  }

  .group:hover .md\:group-hover\:max-h-0{
    max-height     : 0 !important;
  }

  .group:hover .md\:group-hover\:max-h-1{
    max-height     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:max-h-2{
    max-height     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:max-h-3{
    max-height     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:max-h-4{
    max-height     : 1rem !important;
  }

  .group:hover .md\:group-hover\:max-h-5{
    max-height     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:max-h-6{
    max-height     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:max-h-7{
    max-height     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:max-h-8{
    max-height     : 2rem !important;
  }

  .group:hover .md\:group-hover\:max-h-9{
    max-height     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:max-h-10{
    max-height     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:max-h-11{
    max-height     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:max-h-12{
    max-height     : 3rem !important;
  }

  .group:hover .md\:group-hover\:max-h-13{
    max-height     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:max-h-14{
    max-height     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:max-h-15{
    max-height     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:max-h-16{
    max-height     : 4rem !important;
  }

  .group:hover .md\:group-hover\:max-h-20{
    max-height     : 5rem !important;
  }

  .group:hover .md\:group-hover\:max-h-24{
    max-height     : 6rem !important;
  }

  .group:hover .md\:group-hover\:max-h-28{
    max-height     : 7rem !important;
  }

  .group:hover .md\:group-hover\:max-h-32{
    max-height     : 8rem !important;
  }

  .group:hover .md\:group-hover\:max-h-36{
    max-height     : 9rem !important;
  }

  .group:hover .md\:group-hover\:max-h-40{
    max-height     : 10rem !important;
  }

  .group:hover .md\:group-hover\:max-h-44{
    max-height     : 11rem !important;
  }

  .group:hover .md\:group-hover\:max-h-48{
    max-height     : 12rem !important;
  }

  .group:hover .md\:group-hover\:max-h-52{
    max-height     : 13rem !important;
  }

  .group:hover .md\:group-hover\:max-h-56{
    max-height     : 14rem !important;
  }

  .group:hover .md\:group-hover\:max-h-60{
    max-height     : 15rem !important;
  }

  .group:hover .md\:group-hover\:max-h-64{
    max-height     : 16rem !important;
  }

  .group:hover .md\:group-hover\:max-h-72{
    max-height     : 18rem !important;
  }

  .group:hover .md\:group-hover\:max-h-80{
    max-height     : 20rem !important;
  }

  .group:hover .md\:group-hover\:max-h-96{
    max-height     : 24rem !important;
  }

  .group:hover .md\:group-hover\:max-h-screen{
    max-height     : 100vh !important;
  }

  .group:hover .md\:group-hover\:max-h-px{
    max-height     : 1px !important;
  }

  .group:hover .md\:group-hover\:max-h-0\.5{
    max-height     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:max-h-1\.5{
    max-height     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:max-h-2\.5{
    max-height     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:max-h-3\.5{
    max-height     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/2{
    max-height     : 50% !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/3{
    max-height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-2\/3{
    max-height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/4{
    max-height     : 25% !important;
  }

  .group:hover .md\:group-hover\:max-h-2\/4{
    max-height     : 50% !important;
  }

  .group:hover .md\:group-hover\:max-h-3\/4{
    max-height     : 75% !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/5{
    max-height     : 20% !important;
  }

  .group:hover .md\:group-hover\:max-h-2\/5{
    max-height     : 40% !important;
  }

  .group:hover .md\:group-hover\:max-h-3\/5{
    max-height     : 60% !important;
  }

  .group:hover .md\:group-hover\:max-h-4\/5{
    max-height     : 80% !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/6{
    max-height     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-2\/6{
    max-height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-3\/6{
    max-height     : 50% !important;
  }

  .group:hover .md\:group-hover\:max-h-4\/6{
    max-height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-5\/6{
    max-height     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-1\/12{
    max-height     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-2\/12{
    max-height     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-3\/12{
    max-height     : 25% !important;
  }

  .group:hover .md\:group-hover\:max-h-4\/12{
    max-height     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-5\/12{
    max-height     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-6\/12{
    max-height     : 50% !important;
  }

  .group:hover .md\:group-hover\:max-h-7\/12{
    max-height     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-8\/12{
    max-height     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-9\/12{
    max-height     : 75% !important;
  }

  .group:hover .md\:group-hover\:max-h-10\/12{
    max-height     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:max-h-11\/12{
    max-height     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:max-h-full{
    max-height     : 100% !important;
  }

  .md\:hover\:max-h-0:hover{
    max-height     : 0 !important;
  }

  .md\:hover\:max-h-1:hover{
    max-height     : 0.25rem !important;
  }

  .md\:hover\:max-h-2:hover{
    max-height     : 0.5rem !important;
  }

  .md\:hover\:max-h-3:hover{
    max-height     : 0.75rem !important;
  }

  .md\:hover\:max-h-4:hover{
    max-height     : 1rem !important;
  }

  .md\:hover\:max-h-5:hover{
    max-height     : 1.25rem !important;
  }

  .md\:hover\:max-h-6:hover{
    max-height     : 1.5rem !important;
  }

  .md\:hover\:max-h-7:hover{
    max-height     : 1.75rem !important;
  }

  .md\:hover\:max-h-8:hover{
    max-height     : 2rem !important;
  }

  .md\:hover\:max-h-9:hover{
    max-height     : 2.25rem !important;
  }

  .md\:hover\:max-h-10:hover{
    max-height     : 2.5rem !important;
  }

  .md\:hover\:max-h-11:hover{
    max-height     : 2.75rem !important;
  }

  .md\:hover\:max-h-12:hover{
    max-height     : 3rem !important;
  }

  .md\:hover\:max-h-13:hover{
    max-height     : 3.25rem !important;
  }

  .md\:hover\:max-h-14:hover{
    max-height     : 3.5rem !important;
  }

  .md\:hover\:max-h-15:hover{
    max-height     : 3.75rem !important;
  }

  .md\:hover\:max-h-16:hover{
    max-height     : 4rem !important;
  }

  .md\:hover\:max-h-20:hover{
    max-height     : 5rem !important;
  }

  .md\:hover\:max-h-24:hover{
    max-height     : 6rem !important;
  }

  .md\:hover\:max-h-28:hover{
    max-height     : 7rem !important;
  }

  .md\:hover\:max-h-32:hover{
    max-height     : 8rem !important;
  }

  .md\:hover\:max-h-36:hover{
    max-height     : 9rem !important;
  }

  .md\:hover\:max-h-40:hover{
    max-height     : 10rem !important;
  }

  .md\:hover\:max-h-44:hover{
    max-height     : 11rem !important;
  }

  .md\:hover\:max-h-48:hover{
    max-height     : 12rem !important;
  }

  .md\:hover\:max-h-52:hover{
    max-height     : 13rem !important;
  }

  .md\:hover\:max-h-56:hover{
    max-height     : 14rem !important;
  }

  .md\:hover\:max-h-60:hover{
    max-height     : 15rem !important;
  }

  .md\:hover\:max-h-64:hover{
    max-height     : 16rem !important;
  }

  .md\:hover\:max-h-72:hover{
    max-height     : 18rem !important;
  }

  .md\:hover\:max-h-80:hover{
    max-height     : 20rem !important;
  }

  .md\:hover\:max-h-96:hover{
    max-height     : 24rem !important;
  }

  .md\:hover\:max-h-screen:hover{
    max-height     : 100vh !important;
  }

  .md\:hover\:max-h-px:hover{
    max-height     : 1px !important;
  }

  .md\:hover\:max-h-0\.5:hover{
    max-height     : 0.125rem !important;
  }

  .md\:hover\:max-h-1\.5:hover{
    max-height     : 0.375rem !important;
  }

  .md\:hover\:max-h-2\.5:hover{
    max-height     : 0.625rem !important;
  }

  .md\:hover\:max-h-3\.5:hover{
    max-height     : 0.875rem !important;
  }

  .md\:hover\:max-h-1\/2:hover{
    max-height     : 50% !important;
  }

  .md\:hover\:max-h-1\/3:hover{
    max-height     : 33.333333% !important;
  }

  .md\:hover\:max-h-2\/3:hover{
    max-height     : 66.666667% !important;
  }

  .md\:hover\:max-h-1\/4:hover{
    max-height     : 25% !important;
  }

  .md\:hover\:max-h-2\/4:hover{
    max-height     : 50% !important;
  }

  .md\:hover\:max-h-3\/4:hover{
    max-height     : 75% !important;
  }

  .md\:hover\:max-h-1\/5:hover{
    max-height     : 20% !important;
  }

  .md\:hover\:max-h-2\/5:hover{
    max-height     : 40% !important;
  }

  .md\:hover\:max-h-3\/5:hover{
    max-height     : 60% !important;
  }

  .md\:hover\:max-h-4\/5:hover{
    max-height     : 80% !important;
  }

  .md\:hover\:max-h-1\/6:hover{
    max-height     : 16.666667% !important;
  }

  .md\:hover\:max-h-2\/6:hover{
    max-height     : 33.333333% !important;
  }

  .md\:hover\:max-h-3\/6:hover{
    max-height     : 50% !important;
  }

  .md\:hover\:max-h-4\/6:hover{
    max-height     : 66.666667% !important;
  }

  .md\:hover\:max-h-5\/6:hover{
    max-height     : 83.333333% !important;
  }

  .md\:hover\:max-h-1\/12:hover{
    max-height     : 8.333333% !important;
  }

  .md\:hover\:max-h-2\/12:hover{
    max-height     : 16.666667% !important;
  }

  .md\:hover\:max-h-3\/12:hover{
    max-height     : 25% !important;
  }

  .md\:hover\:max-h-4\/12:hover{
    max-height     : 33.333333% !important;
  }

  .md\:hover\:max-h-5\/12:hover{
    max-height     : 41.666667% !important;
  }

  .md\:hover\:max-h-6\/12:hover{
    max-height     : 50% !important;
  }

  .md\:hover\:max-h-7\/12:hover{
    max-height     : 58.333333% !important;
  }

  .md\:hover\:max-h-8\/12:hover{
    max-height     : 66.666667% !important;
  }

  .md\:hover\:max-h-9\/12:hover{
    max-height     : 75% !important;
  }

  .md\:hover\:max-h-10\/12:hover{
    max-height     : 83.333333% !important;
  }

  .md\:hover\:max-h-11\/12:hover{
    max-height     : 91.666667% !important;
  }

  .md\:hover\:max-h-full:hover{
    max-height     : 100% !important;
  }

  .md\:focus\:max-h-0:focus{
    max-height     : 0 !important;
  }

  .md\:focus\:max-h-1:focus{
    max-height     : 0.25rem !important;
  }

  .md\:focus\:max-h-2:focus{
    max-height     : 0.5rem !important;
  }

  .md\:focus\:max-h-3:focus{
    max-height     : 0.75rem !important;
  }

  .md\:focus\:max-h-4:focus{
    max-height     : 1rem !important;
  }

  .md\:focus\:max-h-5:focus{
    max-height     : 1.25rem !important;
  }

  .md\:focus\:max-h-6:focus{
    max-height     : 1.5rem !important;
  }

  .md\:focus\:max-h-7:focus{
    max-height     : 1.75rem !important;
  }

  .md\:focus\:max-h-8:focus{
    max-height     : 2rem !important;
  }

  .md\:focus\:max-h-9:focus{
    max-height     : 2.25rem !important;
  }

  .md\:focus\:max-h-10:focus{
    max-height     : 2.5rem !important;
  }

  .md\:focus\:max-h-11:focus{
    max-height     : 2.75rem !important;
  }

  .md\:focus\:max-h-12:focus{
    max-height     : 3rem !important;
  }

  .md\:focus\:max-h-13:focus{
    max-height     : 3.25rem !important;
  }

  .md\:focus\:max-h-14:focus{
    max-height     : 3.5rem !important;
  }

  .md\:focus\:max-h-15:focus{
    max-height     : 3.75rem !important;
  }

  .md\:focus\:max-h-16:focus{
    max-height     : 4rem !important;
  }

  .md\:focus\:max-h-20:focus{
    max-height     : 5rem !important;
  }

  .md\:focus\:max-h-24:focus{
    max-height     : 6rem !important;
  }

  .md\:focus\:max-h-28:focus{
    max-height     : 7rem !important;
  }

  .md\:focus\:max-h-32:focus{
    max-height     : 8rem !important;
  }

  .md\:focus\:max-h-36:focus{
    max-height     : 9rem !important;
  }

  .md\:focus\:max-h-40:focus{
    max-height     : 10rem !important;
  }

  .md\:focus\:max-h-44:focus{
    max-height     : 11rem !important;
  }

  .md\:focus\:max-h-48:focus{
    max-height     : 12rem !important;
  }

  .md\:focus\:max-h-52:focus{
    max-height     : 13rem !important;
  }

  .md\:focus\:max-h-56:focus{
    max-height     : 14rem !important;
  }

  .md\:focus\:max-h-60:focus{
    max-height     : 15rem !important;
  }

  .md\:focus\:max-h-64:focus{
    max-height     : 16rem !important;
  }

  .md\:focus\:max-h-72:focus{
    max-height     : 18rem !important;
  }

  .md\:focus\:max-h-80:focus{
    max-height     : 20rem !important;
  }

  .md\:focus\:max-h-96:focus{
    max-height     : 24rem !important;
  }

  .md\:focus\:max-h-screen:focus{
    max-height     : 100vh !important;
  }

  .md\:focus\:max-h-px:focus{
    max-height     : 1px !important;
  }

  .md\:focus\:max-h-0\.5:focus{
    max-height     : 0.125rem !important;
  }

  .md\:focus\:max-h-1\.5:focus{
    max-height     : 0.375rem !important;
  }

  .md\:focus\:max-h-2\.5:focus{
    max-height     : 0.625rem !important;
  }

  .md\:focus\:max-h-3\.5:focus{
    max-height     : 0.875rem !important;
  }

  .md\:focus\:max-h-1\/2:focus{
    max-height     : 50% !important;
  }

  .md\:focus\:max-h-1\/3:focus{
    max-height     : 33.333333% !important;
  }

  .md\:focus\:max-h-2\/3:focus{
    max-height     : 66.666667% !important;
  }

  .md\:focus\:max-h-1\/4:focus{
    max-height     : 25% !important;
  }

  .md\:focus\:max-h-2\/4:focus{
    max-height     : 50% !important;
  }

  .md\:focus\:max-h-3\/4:focus{
    max-height     : 75% !important;
  }

  .md\:focus\:max-h-1\/5:focus{
    max-height     : 20% !important;
  }

  .md\:focus\:max-h-2\/5:focus{
    max-height     : 40% !important;
  }

  .md\:focus\:max-h-3\/5:focus{
    max-height     : 60% !important;
  }

  .md\:focus\:max-h-4\/5:focus{
    max-height     : 80% !important;
  }

  .md\:focus\:max-h-1\/6:focus{
    max-height     : 16.666667% !important;
  }

  .md\:focus\:max-h-2\/6:focus{
    max-height     : 33.333333% !important;
  }

  .md\:focus\:max-h-3\/6:focus{
    max-height     : 50% !important;
  }

  .md\:focus\:max-h-4\/6:focus{
    max-height     : 66.666667% !important;
  }

  .md\:focus\:max-h-5\/6:focus{
    max-height     : 83.333333% !important;
  }

  .md\:focus\:max-h-1\/12:focus{
    max-height     : 8.333333% !important;
  }

  .md\:focus\:max-h-2\/12:focus{
    max-height     : 16.666667% !important;
  }

  .md\:focus\:max-h-3\/12:focus{
    max-height     : 25% !important;
  }

  .md\:focus\:max-h-4\/12:focus{
    max-height     : 33.333333% !important;
  }

  .md\:focus\:max-h-5\/12:focus{
    max-height     : 41.666667% !important;
  }

  .md\:focus\:max-h-6\/12:focus{
    max-height     : 50% !important;
  }

  .md\:focus\:max-h-7\/12:focus{
    max-height     : 58.333333% !important;
  }

  .md\:focus\:max-h-8\/12:focus{
    max-height     : 66.666667% !important;
  }

  .md\:focus\:max-h-9\/12:focus{
    max-height     : 75% !important;
  }

  .md\:focus\:max-h-10\/12:focus{
    max-height     : 83.333333% !important;
  }

  .md\:focus\:max-h-11\/12:focus{
    max-height     : 91.666667% !important;
  }

  .md\:focus\:max-h-full:focus{
    max-height     : 100% !important;
  }

  .md\:max-w-0{
    max-width     : 0rem !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-prose{
    max-width     : 65ch !important;
  }

  .md\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .md\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .md\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .md\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .group:hover .md\:group-hover\:max-w-0{
    max-width     : 0rem !important;
  }

  .group:hover .md\:group-hover\:max-w-none{
    max-width     : none !important;
  }

  .group:hover .md\:group-hover\:max-w-xs{
    max-width     : 20rem !important;
  }

  .group:hover .md\:group-hover\:max-w-sm{
    max-width     : 24rem !important;
  }

  .group:hover .md\:group-hover\:max-w-md{
    max-width     : 28rem !important;
  }

  .group:hover .md\:group-hover\:max-w-lg{
    max-width     : 32rem !important;
  }

  .group:hover .md\:group-hover\:max-w-xl{
    max-width     : 36rem !important;
  }

  .group:hover .md\:group-hover\:max-w-2xl{
    max-width     : 42rem !important;
  }

  .group:hover .md\:group-hover\:max-w-3xl{
    max-width     : 48rem !important;
  }

  .group:hover .md\:group-hover\:max-w-4xl{
    max-width     : 56rem !important;
  }

  .group:hover .md\:group-hover\:max-w-5xl{
    max-width     : 64rem !important;
  }

  .group:hover .md\:group-hover\:max-w-6xl{
    max-width     : 72rem !important;
  }

  .group:hover .md\:group-hover\:max-w-7xl{
    max-width     : 80rem !important;
  }

  .group:hover .md\:group-hover\:max-w-full{
    max-width     : 100% !important;
  }

  .group:hover .md\:group-hover\:max-w-min-content{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .group:hover .md\:group-hover\:max-w-max-content{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .group:hover .md\:group-hover\:max-w-prose{
    max-width     : 65ch !important;
  }

  .group:hover .md\:group-hover\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .group:hover .md\:group-hover\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .group:hover .md\:group-hover\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .group:hover .md\:group-hover\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .md\:hover\:max-w-0:hover{
    max-width     : 0rem !important;
  }

  .md\:hover\:max-w-none:hover{
    max-width     : none !important;
  }

  .md\:hover\:max-w-xs:hover{
    max-width     : 20rem !important;
  }

  .md\:hover\:max-w-sm:hover{
    max-width     : 24rem !important;
  }

  .md\:hover\:max-w-md:hover{
    max-width     : 28rem !important;
  }

  .md\:hover\:max-w-lg:hover{
    max-width     : 32rem !important;
  }

  .md\:hover\:max-w-xl:hover{
    max-width     : 36rem !important;
  }

  .md\:hover\:max-w-2xl:hover{
    max-width     : 42rem !important;
  }

  .md\:hover\:max-w-3xl:hover{
    max-width     : 48rem !important;
  }

  .md\:hover\:max-w-4xl:hover{
    max-width     : 56rem !important;
  }

  .md\:hover\:max-w-5xl:hover{
    max-width     : 64rem !important;
  }

  .md\:hover\:max-w-6xl:hover{
    max-width     : 72rem !important;
  }

  .md\:hover\:max-w-7xl:hover{
    max-width     : 80rem !important;
  }

  .md\:hover\:max-w-full:hover{
    max-width     : 100% !important;
  }

  .md\:hover\:max-w-min-content:hover{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .md\:hover\:max-w-max-content:hover{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .md\:hover\:max-w-prose:hover{
    max-width     : 65ch !important;
  }

  .md\:hover\:max-w-screen-sm:hover{
    max-width     : 640px !important;
  }

  .md\:hover\:max-w-screen-md:hover{
    max-width     : 768px !important;
  }

  .md\:hover\:max-w-screen-lg:hover{
    max-width     : 1024px !important;
  }

  .md\:hover\:max-w-screen-xl:hover{
    max-width     : 1280px !important;
  }

  .md\:focus\:max-w-0:focus{
    max-width     : 0rem !important;
  }

  .md\:focus\:max-w-none:focus{
    max-width     : none !important;
  }

  .md\:focus\:max-w-xs:focus{
    max-width     : 20rem !important;
  }

  .md\:focus\:max-w-sm:focus{
    max-width     : 24rem !important;
  }

  .md\:focus\:max-w-md:focus{
    max-width     : 28rem !important;
  }

  .md\:focus\:max-w-lg:focus{
    max-width     : 32rem !important;
  }

  .md\:focus\:max-w-xl:focus{
    max-width     : 36rem !important;
  }

  .md\:focus\:max-w-2xl:focus{
    max-width     : 42rem !important;
  }

  .md\:focus\:max-w-3xl:focus{
    max-width     : 48rem !important;
  }

  .md\:focus\:max-w-4xl:focus{
    max-width     : 56rem !important;
  }

  .md\:focus\:max-w-5xl:focus{
    max-width     : 64rem !important;
  }

  .md\:focus\:max-w-6xl:focus{
    max-width     : 72rem !important;
  }

  .md\:focus\:max-w-7xl:focus{
    max-width     : 80rem !important;
  }

  .md\:focus\:max-w-full:focus{
    max-width     : 100% !important;
  }

  .md\:focus\:max-w-min-content:focus{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .md\:focus\:max-w-max-content:focus{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .md\:focus\:max-w-prose:focus{
    max-width     : 65ch !important;
  }

  .md\:focus\:max-w-screen-sm:focus{
    max-width     : 640px !important;
  }

  .md\:focus\:max-w-screen-md:focus{
    max-width     : 768px !important;
  }

  .md\:focus\:max-w-screen-lg:focus{
    max-width     : 1024px !important;
  }

  .md\:focus\:max-w-screen-xl:focus{
    max-width     : 1280px !important;
  }

  .md\:min-h-0{
    min-height     : 0 !important;
  }

  .md\:min-h-full{
    min-height     : 100% !important;
  }

  .md\:min-h-screen{
    min-height     : 100vh !important;
  }

  .group:hover .md\:group-hover\:min-h-0{
    min-height     : 0 !important;
  }

  .group:hover .md\:group-hover\:min-h-full{
    min-height     : 100% !important;
  }

  .group:hover .md\:group-hover\:min-h-screen{
    min-height     : 100vh !important;
  }

  .md\:hover\:min-h-0:hover{
    min-height     : 0 !important;
  }

  .md\:hover\:min-h-full:hover{
    min-height     : 100% !important;
  }

  .md\:hover\:min-h-screen:hover{
    min-height     : 100vh !important;
  }

  .md\:focus\:min-h-0:focus{
    min-height     : 0 !important;
  }

  .md\:focus\:min-h-full:focus{
    min-height     : 100% !important;
  }

  .md\:focus\:min-h-screen:focus{
    min-height     : 100vh !important;
  }

  .md\:min-w-0{
    min-width     : 0 !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;
  }

  .group:hover .md\:group-hover\:min-w-0{
    min-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:min-w-full{
    min-width     : 100% !important;
  }

  .group:hover .md\:group-hover\:min-w-min-content{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .group:hover .md\:group-hover\:min-w-max-content{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .md\:hover\:min-w-0:hover{
    min-width     : 0 !important;
  }

  .md\:hover\:min-w-full:hover{
    min-width     : 100% !important;
  }

  .md\:hover\:min-w-min-content:hover{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .md\:hover\:min-w-max-content:hover{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .md\:focus\:min-w-0:focus{
    min-width     : 0 !important;
  }

  .md\:focus\:min-w-full:focus{
    min-width     : 100% !important;
  }

  .md\:focus\:min-w-min-content:focus{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .md\:focus\:min-w-max-content:focus{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !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;
  }

  .group:hover .md\:group-hover\:object-contain{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .group:hover .md\:group-hover\:object-cover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .group:hover .md\:group-hover\:object-fill{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .group:hover .md\:group-hover\:object-none{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .group:hover .md\:group-hover\:object-scale-down{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .md\:hover\:object-contain:hover{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .md\:hover\:object-cover:hover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .md\:hover\:object-fill:hover{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .md\:hover\:object-none:hover{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .md\:hover\:object-scale-down:hover{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .md\:focus\:object-contain:focus{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .md\:focus\:object-cover:focus{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .md\:focus\:object-fill:focus{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .md\:focus\:object-none:focus{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .md\:focus\:object-scale-down:focus{
    -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;
  }

  .group:hover .md\:group-hover\:object-bottom{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .group:hover .md\:group-hover\:object-center{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .group:hover .md\:group-hover\:object-left{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .group:hover .md\:group-hover\:object-left-bottom{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .group:hover .md\:group-hover\:object-left-top{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .group:hover .md\:group-hover\:object-right{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .group:hover .md\:group-hover\:object-right-bottom{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .group:hover .md\:group-hover\:object-right-top{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .group:hover .md\:group-hover\:object-top{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .md\:hover\:object-bottom:hover{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .md\:hover\:object-center:hover{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .md\:hover\:object-left:hover{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .md\:hover\:object-left-bottom:hover{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .md\:hover\:object-left-top:hover{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .md\:hover\:object-right:hover{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .md\:hover\:object-right-bottom:hover{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .md\:hover\:object-right-top:hover{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .md\:hover\:object-top:hover{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .md\:focus\:object-bottom:focus{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .md\:focus\:object-center:focus{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .md\:focus\:object-left:focus{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .md\:focus\:object-left-bottom:focus{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .md\:focus\:object-left-top:focus{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .md\:focus\:object-right:focus{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .md\:focus\:object-right-bottom:focus{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .md\:focus\:object-right-top:focus{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .md\:focus\:object-top:focus{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .md\:opacity-0{
    opacity     : 0 !important;
  }

  .md\:opacity-25{
    opacity     : 0.25 !important;
  }

  .md\:opacity-50{
    opacity     : 0.5 !important;
  }

  .md\:opacity-75{
    opacity     : 0.75 !important;
  }

  .md\:opacity-100{
    opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:opacity-0{
    opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:opacity-25{
    opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:opacity-50{
    opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:opacity-75{
    opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:opacity-100{
    opacity     : 1 !important;
  }

  .md\:hover\:opacity-0:hover{
    opacity     : 0 !important;
  }

  .md\:hover\:opacity-25:hover{
    opacity     : 0.25 !important;
  }

  .md\:hover\:opacity-50:hover{
    opacity     : 0.5 !important;
  }

  .md\:hover\:opacity-75:hover{
    opacity     : 0.75 !important;
  }

  .md\:hover\:opacity-100:hover{
    opacity     : 1 !important;
  }

  .md\:focus\:opacity-0:focus{
    opacity     : 0 !important;
  }

  .md\:focus\:opacity-25:focus{
    opacity     : 0.25 !important;
  }

  .md\:focus\:opacity-50:focus{
    opacity     : 0.5 !important;
  }

  .md\:focus\:opacity-75:focus{
    opacity     : 0.75 !important;
  }

  .md\:focus\:opacity-100:focus{
    opacity     : 1 !important;
  }

  .md\:outline-none{
    outline     : 0 !important;
  }

  .group:hover .md\:group-hover\:outline-none{
    outline     : 0 !important;
  }

  .md\:hover\:outline-none:hover{
    outline     : 0 !important;
  }

  .md\:focus\:outline-none:focus{
    outline     : 0 !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;
  }

  .group:hover .md\:group-hover\:overflow-auto{
    overflow     : auto !important;
  }

  .group:hover .md\:group-hover\:overflow-hidden{
    overflow     : hidden !important;
  }

  .group:hover .md\:group-hover\:overflow-visible{
    overflow     : visible !important;
  }

  .group:hover .md\:group-hover\:overflow-scroll{
    overflow     : scroll !important;
  }

  .group:hover .md\:group-hover\:overflow-x-auto{
    overflow-x     : auto !important;
  }

  .group:hover .md\:group-hover\:overflow-y-auto{
    overflow-y     : auto !important;
  }

  .group:hover .md\:group-hover\:overflow-x-hidden{
    overflow-x     : hidden !important;
  }

  .group:hover .md\:group-hover\:overflow-y-hidden{
    overflow-y     : hidden !important;
  }

  .group:hover .md\:group-hover\:overflow-x-visible{
    overflow-x     : visible !important;
  }

  .group:hover .md\:group-hover\:overflow-y-visible{
    overflow-y     : visible !important;
  }

  .group:hover .md\:group-hover\:overflow-x-scroll{
    overflow-x     : scroll !important;
  }

  .group:hover .md\:group-hover\:overflow-y-scroll{
    overflow-y     : scroll !important;
  }

  .group:hover .md\:group-hover\:scrolling-touch{
    -webkit-overflow-scrolling     : touch !important;
  }

  .group:hover .md\:group-hover\:scrolling-auto{
    -webkit-overflow-scrolling     : auto !important;
  }

  .md\:hover\:overflow-auto:hover{
    overflow     : auto !important;
  }

  .md\:hover\:overflow-hidden:hover{
    overflow     : hidden !important;
  }

  .md\:hover\:overflow-visible:hover{
    overflow     : visible !important;
  }

  .md\:hover\:overflow-scroll:hover{
    overflow     : scroll !important;
  }

  .md\:hover\:overflow-x-auto:hover{
    overflow-x     : auto !important;
  }

  .md\:hover\:overflow-y-auto:hover{
    overflow-y     : auto !important;
  }

  .md\:hover\:overflow-x-hidden:hover{
    overflow-x     : hidden !important;
  }

  .md\:hover\:overflow-y-hidden:hover{
    overflow-y     : hidden !important;
  }

  .md\:hover\:overflow-x-visible:hover{
    overflow-x     : visible !important;
  }

  .md\:hover\:overflow-y-visible:hover{
    overflow-y     : visible !important;
  }

  .md\:hover\:overflow-x-scroll:hover{
    overflow-x     : scroll !important;
  }

  .md\:hover\:overflow-y-scroll:hover{
    overflow-y     : scroll !important;
  }

  .md\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling     : touch !important;
  }

  .md\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling     : auto !important;
  }

  .md\:focus\:overflow-auto:focus{
    overflow     : auto !important;
  }

  .md\:focus\:overflow-hidden:focus{
    overflow     : hidden !important;
  }

  .md\:focus\:overflow-visible:focus{
    overflow     : visible !important;
  }

  .md\:focus\:overflow-scroll:focus{
    overflow     : scroll !important;
  }

  .md\:focus\:overflow-x-auto:focus{
    overflow-x     : auto !important;
  }

  .md\:focus\:overflow-y-auto:focus{
    overflow-y     : auto !important;
  }

  .md\:focus\:overflow-x-hidden:focus{
    overflow-x     : hidden !important;
  }

  .md\:focus\:overflow-y-hidden:focus{
    overflow-y     : hidden !important;
  }

  .md\:focus\:overflow-x-visible:focus{
    overflow-x     : visible !important;
  }

  .md\:focus\:overflow-y-visible:focus{
    overflow-y     : visible !important;
  }

  .md\:focus\:overflow-x-scroll:focus{
    overflow-x     : scroll !important;
  }

  .md\:focus\:overflow-y-scroll:focus{
    overflow-y     : scroll !important;
  }

  .md\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling     : touch !important;
  }

  .md\:focus\:scrolling-auto:focus{
    -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;
  }

  .group:hover .md\:group-hover\:overscroll-auto{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .group:hover .md\:group-hover\:overscroll-contain{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .group:hover .md\:group-hover\:overscroll-none{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .group:hover .md\:group-hover\:overscroll-y-auto{
    overscroll-behavior-y     : auto !important;
  }

  .group:hover .md\:group-hover\:overscroll-y-contain{
    overscroll-behavior-y     : contain !important;
  }

  .group:hover .md\:group-hover\:overscroll-y-none{
    overscroll-behavior-y     : none !important;
  }

  .group:hover .md\:group-hover\:overscroll-x-auto{
    overscroll-behavior-x     : auto !important;
  }

  .group:hover .md\:group-hover\:overscroll-x-contain{
    overscroll-behavior-x     : contain !important;
  }

  .group:hover .md\:group-hover\:overscroll-x-none{
    overscroll-behavior-x     : none !important;
  }

  .md\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .md\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .md\:hover\:overscroll-none:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .md\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y     : auto !important;
  }

  .md\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y     : contain !important;
  }

  .md\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y     : none !important;
  }

  .md\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x     : auto !important;
  }

  .md\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x     : contain !important;
  }

  .md\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x     : none !important;
  }

  .md\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .md\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .md\:focus\:overscroll-none:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .md\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y     : auto !important;
  }

  .md\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y     : contain !important;
  }

  .md\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y     : none !important;
  }

  .md\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x     : auto !important;
  }

  .md\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x     : contain !important;
  }

  .md\:focus\:overscroll-x-none:focus{
    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-20{
    padding     : 5rem !important;
  }

  .md\:p-24{
    padding     : 6rem !important;
  }

  .md\:p-28{
    padding     : 7rem !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-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-96{
    padding     : 24rem !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\: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-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .md\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 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-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .md\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !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-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-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .md\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !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\: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-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-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-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-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-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-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-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;
  }

  .group:hover .md\:group-hover\:p-0{
    padding     : 0 !important;
  }

  .group:hover .md\:group-hover\:p-1{
    padding     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:p-2{
    padding     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:p-3{
    padding     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:p-4{
    padding     : 1rem !important;
  }

  .group:hover .md\:group-hover\:p-5{
    padding     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:p-6{
    padding     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:p-7{
    padding     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:p-8{
    padding     : 2rem !important;
  }

  .group:hover .md\:group-hover\:p-9{
    padding     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:p-10{
    padding     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:p-11{
    padding     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:p-12{
    padding     : 3rem !important;
  }

  .group:hover .md\:group-hover\:p-13{
    padding     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:p-14{
    padding     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:p-15{
    padding     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:p-16{
    padding     : 4rem !important;
  }

  .group:hover .md\:group-hover\:p-20{
    padding     : 5rem !important;
  }

  .group:hover .md\:group-hover\:p-24{
    padding     : 6rem !important;
  }

  .group:hover .md\:group-hover\:p-28{
    padding     : 7rem !important;
  }

  .group:hover .md\:group-hover\:p-32{
    padding     : 8rem !important;
  }

  .group:hover .md\:group-hover\:p-36{
    padding     : 9rem !important;
  }

  .group:hover .md\:group-hover\:p-40{
    padding     : 10rem !important;
  }

  .group:hover .md\:group-hover\:p-44{
    padding     : 11rem !important;
  }

  .group:hover .md\:group-hover\:p-48{
    padding     : 12rem !important;
  }

  .group:hover .md\:group-hover\:p-52{
    padding     : 13rem !important;
  }

  .group:hover .md\:group-hover\:p-56{
    padding     : 14rem !important;
  }

  .group:hover .md\:group-hover\:p-60{
    padding     : 15rem !important;
  }

  .group:hover .md\:group-hover\:p-64{
    padding     : 16rem !important;
  }

  .group:hover .md\:group-hover\:p-72{
    padding     : 18rem !important;
  }

  .group:hover .md\:group-hover\:p-80{
    padding     : 20rem !important;
  }

  .group:hover .md\:group-hover\:p-96{
    padding     : 24rem !important;
  }

  .group:hover .md\:group-hover\:p-px{
    padding     : 1px !important;
  }

  .group:hover .md\:group-hover\:p-0\.5{
    padding     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:p-1\.5{
    padding     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:p-2\.5{
    padding     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:p-3\.5{
    padding     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:p-1\/2{
    padding     : 50% !important;
  }

  .group:hover .md\:group-hover\:p-1\/3{
    padding     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:p-2\/3{
    padding     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:p-1\/4{
    padding     : 25% !important;
  }

  .group:hover .md\:group-hover\:p-2\/4{
    padding     : 50% !important;
  }

  .group:hover .md\:group-hover\:p-3\/4{
    padding     : 75% !important;
  }

  .group:hover .md\:group-hover\:p-1\/5{
    padding     : 20% !important;
  }

  .group:hover .md\:group-hover\:p-2\/5{
    padding     : 40% !important;
  }

  .group:hover .md\:group-hover\:p-3\/5{
    padding     : 60% !important;
  }

  .group:hover .md\:group-hover\:p-4\/5{
    padding     : 80% !important;
  }

  .group:hover .md\:group-hover\:p-1\/6{
    padding     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:p-2\/6{
    padding     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:p-3\/6{
    padding     : 50% !important;
  }

  .group:hover .md\:group-hover\:p-4\/6{
    padding     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:p-5\/6{
    padding     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:p-1\/12{
    padding     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:p-2\/12{
    padding     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:p-3\/12{
    padding     : 25% !important;
  }

  .group:hover .md\:group-hover\:p-4\/12{
    padding     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:p-5\/12{
    padding     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:p-6\/12{
    padding     : 50% !important;
  }

  .group:hover .md\:group-hover\:p-7\/12{
    padding     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:p-8\/12{
    padding     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:p-9\/12{
    padding     : 75% !important;
  }

  .group:hover .md\:group-hover\:p-10\/12{
    padding     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:p-11\/12{
    padding     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:p-full{
    padding     : 100% !important;
  }

  .group:hover .md\:group-hover\:py-0{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:px-0{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .group:hover .md\:group-hover\:py-1{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:px-1{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:py-2{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:px-2{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:py-3{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:px-3{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:py-4{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:px-4{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .group:hover .md\:group-hover\:py-5{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:px-5{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:py-6{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:px-6{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:py-7{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:px-7{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:py-8{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:px-8{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .group:hover .md\:group-hover\:py-9{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:px-9{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:py-10{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:px-10{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:py-11{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:px-11{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:py-12{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:px-12{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .group:hover .md\:group-hover\:py-13{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:px-13{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:py-14{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:px-14{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:py-15{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:px-15{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:py-16{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:px-16{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .group:hover .md\:group-hover\:py-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .group:hover .md\:group-hover\:py-24{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:px-24{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .group:hover .md\:group-hover\:py-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .group:hover .md\:group-hover\:py-32{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:px-32{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .group:hover .md\:group-hover\:py-36{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:px-36{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .group:hover .md\:group-hover\:py-40{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:px-40{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .group:hover .md\:group-hover\:py-44{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:px-44{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .group:hover .md\:group-hover\:py-48{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:px-48{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .group:hover .md\:group-hover\:py-52{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:px-52{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .group:hover .md\:group-hover\:py-56{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:px-56{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .group:hover .md\:group-hover\:py-60{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:px-60{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .group:hover .md\:group-hover\:py-64{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:px-64{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .group:hover .md\:group-hover\:py-72{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:px-72{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .group:hover .md\:group-hover\:py-80{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:px-80{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .group:hover .md\:group-hover\:py-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .group:hover .md\:group-hover\:py-px{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:px-px{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .group:hover .md\:group-hover\:py-0\.5{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:px-0\.5{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:py-1\.5{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:px-1\.5{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:py-2\.5{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:px-2\.5{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:py-3\.5{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:px-3\.5{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:py-1\/2{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:px-1\/2{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:py-1\/3{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:px-1\/3{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:py-2\/3{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:px-2\/3{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:py-1\/4{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:px-1\/4{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:py-2\/4{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:px-2\/4{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:py-3\/4{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:px-3\/4{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:py-1\/5{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:px-1\/5{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .group:hover .md\:group-hover\:py-2\/5{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:px-2\/5{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .group:hover .md\:group-hover\:py-3\/5{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:px-3\/5{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .group:hover .md\:group-hover\:py-4\/5{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:px-4\/5{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .group:hover .md\:group-hover\:py-1\/6{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:px-1\/6{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:py-2\/6{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:px-2\/6{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:py-3\/6{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:px-3\/6{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:py-4\/6{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:px-4\/6{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:py-5\/6{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:px-5\/6{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:py-1\/12{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:px-1\/12{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:py-2\/12{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:px-2\/12{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:py-3\/12{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:px-3\/12{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:py-4\/12{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:px-4\/12{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:py-5\/12{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:px-5\/12{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:py-6\/12{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:px-6\/12{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:py-7\/12{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:px-7\/12{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:py-8\/12{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:px-8\/12{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:py-9\/12{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:px-9\/12{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:py-10\/12{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:px-10\/12{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:py-11\/12{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:px-11\/12{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:py-full{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:px-full{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .group:hover .md\:group-hover\:pt-0{
    padding-top     : 0 !important;
  }

  .group:hover .md\:group-hover\:pr-0{
    padding-right     : 0 !important;
  }

  .group:hover .md\:group-hover\:pb-0{
    padding-bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:pl-0{
    padding-left     : 0 !important;
  }

  .group:hover .md\:group-hover\:pt-1{
    padding-top     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:pr-1{
    padding-right     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:pb-1{
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:pl-1{
    padding-left     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:pt-2{
    padding-top     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:pr-2{
    padding-right     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:pb-2{
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:pl-2{
    padding-left     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:pt-3{
    padding-top     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:pr-3{
    padding-right     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:pb-3{
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:pl-3{
    padding-left     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:pt-4{
    padding-top     : 1rem !important;
  }

  .group:hover .md\:group-hover\:pr-4{
    padding-right     : 1rem !important;
  }

  .group:hover .md\:group-hover\:pb-4{
    padding-bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:pl-4{
    padding-left     : 1rem !important;
  }

  .group:hover .md\:group-hover\:pt-5{
    padding-top     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:pr-5{
    padding-right     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:pb-5{
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:pl-5{
    padding-left     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:pt-6{
    padding-top     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:pr-6{
    padding-right     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:pb-6{
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:pl-6{
    padding-left     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:pt-7{
    padding-top     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:pr-7{
    padding-right     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:pb-7{
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:pl-7{
    padding-left     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:pt-8{
    padding-top     : 2rem !important;
  }

  .group:hover .md\:group-hover\:pr-8{
    padding-right     : 2rem !important;
  }

  .group:hover .md\:group-hover\:pb-8{
    padding-bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:pl-8{
    padding-left     : 2rem !important;
  }

  .group:hover .md\:group-hover\:pt-9{
    padding-top     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:pr-9{
    padding-right     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:pb-9{
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:pl-9{
    padding-left     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:pt-10{
    padding-top     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:pr-10{
    padding-right     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:pb-10{
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:pl-10{
    padding-left     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:pt-11{
    padding-top     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:pr-11{
    padding-right     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:pb-11{
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:pl-11{
    padding-left     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:pt-12{
    padding-top     : 3rem !important;
  }

  .group:hover .md\:group-hover\:pr-12{
    padding-right     : 3rem !important;
  }

  .group:hover .md\:group-hover\:pb-12{
    padding-bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:pl-12{
    padding-left     : 3rem !important;
  }

  .group:hover .md\:group-hover\:pt-13{
    padding-top     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:pr-13{
    padding-right     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:pb-13{
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:pl-13{
    padding-left     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:pt-14{
    padding-top     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:pr-14{
    padding-right     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:pb-14{
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:pl-14{
    padding-left     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:pt-15{
    padding-top     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:pr-15{
    padding-right     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:pb-15{
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:pl-15{
    padding-left     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:pt-16{
    padding-top     : 4rem !important;
  }

  .group:hover .md\:group-hover\:pr-16{
    padding-right     : 4rem !important;
  }

  .group:hover .md\:group-hover\:pb-16{
    padding-bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:pl-16{
    padding-left     : 4rem !important;
  }

  .group:hover .md\:group-hover\:pt-20{
    padding-top     : 5rem !important;
  }

  .group:hover .md\:group-hover\:pr-20{
    padding-right     : 5rem !important;
  }

  .group:hover .md\:group-hover\:pb-20{
    padding-bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:pl-20{
    padding-left     : 5rem !important;
  }

  .group:hover .md\:group-hover\:pt-24{
    padding-top     : 6rem !important;
  }

  .group:hover .md\:group-hover\:pr-24{
    padding-right     : 6rem !important;
  }

  .group:hover .md\:group-hover\:pb-24{
    padding-bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:pl-24{
    padding-left     : 6rem !important;
  }

  .group:hover .md\:group-hover\:pt-28{
    padding-top     : 7rem !important;
  }

  .group:hover .md\:group-hover\:pr-28{
    padding-right     : 7rem !important;
  }

  .group:hover .md\:group-hover\:pb-28{
    padding-bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:pl-28{
    padding-left     : 7rem !important;
  }

  .group:hover .md\:group-hover\:pt-32{
    padding-top     : 8rem !important;
  }

  .group:hover .md\:group-hover\:pr-32{
    padding-right     : 8rem !important;
  }

  .group:hover .md\:group-hover\:pb-32{
    padding-bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:pl-32{
    padding-left     : 8rem !important;
  }

  .group:hover .md\:group-hover\:pt-36{
    padding-top     : 9rem !important;
  }

  .group:hover .md\:group-hover\:pr-36{
    padding-right     : 9rem !important;
  }

  .group:hover .md\:group-hover\:pb-36{
    padding-bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:pl-36{
    padding-left     : 9rem !important;
  }

  .group:hover .md\:group-hover\:pt-40{
    padding-top     : 10rem !important;
  }

  .group:hover .md\:group-hover\:pr-40{
    padding-right     : 10rem !important;
  }

  .group:hover .md\:group-hover\:pb-40{
    padding-bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:pl-40{
    padding-left     : 10rem !important;
  }

  .group:hover .md\:group-hover\:pt-44{
    padding-top     : 11rem !important;
  }

  .group:hover .md\:group-hover\:pr-44{
    padding-right     : 11rem !important;
  }

  .group:hover .md\:group-hover\:pb-44{
    padding-bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:pl-44{
    padding-left     : 11rem !important;
  }

  .group:hover .md\:group-hover\:pt-48{
    padding-top     : 12rem !important;
  }

  .group:hover .md\:group-hover\:pr-48{
    padding-right     : 12rem !important;
  }

  .group:hover .md\:group-hover\:pb-48{
    padding-bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:pl-48{
    padding-left     : 12rem !important;
  }

  .group:hover .md\:group-hover\:pt-52{
    padding-top     : 13rem !important;
  }

  .group:hover .md\:group-hover\:pr-52{
    padding-right     : 13rem !important;
  }

  .group:hover .md\:group-hover\:pb-52{
    padding-bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:pl-52{
    padding-left     : 13rem !important;
  }

  .group:hover .md\:group-hover\:pt-56{
    padding-top     : 14rem !important;
  }

  .group:hover .md\:group-hover\:pr-56{
    padding-right     : 14rem !important;
  }

  .group:hover .md\:group-hover\:pb-56{
    padding-bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:pl-56{
    padding-left     : 14rem !important;
  }

  .group:hover .md\:group-hover\:pt-60{
    padding-top     : 15rem !important;
  }

  .group:hover .md\:group-hover\:pr-60{
    padding-right     : 15rem !important;
  }

  .group:hover .md\:group-hover\:pb-60{
    padding-bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:pl-60{
    padding-left     : 15rem !important;
  }

  .group:hover .md\:group-hover\:pt-64{
    padding-top     : 16rem !important;
  }

  .group:hover .md\:group-hover\:pr-64{
    padding-right     : 16rem !important;
  }

  .group:hover .md\:group-hover\:pb-64{
    padding-bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:pl-64{
    padding-left     : 16rem !important;
  }

  .group:hover .md\:group-hover\:pt-72{
    padding-top     : 18rem !important;
  }

  .group:hover .md\:group-hover\:pr-72{
    padding-right     : 18rem !important;
  }

  .group:hover .md\:group-hover\:pb-72{
    padding-bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:pl-72{
    padding-left     : 18rem !important;
  }

  .group:hover .md\:group-hover\:pt-80{
    padding-top     : 20rem !important;
  }

  .group:hover .md\:group-hover\:pr-80{
    padding-right     : 20rem !important;
  }

  .group:hover .md\:group-hover\:pb-80{
    padding-bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:pl-80{
    padding-left     : 20rem !important;
  }

  .group:hover .md\:group-hover\:pt-96{
    padding-top     : 24rem !important;
  }

  .group:hover .md\:group-hover\:pr-96{
    padding-right     : 24rem !important;
  }

  .group:hover .md\:group-hover\:pb-96{
    padding-bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:pl-96{
    padding-left     : 24rem !important;
  }

  .group:hover .md\:group-hover\:pt-px{
    padding-top     : 1px !important;
  }

  .group:hover .md\:group-hover\:pr-px{
    padding-right     : 1px !important;
  }

  .group:hover .md\:group-hover\:pb-px{
    padding-bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:pl-px{
    padding-left     : 1px !important;
  }

  .group:hover .md\:group-hover\:pt-0\.5{
    padding-top     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:pr-0\.5{
    padding-right     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:pb-0\.5{
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:pl-0\.5{
    padding-left     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:pt-1\.5{
    padding-top     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:pr-1\.5{
    padding-right     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:pb-1\.5{
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:pl-1\.5{
    padding-left     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:pt-2\.5{
    padding-top     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:pr-2\.5{
    padding-right     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:pb-2\.5{
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:pl-2\.5{
    padding-left     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:pt-3\.5{
    padding-top     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:pr-3\.5{
    padding-right     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:pb-3\.5{
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:pl-3\.5{
    padding-left     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:pt-1\/2{
    padding-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/2{
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/2{
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/2{
    padding-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:pt-1\/3{
    padding-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/3{
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/3{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/3{
    padding-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-2\/3{
    padding-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-2\/3{
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-2\/3{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-2\/3{
    padding-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-1\/4{
    padding-top     : 25% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/4{
    padding-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/4{
    padding-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/4{
    padding-left     : 25% !important;
  }

  .group:hover .md\:group-hover\:pt-2\/4{
    padding-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:pr-2\/4{
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:pb-2\/4{
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:pl-2\/4{
    padding-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:pt-3\/4{
    padding-top     : 75% !important;
  }

  .group:hover .md\:group-hover\:pr-3\/4{
    padding-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:pb-3\/4{
    padding-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:pl-3\/4{
    padding-left     : 75% !important;
  }

  .group:hover .md\:group-hover\:pt-1\/5{
    padding-top     : 20% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/5{
    padding-right     : 20% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/5{
    padding-bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/5{
    padding-left     : 20% !important;
  }

  .group:hover .md\:group-hover\:pt-2\/5{
    padding-top     : 40% !important;
  }

  .group:hover .md\:group-hover\:pr-2\/5{
    padding-right     : 40% !important;
  }

  .group:hover .md\:group-hover\:pb-2\/5{
    padding-bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:pl-2\/5{
    padding-left     : 40% !important;
  }

  .group:hover .md\:group-hover\:pt-3\/5{
    padding-top     : 60% !important;
  }

  .group:hover .md\:group-hover\:pr-3\/5{
    padding-right     : 60% !important;
  }

  .group:hover .md\:group-hover\:pb-3\/5{
    padding-bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:pl-3\/5{
    padding-left     : 60% !important;
  }

  .group:hover .md\:group-hover\:pt-4\/5{
    padding-top     : 80% !important;
  }

  .group:hover .md\:group-hover\:pr-4\/5{
    padding-right     : 80% !important;
  }

  .group:hover .md\:group-hover\:pb-4\/5{
    padding-bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:pl-4\/5{
    padding-left     : 80% !important;
  }

  .group:hover .md\:group-hover\:pt-1\/6{
    padding-top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/6{
    padding-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/6{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/6{
    padding-left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-2\/6{
    padding-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-2\/6{
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-2\/6{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-2\/6{
    padding-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-3\/6{
    padding-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:pr-3\/6{
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:pb-3\/6{
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:pl-3\/6{
    padding-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:pt-4\/6{
    padding-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-4\/6{
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-4\/6{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-4\/6{
    padding-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-5\/6{
    padding-top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-5\/6{
    padding-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-5\/6{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-5\/6{
    padding-left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-1\/12{
    padding-top     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-1\/12{
    padding-right     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-1\/12{
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-1\/12{
    padding-left     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-2\/12{
    padding-top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-2\/12{
    padding-right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-2\/12{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-2\/12{
    padding-left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-3\/12{
    padding-top     : 25% !important;
  }

  .group:hover .md\:group-hover\:pr-3\/12{
    padding-right     : 25% !important;
  }

  .group:hover .md\:group-hover\:pb-3\/12{
    padding-bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:pl-3\/12{
    padding-left     : 25% !important;
  }

  .group:hover .md\:group-hover\:pt-4\/12{
    padding-top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-4\/12{
    padding-right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-4\/12{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-4\/12{
    padding-left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-5\/12{
    padding-top     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-5\/12{
    padding-right     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-5\/12{
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-5\/12{
    padding-left     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-6\/12{
    padding-top     : 50% !important;
  }

  .group:hover .md\:group-hover\:pr-6\/12{
    padding-right     : 50% !important;
  }

  .group:hover .md\:group-hover\:pb-6\/12{
    padding-bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:pl-6\/12{
    padding-left     : 50% !important;
  }

  .group:hover .md\:group-hover\:pt-7\/12{
    padding-top     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-7\/12{
    padding-right     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-7\/12{
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-7\/12{
    padding-left     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-8\/12{
    padding-top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-8\/12{
    padding-right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-8\/12{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-8\/12{
    padding-left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-9\/12{
    padding-top     : 75% !important;
  }

  .group:hover .md\:group-hover\:pr-9\/12{
    padding-right     : 75% !important;
  }

  .group:hover .md\:group-hover\:pb-9\/12{
    padding-bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:pl-9\/12{
    padding-left     : 75% !important;
  }

  .group:hover .md\:group-hover\:pt-10\/12{
    padding-top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pr-10\/12{
    padding-right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pb-10\/12{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pl-10\/12{
    padding-left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:pt-11\/12{
    padding-top     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:pr-11\/12{
    padding-right     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:pb-11\/12{
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:pl-11\/12{
    padding-left     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:pt-full{
    padding-top     : 100% !important;
  }

  .group:hover .md\:group-hover\:pr-full{
    padding-right     : 100% !important;
  }

  .group:hover .md\:group-hover\:pb-full{
    padding-bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:pl-full{
    padding-left     : 100% !important;
  }

  .md\:hover\:p-0:hover{
    padding     : 0 !important;
  }

  .md\:hover\:p-1:hover{
    padding     : 0.25rem !important;
  }

  .md\:hover\:p-2:hover{
    padding     : 0.5rem !important;
  }

  .md\:hover\:p-3:hover{
    padding     : 0.75rem !important;
  }

  .md\:hover\:p-4:hover{
    padding     : 1rem !important;
  }

  .md\:hover\:p-5:hover{
    padding     : 1.25rem !important;
  }

  .md\:hover\:p-6:hover{
    padding     : 1.5rem !important;
  }

  .md\:hover\:p-7:hover{
    padding     : 1.75rem !important;
  }

  .md\:hover\:p-8:hover{
    padding     : 2rem !important;
  }

  .md\:hover\:p-9:hover{
    padding     : 2.25rem !important;
  }

  .md\:hover\:p-10:hover{
    padding     : 2.5rem !important;
  }

  .md\:hover\:p-11:hover{
    padding     : 2.75rem !important;
  }

  .md\:hover\:p-12:hover{
    padding     : 3rem !important;
  }

  .md\:hover\:p-13:hover{
    padding     : 3.25rem !important;
  }

  .md\:hover\:p-14:hover{
    padding     : 3.5rem !important;
  }

  .md\:hover\:p-15:hover{
    padding     : 3.75rem !important;
  }

  .md\:hover\:p-16:hover{
    padding     : 4rem !important;
  }

  .md\:hover\:p-20:hover{
    padding     : 5rem !important;
  }

  .md\:hover\:p-24:hover{
    padding     : 6rem !important;
  }

  .md\:hover\:p-28:hover{
    padding     : 7rem !important;
  }

  .md\:hover\:p-32:hover{
    padding     : 8rem !important;
  }

  .md\:hover\:p-36:hover{
    padding     : 9rem !important;
  }

  .md\:hover\:p-40:hover{
    padding     : 10rem !important;
  }

  .md\:hover\:p-44:hover{
    padding     : 11rem !important;
  }

  .md\:hover\:p-48:hover{
    padding     : 12rem !important;
  }

  .md\:hover\:p-52:hover{
    padding     : 13rem !important;
  }

  .md\:hover\:p-56:hover{
    padding     : 14rem !important;
  }

  .md\:hover\:p-60:hover{
    padding     : 15rem !important;
  }

  .md\:hover\:p-64:hover{
    padding     : 16rem !important;
  }

  .md\:hover\:p-72:hover{
    padding     : 18rem !important;
  }

  .md\:hover\:p-80:hover{
    padding     : 20rem !important;
  }

  .md\:hover\:p-96:hover{
    padding     : 24rem !important;
  }

  .md\:hover\:p-px:hover{
    padding     : 1px !important;
  }

  .md\:hover\:p-0\.5:hover{
    padding     : 0.125rem !important;
  }

  .md\:hover\:p-1\.5:hover{
    padding     : 0.375rem !important;
  }

  .md\:hover\:p-2\.5:hover{
    padding     : 0.625rem !important;
  }

  .md\:hover\:p-3\.5:hover{
    padding     : 0.875rem !important;
  }

  .md\:hover\:p-1\/2:hover{
    padding     : 50% !important;
  }

  .md\:hover\:p-1\/3:hover{
    padding     : 33.333333% !important;
  }

  .md\:hover\:p-2\/3:hover{
    padding     : 66.666667% !important;
  }

  .md\:hover\:p-1\/4:hover{
    padding     : 25% !important;
  }

  .md\:hover\:p-2\/4:hover{
    padding     : 50% !important;
  }

  .md\:hover\:p-3\/4:hover{
    padding     : 75% !important;
  }

  .md\:hover\:p-1\/5:hover{
    padding     : 20% !important;
  }

  .md\:hover\:p-2\/5:hover{
    padding     : 40% !important;
  }

  .md\:hover\:p-3\/5:hover{
    padding     : 60% !important;
  }

  .md\:hover\:p-4\/5:hover{
    padding     : 80% !important;
  }

  .md\:hover\:p-1\/6:hover{
    padding     : 16.666667% !important;
  }

  .md\:hover\:p-2\/6:hover{
    padding     : 33.333333% !important;
  }

  .md\:hover\:p-3\/6:hover{
    padding     : 50% !important;
  }

  .md\:hover\:p-4\/6:hover{
    padding     : 66.666667% !important;
  }

  .md\:hover\:p-5\/6:hover{
    padding     : 83.333333% !important;
  }

  .md\:hover\:p-1\/12:hover{
    padding     : 8.333333% !important;
  }

  .md\:hover\:p-2\/12:hover{
    padding     : 16.666667% !important;
  }

  .md\:hover\:p-3\/12:hover{
    padding     : 25% !important;
  }

  .md\:hover\:p-4\/12:hover{
    padding     : 33.333333% !important;
  }

  .md\:hover\:p-5\/12:hover{
    padding     : 41.666667% !important;
  }

  .md\:hover\:p-6\/12:hover{
    padding     : 50% !important;
  }

  .md\:hover\:p-7\/12:hover{
    padding     : 58.333333% !important;
  }

  .md\:hover\:p-8\/12:hover{
    padding     : 66.666667% !important;
  }

  .md\:hover\:p-9\/12:hover{
    padding     : 75% !important;
  }

  .md\:hover\:p-10\/12:hover{
    padding     : 83.333333% !important;
  }

  .md\:hover\:p-11\/12:hover{
    padding     : 91.666667% !important;
  }

  .md\:hover\:p-full:hover{
    padding     : 100% !important;
  }

  .md\:hover\:py-0:hover{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .md\:hover\:px-0:hover{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .md\:hover\:py-1:hover{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .md\:hover\:px-1:hover{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .md\:hover\:py-2:hover{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .md\:hover\:px-2:hover{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .md\:hover\:py-3:hover{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .md\:hover\:px-3:hover{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .md\:hover\:py-4:hover{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .md\:hover\:px-4:hover{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .md\:hover\:py-5:hover{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .md\:hover\:px-5:hover{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .md\:hover\:py-6:hover{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .md\:hover\:px-6:hover{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .md\:hover\:py-7:hover{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .md\:hover\:px-7:hover{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .md\:hover\:py-8:hover{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .md\:hover\:px-8:hover{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .md\:hover\:py-9:hover{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .md\:hover\:px-9:hover{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .md\:hover\:py-10:hover{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .md\:hover\:px-10:hover{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .md\:hover\:py-11:hover{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .md\:hover\:px-11:hover{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .md\:hover\:py-12:hover{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .md\:hover\:px-12:hover{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .md\:hover\:py-13:hover{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .md\:hover\:px-13:hover{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .md\:hover\:py-14:hover{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .md\:hover\:px-14:hover{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .md\:hover\:py-15:hover{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .md\:hover\:px-15:hover{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .md\:hover\:py-16:hover{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .md\:hover\:px-16:hover{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .md\:hover\:py-20:hover{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .md\:hover\:px-20:hover{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .md\:hover\:py-24:hover{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .md\:hover\:px-24:hover{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .md\:hover\:py-28:hover{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .md\:hover\:px-28:hover{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .md\:hover\:py-32:hover{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .md\:hover\:px-32:hover{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .md\:hover\:py-36:hover{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .md\:hover\:px-36:hover{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .md\:hover\:py-40:hover{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .md\:hover\:px-40:hover{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .md\:hover\:py-44:hover{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .md\:hover\:px-44:hover{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .md\:hover\:py-48:hover{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .md\:hover\:px-48:hover{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .md\:hover\:py-52:hover{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .md\:hover\:px-52:hover{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .md\:hover\:py-56:hover{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .md\:hover\:px-56:hover{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .md\:hover\:py-60:hover{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .md\:hover\:px-60:hover{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .md\:hover\:py-64:hover{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .md\:hover\:px-64:hover{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .md\:hover\:py-72:hover{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .md\:hover\:px-72:hover{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .md\:hover\:py-80:hover{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .md\:hover\:px-80:hover{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .md\:hover\:py-96:hover{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .md\:hover\:px-96:hover{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .md\:hover\:py-px:hover{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .md\:hover\:px-px:hover{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .md\:hover\:py-0\.5:hover{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .md\:hover\:px-0\.5:hover{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .md\:hover\:py-1\.5:hover{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .md\:hover\:px-1\.5:hover{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .md\:hover\:py-2\.5:hover{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .md\:hover\:px-2\.5:hover{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .md\:hover\:py-3\.5:hover{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .md\:hover\:px-3\.5:hover{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .md\:hover\:py-1\/2:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:hover\:px-1\/2:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:hover\:py-1\/3:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:px-1\/3:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:py-2\/3:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:px-2\/3:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:py-1\/4:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .md\:hover\:px-1\/4:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .md\:hover\:py-2\/4:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:hover\:px-2\/4:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:hover\:py-3\/4:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .md\:hover\:px-3\/4:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .md\:hover\:py-1\/5:hover{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .md\:hover\:px-1\/5:hover{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .md\:hover\:py-2\/5:hover{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .md\:hover\:px-2\/5:hover{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .md\:hover\:py-3\/5:hover{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .md\:hover\:px-3\/5:hover{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .md\:hover\:py-4\/5:hover{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .md\:hover\:px-4\/5:hover{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .md\:hover\:py-1\/6:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .md\:hover\:px-1\/6:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .md\:hover\:py-2\/6:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:px-2\/6:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:py-3\/6:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:hover\:px-3\/6:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:hover\:py-4\/6:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:px-4\/6:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:py-5\/6:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .md\:hover\:px-5\/6:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .md\:hover\:py-1\/12:hover{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .md\:hover\:px-1\/12:hover{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .md\:hover\:py-2\/12:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .md\:hover\:px-2\/12:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .md\:hover\:py-3\/12:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .md\:hover\:px-3\/12:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .md\:hover\:py-4\/12:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:px-4\/12:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:py-5\/12:hover{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .md\:hover\:px-5\/12:hover{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .md\:hover\:py-6\/12:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:hover\:px-6\/12:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:hover\:py-7\/12:hover{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .md\:hover\:px-7\/12:hover{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .md\:hover\:py-8\/12:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:px-8\/12:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:py-9\/12:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .md\:hover\:px-9\/12:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .md\:hover\:py-10\/12:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .md\:hover\:px-10\/12:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .md\:hover\:py-11\/12:hover{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .md\:hover\:px-11\/12:hover{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .md\:hover\:py-full:hover{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .md\:hover\:px-full:hover{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .md\:hover\:pt-0:hover{
    padding-top     : 0 !important;
  }

  .md\:hover\:pr-0:hover{
    padding-right     : 0 !important;
  }

  .md\:hover\:pb-0:hover{
    padding-bottom     : 0 !important;
  }

  .md\:hover\:pl-0:hover{
    padding-left     : 0 !important;
  }

  .md\:hover\:pt-1:hover{
    padding-top     : 0.25rem !important;
  }

  .md\:hover\:pr-1:hover{
    padding-right     : 0.25rem !important;
  }

  .md\:hover\:pb-1:hover{
    padding-bottom     : 0.25rem !important;
  }

  .md\:hover\:pl-1:hover{
    padding-left     : 0.25rem !important;
  }

  .md\:hover\:pt-2:hover{
    padding-top     : 0.5rem !important;
  }

  .md\:hover\:pr-2:hover{
    padding-right     : 0.5rem !important;
  }

  .md\:hover\:pb-2:hover{
    padding-bottom     : 0.5rem !important;
  }

  .md\:hover\:pl-2:hover{
    padding-left     : 0.5rem !important;
  }

  .md\:hover\:pt-3:hover{
    padding-top     : 0.75rem !important;
  }

  .md\:hover\:pr-3:hover{
    padding-right     : 0.75rem !important;
  }

  .md\:hover\:pb-3:hover{
    padding-bottom     : 0.75rem !important;
  }

  .md\:hover\:pl-3:hover{
    padding-left     : 0.75rem !important;
  }

  .md\:hover\:pt-4:hover{
    padding-top     : 1rem !important;
  }

  .md\:hover\:pr-4:hover{
    padding-right     : 1rem !important;
  }

  .md\:hover\:pb-4:hover{
    padding-bottom     : 1rem !important;
  }

  .md\:hover\:pl-4:hover{
    padding-left     : 1rem !important;
  }

  .md\:hover\:pt-5:hover{
    padding-top     : 1.25rem !important;
  }

  .md\:hover\:pr-5:hover{
    padding-right     : 1.25rem !important;
  }

  .md\:hover\:pb-5:hover{
    padding-bottom     : 1.25rem !important;
  }

  .md\:hover\:pl-5:hover{
    padding-left     : 1.25rem !important;
  }

  .md\:hover\:pt-6:hover{
    padding-top     : 1.5rem !important;
  }

  .md\:hover\:pr-6:hover{
    padding-right     : 1.5rem !important;
  }

  .md\:hover\:pb-6:hover{
    padding-bottom     : 1.5rem !important;
  }

  .md\:hover\:pl-6:hover{
    padding-left     : 1.5rem !important;
  }

  .md\:hover\:pt-7:hover{
    padding-top     : 1.75rem !important;
  }

  .md\:hover\:pr-7:hover{
    padding-right     : 1.75rem !important;
  }

  .md\:hover\:pb-7:hover{
    padding-bottom     : 1.75rem !important;
  }

  .md\:hover\:pl-7:hover{
    padding-left     : 1.75rem !important;
  }

  .md\:hover\:pt-8:hover{
    padding-top     : 2rem !important;
  }

  .md\:hover\:pr-8:hover{
    padding-right     : 2rem !important;
  }

  .md\:hover\:pb-8:hover{
    padding-bottom     : 2rem !important;
  }

  .md\:hover\:pl-8:hover{
    padding-left     : 2rem !important;
  }

  .md\:hover\:pt-9:hover{
    padding-top     : 2.25rem !important;
  }

  .md\:hover\:pr-9:hover{
    padding-right     : 2.25rem !important;
  }

  .md\:hover\:pb-9:hover{
    padding-bottom     : 2.25rem !important;
  }

  .md\:hover\:pl-9:hover{
    padding-left     : 2.25rem !important;
  }

  .md\:hover\:pt-10:hover{
    padding-top     : 2.5rem !important;
  }

  .md\:hover\:pr-10:hover{
    padding-right     : 2.5rem !important;
  }

  .md\:hover\:pb-10:hover{
    padding-bottom     : 2.5rem !important;
  }

  .md\:hover\:pl-10:hover{
    padding-left     : 2.5rem !important;
  }

  .md\:hover\:pt-11:hover{
    padding-top     : 2.75rem !important;
  }

  .md\:hover\:pr-11:hover{
    padding-right     : 2.75rem !important;
  }

  .md\:hover\:pb-11:hover{
    padding-bottom     : 2.75rem !important;
  }

  .md\:hover\:pl-11:hover{
    padding-left     : 2.75rem !important;
  }

  .md\:hover\:pt-12:hover{
    padding-top     : 3rem !important;
  }

  .md\:hover\:pr-12:hover{
    padding-right     : 3rem !important;
  }

  .md\:hover\:pb-12:hover{
    padding-bottom     : 3rem !important;
  }

  .md\:hover\:pl-12:hover{
    padding-left     : 3rem !important;
  }

  .md\:hover\:pt-13:hover{
    padding-top     : 3.25rem !important;
  }

  .md\:hover\:pr-13:hover{
    padding-right     : 3.25rem !important;
  }

  .md\:hover\:pb-13:hover{
    padding-bottom     : 3.25rem !important;
  }

  .md\:hover\:pl-13:hover{
    padding-left     : 3.25rem !important;
  }

  .md\:hover\:pt-14:hover{
    padding-top     : 3.5rem !important;
  }

  .md\:hover\:pr-14:hover{
    padding-right     : 3.5rem !important;
  }

  .md\:hover\:pb-14:hover{
    padding-bottom     : 3.5rem !important;
  }

  .md\:hover\:pl-14:hover{
    padding-left     : 3.5rem !important;
  }

  .md\:hover\:pt-15:hover{
    padding-top     : 3.75rem !important;
  }

  .md\:hover\:pr-15:hover{
    padding-right     : 3.75rem !important;
  }

  .md\:hover\:pb-15:hover{
    padding-bottom     : 3.75rem !important;
  }

  .md\:hover\:pl-15:hover{
    padding-left     : 3.75rem !important;
  }

  .md\:hover\:pt-16:hover{
    padding-top     : 4rem !important;
  }

  .md\:hover\:pr-16:hover{
    padding-right     : 4rem !important;
  }

  .md\:hover\:pb-16:hover{
    padding-bottom     : 4rem !important;
  }

  .md\:hover\:pl-16:hover{
    padding-left     : 4rem !important;
  }

  .md\:hover\:pt-20:hover{
    padding-top     : 5rem !important;
  }

  .md\:hover\:pr-20:hover{
    padding-right     : 5rem !important;
  }

  .md\:hover\:pb-20:hover{
    padding-bottom     : 5rem !important;
  }

  .md\:hover\:pl-20:hover{
    padding-left     : 5rem !important;
  }

  .md\:hover\:pt-24:hover{
    padding-top     : 6rem !important;
  }

  .md\:hover\:pr-24:hover{
    padding-right     : 6rem !important;
  }

  .md\:hover\:pb-24:hover{
    padding-bottom     : 6rem !important;
  }

  .md\:hover\:pl-24:hover{
    padding-left     : 6rem !important;
  }

  .md\:hover\:pt-28:hover{
    padding-top     : 7rem !important;
  }

  .md\:hover\:pr-28:hover{
    padding-right     : 7rem !important;
  }

  .md\:hover\:pb-28:hover{
    padding-bottom     : 7rem !important;
  }

  .md\:hover\:pl-28:hover{
    padding-left     : 7rem !important;
  }

  .md\:hover\:pt-32:hover{
    padding-top     : 8rem !important;
  }

  .md\:hover\:pr-32:hover{
    padding-right     : 8rem !important;
  }

  .md\:hover\:pb-32:hover{
    padding-bottom     : 8rem !important;
  }

  .md\:hover\:pl-32:hover{
    padding-left     : 8rem !important;
  }

  .md\:hover\:pt-36:hover{
    padding-top     : 9rem !important;
  }

  .md\:hover\:pr-36:hover{
    padding-right     : 9rem !important;
  }

  .md\:hover\:pb-36:hover{
    padding-bottom     : 9rem !important;
  }

  .md\:hover\:pl-36:hover{
    padding-left     : 9rem !important;
  }

  .md\:hover\:pt-40:hover{
    padding-top     : 10rem !important;
  }

  .md\:hover\:pr-40:hover{
    padding-right     : 10rem !important;
  }

  .md\:hover\:pb-40:hover{
    padding-bottom     : 10rem !important;
  }

  .md\:hover\:pl-40:hover{
    padding-left     : 10rem !important;
  }

  .md\:hover\:pt-44:hover{
    padding-top     : 11rem !important;
  }

  .md\:hover\:pr-44:hover{
    padding-right     : 11rem !important;
  }

  .md\:hover\:pb-44:hover{
    padding-bottom     : 11rem !important;
  }

  .md\:hover\:pl-44:hover{
    padding-left     : 11rem !important;
  }

  .md\:hover\:pt-48:hover{
    padding-top     : 12rem !important;
  }

  .md\:hover\:pr-48:hover{
    padding-right     : 12rem !important;
  }

  .md\:hover\:pb-48:hover{
    padding-bottom     : 12rem !important;
  }

  .md\:hover\:pl-48:hover{
    padding-left     : 12rem !important;
  }

  .md\:hover\:pt-52:hover{
    padding-top     : 13rem !important;
  }

  .md\:hover\:pr-52:hover{
    padding-right     : 13rem !important;
  }

  .md\:hover\:pb-52:hover{
    padding-bottom     : 13rem !important;
  }

  .md\:hover\:pl-52:hover{
    padding-left     : 13rem !important;
  }

  .md\:hover\:pt-56:hover{
    padding-top     : 14rem !important;
  }

  .md\:hover\:pr-56:hover{
    padding-right     : 14rem !important;
  }

  .md\:hover\:pb-56:hover{
    padding-bottom     : 14rem !important;
  }

  .md\:hover\:pl-56:hover{
    padding-left     : 14rem !important;
  }

  .md\:hover\:pt-60:hover{
    padding-top     : 15rem !important;
  }

  .md\:hover\:pr-60:hover{
    padding-right     : 15rem !important;
  }

  .md\:hover\:pb-60:hover{
    padding-bottom     : 15rem !important;
  }

  .md\:hover\:pl-60:hover{
    padding-left     : 15rem !important;
  }

  .md\:hover\:pt-64:hover{
    padding-top     : 16rem !important;
  }

  .md\:hover\:pr-64:hover{
    padding-right     : 16rem !important;
  }

  .md\:hover\:pb-64:hover{
    padding-bottom     : 16rem !important;
  }

  .md\:hover\:pl-64:hover{
    padding-left     : 16rem !important;
  }

  .md\:hover\:pt-72:hover{
    padding-top     : 18rem !important;
  }

  .md\:hover\:pr-72:hover{
    padding-right     : 18rem !important;
  }

  .md\:hover\:pb-72:hover{
    padding-bottom     : 18rem !important;
  }

  .md\:hover\:pl-72:hover{
    padding-left     : 18rem !important;
  }

  .md\:hover\:pt-80:hover{
    padding-top     : 20rem !important;
  }

  .md\:hover\:pr-80:hover{
    padding-right     : 20rem !important;
  }

  .md\:hover\:pb-80:hover{
    padding-bottom     : 20rem !important;
  }

  .md\:hover\:pl-80:hover{
    padding-left     : 20rem !important;
  }

  .md\:hover\:pt-96:hover{
    padding-top     : 24rem !important;
  }

  .md\:hover\:pr-96:hover{
    padding-right     : 24rem !important;
  }

  .md\:hover\:pb-96:hover{
    padding-bottom     : 24rem !important;
  }

  .md\:hover\:pl-96:hover{
    padding-left     : 24rem !important;
  }

  .md\:hover\:pt-px:hover{
    padding-top     : 1px !important;
  }

  .md\:hover\:pr-px:hover{
    padding-right     : 1px !important;
  }

  .md\:hover\:pb-px:hover{
    padding-bottom     : 1px !important;
  }

  .md\:hover\:pl-px:hover{
    padding-left     : 1px !important;
  }

  .md\:hover\:pt-0\.5:hover{
    padding-top     : 0.125rem !important;
  }

  .md\:hover\:pr-0\.5:hover{
    padding-right     : 0.125rem !important;
  }

  .md\:hover\:pb-0\.5:hover{
    padding-bottom     : 0.125rem !important;
  }

  .md\:hover\:pl-0\.5:hover{
    padding-left     : 0.125rem !important;
  }

  .md\:hover\:pt-1\.5:hover{
    padding-top     : 0.375rem !important;
  }

  .md\:hover\:pr-1\.5:hover{
    padding-right     : 0.375rem !important;
  }

  .md\:hover\:pb-1\.5:hover{
    padding-bottom     : 0.375rem !important;
  }

  .md\:hover\:pl-1\.5:hover{
    padding-left     : 0.375rem !important;
  }

  .md\:hover\:pt-2\.5:hover{
    padding-top     : 0.625rem !important;
  }

  .md\:hover\:pr-2\.5:hover{
    padding-right     : 0.625rem !important;
  }

  .md\:hover\:pb-2\.5:hover{
    padding-bottom     : 0.625rem !important;
  }

  .md\:hover\:pl-2\.5:hover{
    padding-left     : 0.625rem !important;
  }

  .md\:hover\:pt-3\.5:hover{
    padding-top     : 0.875rem !important;
  }

  .md\:hover\:pr-3\.5:hover{
    padding-right     : 0.875rem !important;
  }

  .md\:hover\:pb-3\.5:hover{
    padding-bottom     : 0.875rem !important;
  }

  .md\:hover\:pl-3\.5:hover{
    padding-left     : 0.875rem !important;
  }

  .md\:hover\:pt-1\/2:hover{
    padding-top     : 50% !important;
  }

  .md\:hover\:pr-1\/2:hover{
    padding-right     : 50% !important;
  }

  .md\:hover\:pb-1\/2:hover{
    padding-bottom     : 50% !important;
  }

  .md\:hover\:pl-1\/2:hover{
    padding-left     : 50% !important;
  }

  .md\:hover\:pt-1\/3:hover{
    padding-top     : 33.333333% !important;
  }

  .md\:hover\:pr-1\/3:hover{
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:pb-1\/3:hover{
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:pl-1\/3:hover{
    padding-left     : 33.333333% !important;
  }

  .md\:hover\:pt-2\/3:hover{
    padding-top     : 66.666667% !important;
  }

  .md\:hover\:pr-2\/3:hover{
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:pb-2\/3:hover{
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:pl-2\/3:hover{
    padding-left     : 66.666667% !important;
  }

  .md\:hover\:pt-1\/4:hover{
    padding-top     : 25% !important;
  }

  .md\:hover\:pr-1\/4:hover{
    padding-right     : 25% !important;
  }

  .md\:hover\:pb-1\/4:hover{
    padding-bottom     : 25% !important;
  }

  .md\:hover\:pl-1\/4:hover{
    padding-left     : 25% !important;
  }

  .md\:hover\:pt-2\/4:hover{
    padding-top     : 50% !important;
  }

  .md\:hover\:pr-2\/4:hover{
    padding-right     : 50% !important;
  }

  .md\:hover\:pb-2\/4:hover{
    padding-bottom     : 50% !important;
  }

  .md\:hover\:pl-2\/4:hover{
    padding-left     : 50% !important;
  }

  .md\:hover\:pt-3\/4:hover{
    padding-top     : 75% !important;
  }

  .md\:hover\:pr-3\/4:hover{
    padding-right     : 75% !important;
  }

  .md\:hover\:pb-3\/4:hover{
    padding-bottom     : 75% !important;
  }

  .md\:hover\:pl-3\/4:hover{
    padding-left     : 75% !important;
  }

  .md\:hover\:pt-1\/5:hover{
    padding-top     : 20% !important;
  }

  .md\:hover\:pr-1\/5:hover{
    padding-right     : 20% !important;
  }

  .md\:hover\:pb-1\/5:hover{
    padding-bottom     : 20% !important;
  }

  .md\:hover\:pl-1\/5:hover{
    padding-left     : 20% !important;
  }

  .md\:hover\:pt-2\/5:hover{
    padding-top     : 40% !important;
  }

  .md\:hover\:pr-2\/5:hover{
    padding-right     : 40% !important;
  }

  .md\:hover\:pb-2\/5:hover{
    padding-bottom     : 40% !important;
  }

  .md\:hover\:pl-2\/5:hover{
    padding-left     : 40% !important;
  }

  .md\:hover\:pt-3\/5:hover{
    padding-top     : 60% !important;
  }

  .md\:hover\:pr-3\/5:hover{
    padding-right     : 60% !important;
  }

  .md\:hover\:pb-3\/5:hover{
    padding-bottom     : 60% !important;
  }

  .md\:hover\:pl-3\/5:hover{
    padding-left     : 60% !important;
  }

  .md\:hover\:pt-4\/5:hover{
    padding-top     : 80% !important;
  }

  .md\:hover\:pr-4\/5:hover{
    padding-right     : 80% !important;
  }

  .md\:hover\:pb-4\/5:hover{
    padding-bottom     : 80% !important;
  }

  .md\:hover\:pl-4\/5:hover{
    padding-left     : 80% !important;
  }

  .md\:hover\:pt-1\/6:hover{
    padding-top     : 16.666667% !important;
  }

  .md\:hover\:pr-1\/6:hover{
    padding-right     : 16.666667% !important;
  }

  .md\:hover\:pb-1\/6:hover{
    padding-bottom     : 16.666667% !important;
  }

  .md\:hover\:pl-1\/6:hover{
    padding-left     : 16.666667% !important;
  }

  .md\:hover\:pt-2\/6:hover{
    padding-top     : 33.333333% !important;
  }

  .md\:hover\:pr-2\/6:hover{
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:pb-2\/6:hover{
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:pl-2\/6:hover{
    padding-left     : 33.333333% !important;
  }

  .md\:hover\:pt-3\/6:hover{
    padding-top     : 50% !important;
  }

  .md\:hover\:pr-3\/6:hover{
    padding-right     : 50% !important;
  }

  .md\:hover\:pb-3\/6:hover{
    padding-bottom     : 50% !important;
  }

  .md\:hover\:pl-3\/6:hover{
    padding-left     : 50% !important;
  }

  .md\:hover\:pt-4\/6:hover{
    padding-top     : 66.666667% !important;
  }

  .md\:hover\:pr-4\/6:hover{
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:pb-4\/6:hover{
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:pl-4\/6:hover{
    padding-left     : 66.666667% !important;
  }

  .md\:hover\:pt-5\/6:hover{
    padding-top     : 83.333333% !important;
  }

  .md\:hover\:pr-5\/6:hover{
    padding-right     : 83.333333% !important;
  }

  .md\:hover\:pb-5\/6:hover{
    padding-bottom     : 83.333333% !important;
  }

  .md\:hover\:pl-5\/6:hover{
    padding-left     : 83.333333% !important;
  }

  .md\:hover\:pt-1\/12:hover{
    padding-top     : 8.333333% !important;
  }

  .md\:hover\:pr-1\/12:hover{
    padding-right     : 8.333333% !important;
  }

  .md\:hover\:pb-1\/12:hover{
    padding-bottom     : 8.333333% !important;
  }

  .md\:hover\:pl-1\/12:hover{
    padding-left     : 8.333333% !important;
  }

  .md\:hover\:pt-2\/12:hover{
    padding-top     : 16.666667% !important;
  }

  .md\:hover\:pr-2\/12:hover{
    padding-right     : 16.666667% !important;
  }

  .md\:hover\:pb-2\/12:hover{
    padding-bottom     : 16.666667% !important;
  }

  .md\:hover\:pl-2\/12:hover{
    padding-left     : 16.666667% !important;
  }

  .md\:hover\:pt-3\/12:hover{
    padding-top     : 25% !important;
  }

  .md\:hover\:pr-3\/12:hover{
    padding-right     : 25% !important;
  }

  .md\:hover\:pb-3\/12:hover{
    padding-bottom     : 25% !important;
  }

  .md\:hover\:pl-3\/12:hover{
    padding-left     : 25% !important;
  }

  .md\:hover\:pt-4\/12:hover{
    padding-top     : 33.333333% !important;
  }

  .md\:hover\:pr-4\/12:hover{
    padding-right     : 33.333333% !important;
  }

  .md\:hover\:pb-4\/12:hover{
    padding-bottom     : 33.333333% !important;
  }

  .md\:hover\:pl-4\/12:hover{
    padding-left     : 33.333333% !important;
  }

  .md\:hover\:pt-5\/12:hover{
    padding-top     : 41.666667% !important;
  }

  .md\:hover\:pr-5\/12:hover{
    padding-right     : 41.666667% !important;
  }

  .md\:hover\:pb-5\/12:hover{
    padding-bottom     : 41.666667% !important;
  }

  .md\:hover\:pl-5\/12:hover{
    padding-left     : 41.666667% !important;
  }

  .md\:hover\:pt-6\/12:hover{
    padding-top     : 50% !important;
  }

  .md\:hover\:pr-6\/12:hover{
    padding-right     : 50% !important;
  }

  .md\:hover\:pb-6\/12:hover{
    padding-bottom     : 50% !important;
  }

  .md\:hover\:pl-6\/12:hover{
    padding-left     : 50% !important;
  }

  .md\:hover\:pt-7\/12:hover{
    padding-top     : 58.333333% !important;
  }

  .md\:hover\:pr-7\/12:hover{
    padding-right     : 58.333333% !important;
  }

  .md\:hover\:pb-7\/12:hover{
    padding-bottom     : 58.333333% !important;
  }

  .md\:hover\:pl-7\/12:hover{
    padding-left     : 58.333333% !important;
  }

  .md\:hover\:pt-8\/12:hover{
    padding-top     : 66.666667% !important;
  }

  .md\:hover\:pr-8\/12:hover{
    padding-right     : 66.666667% !important;
  }

  .md\:hover\:pb-8\/12:hover{
    padding-bottom     : 66.666667% !important;
  }

  .md\:hover\:pl-8\/12:hover{
    padding-left     : 66.666667% !important;
  }

  .md\:hover\:pt-9\/12:hover{
    padding-top     : 75% !important;
  }

  .md\:hover\:pr-9\/12:hover{
    padding-right     : 75% !important;
  }

  .md\:hover\:pb-9\/12:hover{
    padding-bottom     : 75% !important;
  }

  .md\:hover\:pl-9\/12:hover{
    padding-left     : 75% !important;
  }

  .md\:hover\:pt-10\/12:hover{
    padding-top     : 83.333333% !important;
  }

  .md\:hover\:pr-10\/12:hover{
    padding-right     : 83.333333% !important;
  }

  .md\:hover\:pb-10\/12:hover{
    padding-bottom     : 83.333333% !important;
  }

  .md\:hover\:pl-10\/12:hover{
    padding-left     : 83.333333% !important;
  }

  .md\:hover\:pt-11\/12:hover{
    padding-top     : 91.666667% !important;
  }

  .md\:hover\:pr-11\/12:hover{
    padding-right     : 91.666667% !important;
  }

  .md\:hover\:pb-11\/12:hover{
    padding-bottom     : 91.666667% !important;
  }

  .md\:hover\:pl-11\/12:hover{
    padding-left     : 91.666667% !important;
  }

  .md\:hover\:pt-full:hover{
    padding-top     : 100% !important;
  }

  .md\:hover\:pr-full:hover{
    padding-right     : 100% !important;
  }

  .md\:hover\:pb-full:hover{
    padding-bottom     : 100% !important;
  }

  .md\:hover\:pl-full:hover{
    padding-left     : 100% !important;
  }

  .md\:focus\:p-0:focus{
    padding     : 0 !important;
  }

  .md\:focus\:p-1:focus{
    padding     : 0.25rem !important;
  }

  .md\:focus\:p-2:focus{
    padding     : 0.5rem !important;
  }

  .md\:focus\:p-3:focus{
    padding     : 0.75rem !important;
  }

  .md\:focus\:p-4:focus{
    padding     : 1rem !important;
  }

  .md\:focus\:p-5:focus{
    padding     : 1.25rem !important;
  }

  .md\:focus\:p-6:focus{
    padding     : 1.5rem !important;
  }

  .md\:focus\:p-7:focus{
    padding     : 1.75rem !important;
  }

  .md\:focus\:p-8:focus{
    padding     : 2rem !important;
  }

  .md\:focus\:p-9:focus{
    padding     : 2.25rem !important;
  }

  .md\:focus\:p-10:focus{
    padding     : 2.5rem !important;
  }

  .md\:focus\:p-11:focus{
    padding     : 2.75rem !important;
  }

  .md\:focus\:p-12:focus{
    padding     : 3rem !important;
  }

  .md\:focus\:p-13:focus{
    padding     : 3.25rem !important;
  }

  .md\:focus\:p-14:focus{
    padding     : 3.5rem !important;
  }

  .md\:focus\:p-15:focus{
    padding     : 3.75rem !important;
  }

  .md\:focus\:p-16:focus{
    padding     : 4rem !important;
  }

  .md\:focus\:p-20:focus{
    padding     : 5rem !important;
  }

  .md\:focus\:p-24:focus{
    padding     : 6rem !important;
  }

  .md\:focus\:p-28:focus{
    padding     : 7rem !important;
  }

  .md\:focus\:p-32:focus{
    padding     : 8rem !important;
  }

  .md\:focus\:p-36:focus{
    padding     : 9rem !important;
  }

  .md\:focus\:p-40:focus{
    padding     : 10rem !important;
  }

  .md\:focus\:p-44:focus{
    padding     : 11rem !important;
  }

  .md\:focus\:p-48:focus{
    padding     : 12rem !important;
  }

  .md\:focus\:p-52:focus{
    padding     : 13rem !important;
  }

  .md\:focus\:p-56:focus{
    padding     : 14rem !important;
  }

  .md\:focus\:p-60:focus{
    padding     : 15rem !important;
  }

  .md\:focus\:p-64:focus{
    padding     : 16rem !important;
  }

  .md\:focus\:p-72:focus{
    padding     : 18rem !important;
  }

  .md\:focus\:p-80:focus{
    padding     : 20rem !important;
  }

  .md\:focus\:p-96:focus{
    padding     : 24rem !important;
  }

  .md\:focus\:p-px:focus{
    padding     : 1px !important;
  }

  .md\:focus\:p-0\.5:focus{
    padding     : 0.125rem !important;
  }

  .md\:focus\:p-1\.5:focus{
    padding     : 0.375rem !important;
  }

  .md\:focus\:p-2\.5:focus{
    padding     : 0.625rem !important;
  }

  .md\:focus\:p-3\.5:focus{
    padding     : 0.875rem !important;
  }

  .md\:focus\:p-1\/2:focus{
    padding     : 50% !important;
  }

  .md\:focus\:p-1\/3:focus{
    padding     : 33.333333% !important;
  }

  .md\:focus\:p-2\/3:focus{
    padding     : 66.666667% !important;
  }

  .md\:focus\:p-1\/4:focus{
    padding     : 25% !important;
  }

  .md\:focus\:p-2\/4:focus{
    padding     : 50% !important;
  }

  .md\:focus\:p-3\/4:focus{
    padding     : 75% !important;
  }

  .md\:focus\:p-1\/5:focus{
    padding     : 20% !important;
  }

  .md\:focus\:p-2\/5:focus{
    padding     : 40% !important;
  }

  .md\:focus\:p-3\/5:focus{
    padding     : 60% !important;
  }

  .md\:focus\:p-4\/5:focus{
    padding     : 80% !important;
  }

  .md\:focus\:p-1\/6:focus{
    padding     : 16.666667% !important;
  }

  .md\:focus\:p-2\/6:focus{
    padding     : 33.333333% !important;
  }

  .md\:focus\:p-3\/6:focus{
    padding     : 50% !important;
  }

  .md\:focus\:p-4\/6:focus{
    padding     : 66.666667% !important;
  }

  .md\:focus\:p-5\/6:focus{
    padding     : 83.333333% !important;
  }

  .md\:focus\:p-1\/12:focus{
    padding     : 8.333333% !important;
  }

  .md\:focus\:p-2\/12:focus{
    padding     : 16.666667% !important;
  }

  .md\:focus\:p-3\/12:focus{
    padding     : 25% !important;
  }

  .md\:focus\:p-4\/12:focus{
    padding     : 33.333333% !important;
  }

  .md\:focus\:p-5\/12:focus{
    padding     : 41.666667% !important;
  }

  .md\:focus\:p-6\/12:focus{
    padding     : 50% !important;
  }

  .md\:focus\:p-7\/12:focus{
    padding     : 58.333333% !important;
  }

  .md\:focus\:p-8\/12:focus{
    padding     : 66.666667% !important;
  }

  .md\:focus\:p-9\/12:focus{
    padding     : 75% !important;
  }

  .md\:focus\:p-10\/12:focus{
    padding     : 83.333333% !important;
  }

  .md\:focus\:p-11\/12:focus{
    padding     : 91.666667% !important;
  }

  .md\:focus\:p-full:focus{
    padding     : 100% !important;
  }

  .md\:focus\:py-0:focus{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .md\:focus\:px-0:focus{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .md\:focus\:py-1:focus{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .md\:focus\:px-1:focus{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .md\:focus\:py-2:focus{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .md\:focus\:px-2:focus{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .md\:focus\:py-3:focus{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .md\:focus\:px-3:focus{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .md\:focus\:py-4:focus{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .md\:focus\:px-4:focus{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .md\:focus\:py-5:focus{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .md\:focus\:px-5:focus{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .md\:focus\:py-6:focus{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .md\:focus\:px-6:focus{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .md\:focus\:py-7:focus{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .md\:focus\:px-7:focus{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .md\:focus\:py-8:focus{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .md\:focus\:px-8:focus{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .md\:focus\:py-9:focus{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .md\:focus\:px-9:focus{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .md\:focus\:py-10:focus{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .md\:focus\:px-10:focus{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .md\:focus\:py-11:focus{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .md\:focus\:px-11:focus{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .md\:focus\:py-12:focus{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .md\:focus\:px-12:focus{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .md\:focus\:py-13:focus{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .md\:focus\:px-13:focus{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .md\:focus\:py-14:focus{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .md\:focus\:px-14:focus{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .md\:focus\:py-15:focus{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .md\:focus\:px-15:focus{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .md\:focus\:py-16:focus{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .md\:focus\:px-16:focus{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .md\:focus\:py-20:focus{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .md\:focus\:px-20:focus{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .md\:focus\:py-24:focus{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .md\:focus\:px-24:focus{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .md\:focus\:py-28:focus{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .md\:focus\:px-28:focus{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .md\:focus\:py-32:focus{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .md\:focus\:px-32:focus{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .md\:focus\:py-36:focus{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .md\:focus\:px-36:focus{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .md\:focus\:py-40:focus{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .md\:focus\:px-40:focus{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .md\:focus\:py-44:focus{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .md\:focus\:px-44:focus{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .md\:focus\:py-48:focus{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .md\:focus\:px-48:focus{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .md\:focus\:py-52:focus{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .md\:focus\:px-52:focus{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .md\:focus\:py-56:focus{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .md\:focus\:px-56:focus{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .md\:focus\:py-60:focus{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .md\:focus\:px-60:focus{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .md\:focus\:py-64:focus{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .md\:focus\:px-64:focus{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .md\:focus\:py-72:focus{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .md\:focus\:px-72:focus{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .md\:focus\:py-80:focus{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .md\:focus\:px-80:focus{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .md\:focus\:py-96:focus{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .md\:focus\:px-96:focus{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .md\:focus\:py-px:focus{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .md\:focus\:px-px:focus{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .md\:focus\:py-0\.5:focus{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .md\:focus\:px-0\.5:focus{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .md\:focus\:py-1\.5:focus{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .md\:focus\:px-1\.5:focus{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .md\:focus\:py-2\.5:focus{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .md\:focus\:px-2\.5:focus{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .md\:focus\:py-3\.5:focus{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .md\:focus\:px-3\.5:focus{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .md\:focus\:py-1\/2:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:focus\:px-1\/2:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:focus\:py-1\/3:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:px-1\/3:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:py-2\/3:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:px-2\/3:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:py-1\/4:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .md\:focus\:px-1\/4:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .md\:focus\:py-2\/4:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:focus\:px-2\/4:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:focus\:py-3\/4:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .md\:focus\:px-3\/4:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .md\:focus\:py-1\/5:focus{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .md\:focus\:px-1\/5:focus{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .md\:focus\:py-2\/5:focus{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .md\:focus\:px-2\/5:focus{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .md\:focus\:py-3\/5:focus{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .md\:focus\:px-3\/5:focus{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .md\:focus\:py-4\/5:focus{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .md\:focus\:px-4\/5:focus{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .md\:focus\:py-1\/6:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .md\:focus\:px-1\/6:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .md\:focus\:py-2\/6:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:px-2\/6:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:py-3\/6:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:focus\:px-3\/6:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:focus\:py-4\/6:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:px-4\/6:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:py-5\/6:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .md\:focus\:px-5\/6:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .md\:focus\:py-1\/12:focus{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .md\:focus\:px-1\/12:focus{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .md\:focus\:py-2\/12:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .md\:focus\:px-2\/12:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .md\:focus\:py-3\/12:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .md\:focus\:px-3\/12:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .md\:focus\:py-4\/12:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:px-4\/12:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:py-5\/12:focus{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .md\:focus\:px-5\/12:focus{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .md\:focus\:py-6\/12:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .md\:focus\:px-6\/12:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .md\:focus\:py-7\/12:focus{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .md\:focus\:px-7\/12:focus{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .md\:focus\:py-8\/12:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:px-8\/12:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:py-9\/12:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .md\:focus\:px-9\/12:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .md\:focus\:py-10\/12:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .md\:focus\:px-10\/12:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .md\:focus\:py-11\/12:focus{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .md\:focus\:px-11\/12:focus{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .md\:focus\:py-full:focus{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .md\:focus\:px-full:focus{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .md\:focus\:pt-0:focus{
    padding-top     : 0 !important;
  }

  .md\:focus\:pr-0:focus{
    padding-right     : 0 !important;
  }

  .md\:focus\:pb-0:focus{
    padding-bottom     : 0 !important;
  }

  .md\:focus\:pl-0:focus{
    padding-left     : 0 !important;
  }

  .md\:focus\:pt-1:focus{
    padding-top     : 0.25rem !important;
  }

  .md\:focus\:pr-1:focus{
    padding-right     : 0.25rem !important;
  }

  .md\:focus\:pb-1:focus{
    padding-bottom     : 0.25rem !important;
  }

  .md\:focus\:pl-1:focus{
    padding-left     : 0.25rem !important;
  }

  .md\:focus\:pt-2:focus{
    padding-top     : 0.5rem !important;
  }

  .md\:focus\:pr-2:focus{
    padding-right     : 0.5rem !important;
  }

  .md\:focus\:pb-2:focus{
    padding-bottom     : 0.5rem !important;
  }

  .md\:focus\:pl-2:focus{
    padding-left     : 0.5rem !important;
  }

  .md\:focus\:pt-3:focus{
    padding-top     : 0.75rem !important;
  }

  .md\:focus\:pr-3:focus{
    padding-right     : 0.75rem !important;
  }

  .md\:focus\:pb-3:focus{
    padding-bottom     : 0.75rem !important;
  }

  .md\:focus\:pl-3:focus{
    padding-left     : 0.75rem !important;
  }

  .md\:focus\:pt-4:focus{
    padding-top     : 1rem !important;
  }

  .md\:focus\:pr-4:focus{
    padding-right     : 1rem !important;
  }

  .md\:focus\:pb-4:focus{
    padding-bottom     : 1rem !important;
  }

  .md\:focus\:pl-4:focus{
    padding-left     : 1rem !important;
  }

  .md\:focus\:pt-5:focus{
    padding-top     : 1.25rem !important;
  }

  .md\:focus\:pr-5:focus{
    padding-right     : 1.25rem !important;
  }

  .md\:focus\:pb-5:focus{
    padding-bottom     : 1.25rem !important;
  }

  .md\:focus\:pl-5:focus{
    padding-left     : 1.25rem !important;
  }

  .md\:focus\:pt-6:focus{
    padding-top     : 1.5rem !important;
  }

  .md\:focus\:pr-6:focus{
    padding-right     : 1.5rem !important;
  }

  .md\:focus\:pb-6:focus{
    padding-bottom     : 1.5rem !important;
  }

  .md\:focus\:pl-6:focus{
    padding-left     : 1.5rem !important;
  }

  .md\:focus\:pt-7:focus{
    padding-top     : 1.75rem !important;
  }

  .md\:focus\:pr-7:focus{
    padding-right     : 1.75rem !important;
  }

  .md\:focus\:pb-7:focus{
    padding-bottom     : 1.75rem !important;
  }

  .md\:focus\:pl-7:focus{
    padding-left     : 1.75rem !important;
  }

  .md\:focus\:pt-8:focus{
    padding-top     : 2rem !important;
  }

  .md\:focus\:pr-8:focus{
    padding-right     : 2rem !important;
  }

  .md\:focus\:pb-8:focus{
    padding-bottom     : 2rem !important;
  }

  .md\:focus\:pl-8:focus{
    padding-left     : 2rem !important;
  }

  .md\:focus\:pt-9:focus{
    padding-top     : 2.25rem !important;
  }

  .md\:focus\:pr-9:focus{
    padding-right     : 2.25rem !important;
  }

  .md\:focus\:pb-9:focus{
    padding-bottom     : 2.25rem !important;
  }

  .md\:focus\:pl-9:focus{
    padding-left     : 2.25rem !important;
  }

  .md\:focus\:pt-10:focus{
    padding-top     : 2.5rem !important;
  }

  .md\:focus\:pr-10:focus{
    padding-right     : 2.5rem !important;
  }

  .md\:focus\:pb-10:focus{
    padding-bottom     : 2.5rem !important;
  }

  .md\:focus\:pl-10:focus{
    padding-left     : 2.5rem !important;
  }

  .md\:focus\:pt-11:focus{
    padding-top     : 2.75rem !important;
  }

  .md\:focus\:pr-11:focus{
    padding-right     : 2.75rem !important;
  }

  .md\:focus\:pb-11:focus{
    padding-bottom     : 2.75rem !important;
  }

  .md\:focus\:pl-11:focus{
    padding-left     : 2.75rem !important;
  }

  .md\:focus\:pt-12:focus{
    padding-top     : 3rem !important;
  }

  .md\:focus\:pr-12:focus{
    padding-right     : 3rem !important;
  }

  .md\:focus\:pb-12:focus{
    padding-bottom     : 3rem !important;
  }

  .md\:focus\:pl-12:focus{
    padding-left     : 3rem !important;
  }

  .md\:focus\:pt-13:focus{
    padding-top     : 3.25rem !important;
  }

  .md\:focus\:pr-13:focus{
    padding-right     : 3.25rem !important;
  }

  .md\:focus\:pb-13:focus{
    padding-bottom     : 3.25rem !important;
  }

  .md\:focus\:pl-13:focus{
    padding-left     : 3.25rem !important;
  }

  .md\:focus\:pt-14:focus{
    padding-top     : 3.5rem !important;
  }

  .md\:focus\:pr-14:focus{
    padding-right     : 3.5rem !important;
  }

  .md\:focus\:pb-14:focus{
    padding-bottom     : 3.5rem !important;
  }

  .md\:focus\:pl-14:focus{
    padding-left     : 3.5rem !important;
  }

  .md\:focus\:pt-15:focus{
    padding-top     : 3.75rem !important;
  }

  .md\:focus\:pr-15:focus{
    padding-right     : 3.75rem !important;
  }

  .md\:focus\:pb-15:focus{
    padding-bottom     : 3.75rem !important;
  }

  .md\:focus\:pl-15:focus{
    padding-left     : 3.75rem !important;
  }

  .md\:focus\:pt-16:focus{
    padding-top     : 4rem !important;
  }

  .md\:focus\:pr-16:focus{
    padding-right     : 4rem !important;
  }

  .md\:focus\:pb-16:focus{
    padding-bottom     : 4rem !important;
  }

  .md\:focus\:pl-16:focus{
    padding-left     : 4rem !important;
  }

  .md\:focus\:pt-20:focus{
    padding-top     : 5rem !important;
  }

  .md\:focus\:pr-20:focus{
    padding-right     : 5rem !important;
  }

  .md\:focus\:pb-20:focus{
    padding-bottom     : 5rem !important;
  }

  .md\:focus\:pl-20:focus{
    padding-left     : 5rem !important;
  }

  .md\:focus\:pt-24:focus{
    padding-top     : 6rem !important;
  }

  .md\:focus\:pr-24:focus{
    padding-right     : 6rem !important;
  }

  .md\:focus\:pb-24:focus{
    padding-bottom     : 6rem !important;
  }

  .md\:focus\:pl-24:focus{
    padding-left     : 6rem !important;
  }

  .md\:focus\:pt-28:focus{
    padding-top     : 7rem !important;
  }

  .md\:focus\:pr-28:focus{
    padding-right     : 7rem !important;
  }

  .md\:focus\:pb-28:focus{
    padding-bottom     : 7rem !important;
  }

  .md\:focus\:pl-28:focus{
    padding-left     : 7rem !important;
  }

  .md\:focus\:pt-32:focus{
    padding-top     : 8rem !important;
  }

  .md\:focus\:pr-32:focus{
    padding-right     : 8rem !important;
  }

  .md\:focus\:pb-32:focus{
    padding-bottom     : 8rem !important;
  }

  .md\:focus\:pl-32:focus{
    padding-left     : 8rem !important;
  }

  .md\:focus\:pt-36:focus{
    padding-top     : 9rem !important;
  }

  .md\:focus\:pr-36:focus{
    padding-right     : 9rem !important;
  }

  .md\:focus\:pb-36:focus{
    padding-bottom     : 9rem !important;
  }

  .md\:focus\:pl-36:focus{
    padding-left     : 9rem !important;
  }

  .md\:focus\:pt-40:focus{
    padding-top     : 10rem !important;
  }

  .md\:focus\:pr-40:focus{
    padding-right     : 10rem !important;
  }

  .md\:focus\:pb-40:focus{
    padding-bottom     : 10rem !important;
  }

  .md\:focus\:pl-40:focus{
    padding-left     : 10rem !important;
  }

  .md\:focus\:pt-44:focus{
    padding-top     : 11rem !important;
  }

  .md\:focus\:pr-44:focus{
    padding-right     : 11rem !important;
  }

  .md\:focus\:pb-44:focus{
    padding-bottom     : 11rem !important;
  }

  .md\:focus\:pl-44:focus{
    padding-left     : 11rem !important;
  }

  .md\:focus\:pt-48:focus{
    padding-top     : 12rem !important;
  }

  .md\:focus\:pr-48:focus{
    padding-right     : 12rem !important;
  }

  .md\:focus\:pb-48:focus{
    padding-bottom     : 12rem !important;
  }

  .md\:focus\:pl-48:focus{
    padding-left     : 12rem !important;
  }

  .md\:focus\:pt-52:focus{
    padding-top     : 13rem !important;
  }

  .md\:focus\:pr-52:focus{
    padding-right     : 13rem !important;
  }

  .md\:focus\:pb-52:focus{
    padding-bottom     : 13rem !important;
  }

  .md\:focus\:pl-52:focus{
    padding-left     : 13rem !important;
  }

  .md\:focus\:pt-56:focus{
    padding-top     : 14rem !important;
  }

  .md\:focus\:pr-56:focus{
    padding-right     : 14rem !important;
  }

  .md\:focus\:pb-56:focus{
    padding-bottom     : 14rem !important;
  }

  .md\:focus\:pl-56:focus{
    padding-left     : 14rem !important;
  }

  .md\:focus\:pt-60:focus{
    padding-top     : 15rem !important;
  }

  .md\:focus\:pr-60:focus{
    padding-right     : 15rem !important;
  }

  .md\:focus\:pb-60:focus{
    padding-bottom     : 15rem !important;
  }

  .md\:focus\:pl-60:focus{
    padding-left     : 15rem !important;
  }

  .md\:focus\:pt-64:focus{
    padding-top     : 16rem !important;
  }

  .md\:focus\:pr-64:focus{
    padding-right     : 16rem !important;
  }

  .md\:focus\:pb-64:focus{
    padding-bottom     : 16rem !important;
  }

  .md\:focus\:pl-64:focus{
    padding-left     : 16rem !important;
  }

  .md\:focus\:pt-72:focus{
    padding-top     : 18rem !important;
  }

  .md\:focus\:pr-72:focus{
    padding-right     : 18rem !important;
  }

  .md\:focus\:pb-72:focus{
    padding-bottom     : 18rem !important;
  }

  .md\:focus\:pl-72:focus{
    padding-left     : 18rem !important;
  }

  .md\:focus\:pt-80:focus{
    padding-top     : 20rem !important;
  }

  .md\:focus\:pr-80:focus{
    padding-right     : 20rem !important;
  }

  .md\:focus\:pb-80:focus{
    padding-bottom     : 20rem !important;
  }

  .md\:focus\:pl-80:focus{
    padding-left     : 20rem !important;
  }

  .md\:focus\:pt-96:focus{
    padding-top     : 24rem !important;
  }

  .md\:focus\:pr-96:focus{
    padding-right     : 24rem !important;
  }

  .md\:focus\:pb-96:focus{
    padding-bottom     : 24rem !important;
  }

  .md\:focus\:pl-96:focus{
    padding-left     : 24rem !important;
  }

  .md\:focus\:pt-px:focus{
    padding-top     : 1px !important;
  }

  .md\:focus\:pr-px:focus{
    padding-right     : 1px !important;
  }

  .md\:focus\:pb-px:focus{
    padding-bottom     : 1px !important;
  }

  .md\:focus\:pl-px:focus{
    padding-left     : 1px !important;
  }

  .md\:focus\:pt-0\.5:focus{
    padding-top     : 0.125rem !important;
  }

  .md\:focus\:pr-0\.5:focus{
    padding-right     : 0.125rem !important;
  }

  .md\:focus\:pb-0\.5:focus{
    padding-bottom     : 0.125rem !important;
  }

  .md\:focus\:pl-0\.5:focus{
    padding-left     : 0.125rem !important;
  }

  .md\:focus\:pt-1\.5:focus{
    padding-top     : 0.375rem !important;
  }

  .md\:focus\:pr-1\.5:focus{
    padding-right     : 0.375rem !important;
  }

  .md\:focus\:pb-1\.5:focus{
    padding-bottom     : 0.375rem !important;
  }

  .md\:focus\:pl-1\.5:focus{
    padding-left     : 0.375rem !important;
  }

  .md\:focus\:pt-2\.5:focus{
    padding-top     : 0.625rem !important;
  }

  .md\:focus\:pr-2\.5:focus{
    padding-right     : 0.625rem !important;
  }

  .md\:focus\:pb-2\.5:focus{
    padding-bottom     : 0.625rem !important;
  }

  .md\:focus\:pl-2\.5:focus{
    padding-left     : 0.625rem !important;
  }

  .md\:focus\:pt-3\.5:focus{
    padding-top     : 0.875rem !important;
  }

  .md\:focus\:pr-3\.5:focus{
    padding-right     : 0.875rem !important;
  }

  .md\:focus\:pb-3\.5:focus{
    padding-bottom     : 0.875rem !important;
  }

  .md\:focus\:pl-3\.5:focus{
    padding-left     : 0.875rem !important;
  }

  .md\:focus\:pt-1\/2:focus{
    padding-top     : 50% !important;
  }

  .md\:focus\:pr-1\/2:focus{
    padding-right     : 50% !important;
  }

  .md\:focus\:pb-1\/2:focus{
    padding-bottom     : 50% !important;
  }

  .md\:focus\:pl-1\/2:focus{
    padding-left     : 50% !important;
  }

  .md\:focus\:pt-1\/3:focus{
    padding-top     : 33.333333% !important;
  }

  .md\:focus\:pr-1\/3:focus{
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:pb-1\/3:focus{
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:pl-1\/3:focus{
    padding-left     : 33.333333% !important;
  }

  .md\:focus\:pt-2\/3:focus{
    padding-top     : 66.666667% !important;
  }

  .md\:focus\:pr-2\/3:focus{
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:pb-2\/3:focus{
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:pl-2\/3:focus{
    padding-left     : 66.666667% !important;
  }

  .md\:focus\:pt-1\/4:focus{
    padding-top     : 25% !important;
  }

  .md\:focus\:pr-1\/4:focus{
    padding-right     : 25% !important;
  }

  .md\:focus\:pb-1\/4:focus{
    padding-bottom     : 25% !important;
  }

  .md\:focus\:pl-1\/4:focus{
    padding-left     : 25% !important;
  }

  .md\:focus\:pt-2\/4:focus{
    padding-top     : 50% !important;
  }

  .md\:focus\:pr-2\/4:focus{
    padding-right     : 50% !important;
  }

  .md\:focus\:pb-2\/4:focus{
    padding-bottom     : 50% !important;
  }

  .md\:focus\:pl-2\/4:focus{
    padding-left     : 50% !important;
  }

  .md\:focus\:pt-3\/4:focus{
    padding-top     : 75% !important;
  }

  .md\:focus\:pr-3\/4:focus{
    padding-right     : 75% !important;
  }

  .md\:focus\:pb-3\/4:focus{
    padding-bottom     : 75% !important;
  }

  .md\:focus\:pl-3\/4:focus{
    padding-left     : 75% !important;
  }

  .md\:focus\:pt-1\/5:focus{
    padding-top     : 20% !important;
  }

  .md\:focus\:pr-1\/5:focus{
    padding-right     : 20% !important;
  }

  .md\:focus\:pb-1\/5:focus{
    padding-bottom     : 20% !important;
  }

  .md\:focus\:pl-1\/5:focus{
    padding-left     : 20% !important;
  }

  .md\:focus\:pt-2\/5:focus{
    padding-top     : 40% !important;
  }

  .md\:focus\:pr-2\/5:focus{
    padding-right     : 40% !important;
  }

  .md\:focus\:pb-2\/5:focus{
    padding-bottom     : 40% !important;
  }

  .md\:focus\:pl-2\/5:focus{
    padding-left     : 40% !important;
  }

  .md\:focus\:pt-3\/5:focus{
    padding-top     : 60% !important;
  }

  .md\:focus\:pr-3\/5:focus{
    padding-right     : 60% !important;
  }

  .md\:focus\:pb-3\/5:focus{
    padding-bottom     : 60% !important;
  }

  .md\:focus\:pl-3\/5:focus{
    padding-left     : 60% !important;
  }

  .md\:focus\:pt-4\/5:focus{
    padding-top     : 80% !important;
  }

  .md\:focus\:pr-4\/5:focus{
    padding-right     : 80% !important;
  }

  .md\:focus\:pb-4\/5:focus{
    padding-bottom     : 80% !important;
  }

  .md\:focus\:pl-4\/5:focus{
    padding-left     : 80% !important;
  }

  .md\:focus\:pt-1\/6:focus{
    padding-top     : 16.666667% !important;
  }

  .md\:focus\:pr-1\/6:focus{
    padding-right     : 16.666667% !important;
  }

  .md\:focus\:pb-1\/6:focus{
    padding-bottom     : 16.666667% !important;
  }

  .md\:focus\:pl-1\/6:focus{
    padding-left     : 16.666667% !important;
  }

  .md\:focus\:pt-2\/6:focus{
    padding-top     : 33.333333% !important;
  }

  .md\:focus\:pr-2\/6:focus{
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:pb-2\/6:focus{
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:pl-2\/6:focus{
    padding-left     : 33.333333% !important;
  }

  .md\:focus\:pt-3\/6:focus{
    padding-top     : 50% !important;
  }

  .md\:focus\:pr-3\/6:focus{
    padding-right     : 50% !important;
  }

  .md\:focus\:pb-3\/6:focus{
    padding-bottom     : 50% !important;
  }

  .md\:focus\:pl-3\/6:focus{
    padding-left     : 50% !important;
  }

  .md\:focus\:pt-4\/6:focus{
    padding-top     : 66.666667% !important;
  }

  .md\:focus\:pr-4\/6:focus{
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:pb-4\/6:focus{
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:pl-4\/6:focus{
    padding-left     : 66.666667% !important;
  }

  .md\:focus\:pt-5\/6:focus{
    padding-top     : 83.333333% !important;
  }

  .md\:focus\:pr-5\/6:focus{
    padding-right     : 83.333333% !important;
  }

  .md\:focus\:pb-5\/6:focus{
    padding-bottom     : 83.333333% !important;
  }

  .md\:focus\:pl-5\/6:focus{
    padding-left     : 83.333333% !important;
  }

  .md\:focus\:pt-1\/12:focus{
    padding-top     : 8.333333% !important;
  }

  .md\:focus\:pr-1\/12:focus{
    padding-right     : 8.333333% !important;
  }

  .md\:focus\:pb-1\/12:focus{
    padding-bottom     : 8.333333% !important;
  }

  .md\:focus\:pl-1\/12:focus{
    padding-left     : 8.333333% !important;
  }

  .md\:focus\:pt-2\/12:focus{
    padding-top     : 16.666667% !important;
  }

  .md\:focus\:pr-2\/12:focus{
    padding-right     : 16.666667% !important;
  }

  .md\:focus\:pb-2\/12:focus{
    padding-bottom     : 16.666667% !important;
  }

  .md\:focus\:pl-2\/12:focus{
    padding-left     : 16.666667% !important;
  }

  .md\:focus\:pt-3\/12:focus{
    padding-top     : 25% !important;
  }

  .md\:focus\:pr-3\/12:focus{
    padding-right     : 25% !important;
  }

  .md\:focus\:pb-3\/12:focus{
    padding-bottom     : 25% !important;
  }

  .md\:focus\:pl-3\/12:focus{
    padding-left     : 25% !important;
  }

  .md\:focus\:pt-4\/12:focus{
    padding-top     : 33.333333% !important;
  }

  .md\:focus\:pr-4\/12:focus{
    padding-right     : 33.333333% !important;
  }

  .md\:focus\:pb-4\/12:focus{
    padding-bottom     : 33.333333% !important;
  }

  .md\:focus\:pl-4\/12:focus{
    padding-left     : 33.333333% !important;
  }

  .md\:focus\:pt-5\/12:focus{
    padding-top     : 41.666667% !important;
  }

  .md\:focus\:pr-5\/12:focus{
    padding-right     : 41.666667% !important;
  }

  .md\:focus\:pb-5\/12:focus{
    padding-bottom     : 41.666667% !important;
  }

  .md\:focus\:pl-5\/12:focus{
    padding-left     : 41.666667% !important;
  }

  .md\:focus\:pt-6\/12:focus{
    padding-top     : 50% !important;
  }

  .md\:focus\:pr-6\/12:focus{
    padding-right     : 50% !important;
  }

  .md\:focus\:pb-6\/12:focus{
    padding-bottom     : 50% !important;
  }

  .md\:focus\:pl-6\/12:focus{
    padding-left     : 50% !important;
  }

  .md\:focus\:pt-7\/12:focus{
    padding-top     : 58.333333% !important;
  }

  .md\:focus\:pr-7\/12:focus{
    padding-right     : 58.333333% !important;
  }

  .md\:focus\:pb-7\/12:focus{
    padding-bottom     : 58.333333% !important;
  }

  .md\:focus\:pl-7\/12:focus{
    padding-left     : 58.333333% !important;
  }

  .md\:focus\:pt-8\/12:focus{
    padding-top     : 66.666667% !important;
  }

  .md\:focus\:pr-8\/12:focus{
    padding-right     : 66.666667% !important;
  }

  .md\:focus\:pb-8\/12:focus{
    padding-bottom     : 66.666667% !important;
  }

  .md\:focus\:pl-8\/12:focus{
    padding-left     : 66.666667% !important;
  }

  .md\:focus\:pt-9\/12:focus{
    padding-top     : 75% !important;
  }

  .md\:focus\:pr-9\/12:focus{
    padding-right     : 75% !important;
  }

  .md\:focus\:pb-9\/12:focus{
    padding-bottom     : 75% !important;
  }

  .md\:focus\:pl-9\/12:focus{
    padding-left     : 75% !important;
  }

  .md\:focus\:pt-10\/12:focus{
    padding-top     : 83.333333% !important;
  }

  .md\:focus\:pr-10\/12:focus{
    padding-right     : 83.333333% !important;
  }

  .md\:focus\:pb-10\/12:focus{
    padding-bottom     : 83.333333% !important;
  }

  .md\:focus\:pl-10\/12:focus{
    padding-left     : 83.333333% !important;
  }

  .md\:focus\:pt-11\/12:focus{
    padding-top     : 91.666667% !important;
  }

  .md\:focus\:pr-11\/12:focus{
    padding-right     : 91.666667% !important;
  }

  .md\:focus\:pb-11\/12:focus{
    padding-bottom     : 91.666667% !important;
  }

  .md\:focus\:pl-11\/12:focus{
    padding-left     : 91.666667% !important;
  }

  .md\:focus\:pt-full:focus{
    padding-top     : 100% !important;
  }

  .md\:focus\:pr-full:focus{
    padding-right     : 100% !important;
  }

  .md\:focus\:pb-full:focus{
    padding-bottom     : 100% !important;
  }

  .md\:focus\:pl-full:focus{
    padding-left     : 100% !important;
  }

  .md\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .md\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .md\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .group:hover .md\:group-hover\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .md\:group-hover\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .md\:group-hover\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .group:hover .md\:group-hover\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .md\:group-hover\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color     : transparent !important;
  }

  .md\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:hover\:placeholder-transparent:hover::-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:hover\:placeholder-transparent:hover::placeholder{
    color     : transparent !important;
  }

  .md\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-white:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-black:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-cool-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-red-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-orange-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-yellow-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-green-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-teal-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-indigo-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-purple-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-pink-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-brand:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-brand:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-brand:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:hover\:placeholder-blue-brand:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color     : transparent !important;
  }

  .md\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color     : transparent !important;
  }

  .md\:focus\:placeholder-transparent:focus::placeholder{
    color     : transparent !important;
  }

  .md\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-cool-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-red-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-orange-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-yellow-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-green-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-teal-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-indigo-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-purple-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-pink-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-brand:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-brand:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-brand:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:placeholder-blue-brand:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .md\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:hover\:placeholder-opacity-0:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:hover\:placeholder-opacity-25:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:hover\:placeholder-opacity-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:hover\:placeholder-opacity-75:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:hover\:placeholder-opacity-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .md\:pointer-events-none{
    pointer-events     : none !important;
  }

  .md\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .group:hover .md\:group-hover\:pointer-events-none{
    pointer-events     : none !important;
  }

  .group:hover .md\:group-hover\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .md\:hover\:pointer-events-none:hover{
    pointer-events     : none !important;
  }

  .md\:hover\:pointer-events-auto:hover{
    pointer-events     : auto !important;
  }

  .md\:focus\:pointer-events-none:focus{
    pointer-events     : none !important;
  }

  .md\:focus\:pointer-events-auto:focus{
    pointer-events     : auto !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;
  }

  .group:hover .md\:group-hover\:static{
    position     : static !important;
  }

  .group:hover .md\:group-hover\:fixed{
    position     : fixed !important;
  }

  .group:hover .md\:group-hover\:absolute{
    position     : absolute !important;
  }

  .group:hover .md\:group-hover\:relative{
    position     : relative !important;
  }

  .group:hover .md\:group-hover\:sticky{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .md\:hover\:static:hover{
    position     : static !important;
  }

  .md\:hover\:fixed:hover{
    position     : fixed !important;
  }

  .md\:hover\:absolute:hover{
    position     : absolute !important;
  }

  .md\:hover\:relative:hover{
    position     : relative !important;
  }

  .md\:hover\:sticky:hover{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .md\:focus\:static:focus{
    position     : static !important;
  }

  .md\:focus\:fixed:focus{
    position     : fixed !important;
  }

  .md\:focus\:absolute:focus{
    position     : absolute !important;
  }

  .md\:focus\:relative:focus{
    position     : relative !important;
  }

  .md\:focus\:sticky:focus{
    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-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .md\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .md\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !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-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-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .md\:inset-x-20{
    right     : 5rem !important;
    left     : 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-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .md\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .md\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !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\: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-20{
    top     : 5rem !important;
  }

  .md\:right-20{
    right     : 5rem !important;
  }

  .md\:bottom-20{
    bottom     : 5rem !important;
  }

  .md\:left-20{
    left     : 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-28{
    top     : 7rem !important;
  }

  .md\:right-28{
    right     : 7rem !important;
  }

  .md\:bottom-28{
    bottom     : 7rem !important;
  }

  .md\:left-28{
    left     : 7rem !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-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-96{
    top     : 24rem !important;
  }

  .md\:right-96{
    right     : 24rem !important;
  }

  .md\:bottom-96{
    bottom     : 24rem !important;
  }

  .md\:left-96{
    left     : 24rem !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;
  }

  .group:hover .md\:group-hover\:inset-0{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .md\:group-hover\:inset-1{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-2{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-3{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-4{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .md\:group-hover\:inset-5{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-6{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-7{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-8{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .md\:group-hover\:inset-9{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-10{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-11{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-12{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .md\:group-hover\:inset-13{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-14{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-15{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-16{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .md\:group-hover\:inset-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .md\:group-hover\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .md\:group-hover\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .md\:group-hover\:inset-32{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .md\:group-hover\:inset-36{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .md\:group-hover\:inset-40{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .md\:group-hover\:inset-44{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .md\:group-hover\:inset-48{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .md\:group-hover\:inset-52{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .md\:group-hover\:inset-56{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .md\:group-hover\:inset-60{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .md\:group-hover\:inset-64{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .md\:group-hover\:inset-72{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .md\:group-hover\:inset-80{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .md\:group-hover\:inset-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .md\:group-hover\:inset-auto{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .group:hover .md\:group-hover\:inset-px{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .md\:group-hover\:inset-0\.5{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:inset-1\.5{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:inset-2\.5{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:inset-3\.5{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:inset-1\/2{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-1\/3{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-2\/3{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-1\/4{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-2\/4{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-3\/4{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-1\/5{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .md\:group-hover\:inset-2\/5{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .md\:group-hover\:inset-3\/5{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .md\:group-hover\:inset-4\/5{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .md\:group-hover\:inset-1\/6{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-2\/6{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-3\/6{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-4\/6{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-5\/6{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-1\/12{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-2\/12{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-3\/12{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-4\/12{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-5\/12{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-6\/12{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-7\/12{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-8\/12{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-9\/12{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-10\/12{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-11\/12{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-full{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .md\:group-hover\:inset-y-0{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:inset-x-0{
    right     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .md\:group-hover\:inset-y-1{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-1{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-2{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-2{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-3{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-3{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-4{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-4{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-5{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-5{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-6{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-6{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-7{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-7{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-8{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-8{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-9{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-9{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-10{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-10{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-11{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-11{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-12{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-12{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-13{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-13{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-14{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-14{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-15{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-15{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-16{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-16{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-20{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-24{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-24{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-32{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-32{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-36{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-36{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-40{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-40{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-44{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-44{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-48{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-48{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-52{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-52{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-56{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-56{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-60{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-60{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-64{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-64{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-72{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-72{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-80{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-80{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-auto{
    top     : auto !important;
    bottom     : auto !important;
  }

  .group:hover .md\:group-hover\:inset-x-auto{
    right     : auto !important;
    left     : auto !important;
  }

  .group:hover .md\:group-hover\:inset-y-px{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:inset-x-px{
    right     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .md\:group-hover\:inset-y-0\.5{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-0\.5{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\.5{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\.5{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\.5{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\.5{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-3\.5{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:inset-x-3\.5{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/2{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/2{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/3{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/3{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\/3{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\/3{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/4{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/4{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\/4{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\/4{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-y-3\/4{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-x-3\/4{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/5{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/5{
    right     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\/5{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\/5{
    right     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .md\:group-hover\:inset-y-3\/5{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:inset-x-3\/5{
    right     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .md\:group-hover\:inset-y-4\/5{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:inset-x-4\/5{
    right     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/6{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/6{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\/6{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\/6{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-3\/6{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-x-3\/6{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-y-4\/6{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-4\/6{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-5\/6{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-5\/6{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-1\/12{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-1\/12{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-2\/12{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-2\/12{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-3\/12{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-x-3\/12{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:inset-y-4\/12{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-4\/12{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-5\/12{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-5\/12{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-6\/12{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-x-6\/12{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:inset-y-7\/12{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-7\/12{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-8\/12{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-8\/12{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-9\/12{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-x-9\/12{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:inset-y-10\/12{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-x-10\/12{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:inset-y-11\/12{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-x-11\/12{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:inset-y-full{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:inset-x-full{
    right     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .md\:group-hover\:top-0{
    top     : 0 !important;
  }

  .group:hover .md\:group-hover\:right-0{
    right     : 0 !important;
  }

  .group:hover .md\:group-hover\:bottom-0{
    bottom     : 0 !important;
  }

  .group:hover .md\:group-hover\:left-0{
    left     : 0 !important;
  }

  .group:hover .md\:group-hover\:top-1{
    top     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:right-1{
    right     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:bottom-1{
    bottom     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:left-1{
    left     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:top-2{
    top     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:right-2{
    right     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:bottom-2{
    bottom     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:left-2{
    left     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:top-3{
    top     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:right-3{
    right     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:bottom-3{
    bottom     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:left-3{
    left     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:top-4{
    top     : 1rem !important;
  }

  .group:hover .md\:group-hover\:right-4{
    right     : 1rem !important;
  }

  .group:hover .md\:group-hover\:bottom-4{
    bottom     : 1rem !important;
  }

  .group:hover .md\:group-hover\:left-4{
    left     : 1rem !important;
  }

  .group:hover .md\:group-hover\:top-5{
    top     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:right-5{
    right     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:bottom-5{
    bottom     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:left-5{
    left     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:top-6{
    top     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:right-6{
    right     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:bottom-6{
    bottom     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:left-6{
    left     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:top-7{
    top     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:right-7{
    right     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:bottom-7{
    bottom     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:left-7{
    left     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:top-8{
    top     : 2rem !important;
  }

  .group:hover .md\:group-hover\:right-8{
    right     : 2rem !important;
  }

  .group:hover .md\:group-hover\:bottom-8{
    bottom     : 2rem !important;
  }

  .group:hover .md\:group-hover\:left-8{
    left     : 2rem !important;
  }

  .group:hover .md\:group-hover\:top-9{
    top     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:right-9{
    right     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:bottom-9{
    bottom     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:left-9{
    left     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:top-10{
    top     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:right-10{
    right     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:bottom-10{
    bottom     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:left-10{
    left     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:top-11{
    top     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:right-11{
    right     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:bottom-11{
    bottom     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:left-11{
    left     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:top-12{
    top     : 3rem !important;
  }

  .group:hover .md\:group-hover\:right-12{
    right     : 3rem !important;
  }

  .group:hover .md\:group-hover\:bottom-12{
    bottom     : 3rem !important;
  }

  .group:hover .md\:group-hover\:left-12{
    left     : 3rem !important;
  }

  .group:hover .md\:group-hover\:top-13{
    top     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:right-13{
    right     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:bottom-13{
    bottom     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:left-13{
    left     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:top-14{
    top     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:right-14{
    right     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:bottom-14{
    bottom     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:left-14{
    left     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:top-15{
    top     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:right-15{
    right     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:bottom-15{
    bottom     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:left-15{
    left     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:top-16{
    top     : 4rem !important;
  }

  .group:hover .md\:group-hover\:right-16{
    right     : 4rem !important;
  }

  .group:hover .md\:group-hover\:bottom-16{
    bottom     : 4rem !important;
  }

  .group:hover .md\:group-hover\:left-16{
    left     : 4rem !important;
  }

  .group:hover .md\:group-hover\:top-20{
    top     : 5rem !important;
  }

  .group:hover .md\:group-hover\:right-20{
    right     : 5rem !important;
  }

  .group:hover .md\:group-hover\:bottom-20{
    bottom     : 5rem !important;
  }

  .group:hover .md\:group-hover\:left-20{
    left     : 5rem !important;
  }

  .group:hover .md\:group-hover\:top-24{
    top     : 6rem !important;
  }

  .group:hover .md\:group-hover\:right-24{
    right     : 6rem !important;
  }

  .group:hover .md\:group-hover\:bottom-24{
    bottom     : 6rem !important;
  }

  .group:hover .md\:group-hover\:left-24{
    left     : 6rem !important;
  }

  .group:hover .md\:group-hover\:top-28{
    top     : 7rem !important;
  }

  .group:hover .md\:group-hover\:right-28{
    right     : 7rem !important;
  }

  .group:hover .md\:group-hover\:bottom-28{
    bottom     : 7rem !important;
  }

  .group:hover .md\:group-hover\:left-28{
    left     : 7rem !important;
  }

  .group:hover .md\:group-hover\:top-32{
    top     : 8rem !important;
  }

  .group:hover .md\:group-hover\:right-32{
    right     : 8rem !important;
  }

  .group:hover .md\:group-hover\:bottom-32{
    bottom     : 8rem !important;
  }

  .group:hover .md\:group-hover\:left-32{
    left     : 8rem !important;
  }

  .group:hover .md\:group-hover\:top-36{
    top     : 9rem !important;
  }

  .group:hover .md\:group-hover\:right-36{
    right     : 9rem !important;
  }

  .group:hover .md\:group-hover\:bottom-36{
    bottom     : 9rem !important;
  }

  .group:hover .md\:group-hover\:left-36{
    left     : 9rem !important;
  }

  .group:hover .md\:group-hover\:top-40{
    top     : 10rem !important;
  }

  .group:hover .md\:group-hover\:right-40{
    right     : 10rem !important;
  }

  .group:hover .md\:group-hover\:bottom-40{
    bottom     : 10rem !important;
  }

  .group:hover .md\:group-hover\:left-40{
    left     : 10rem !important;
  }

  .group:hover .md\:group-hover\:top-44{
    top     : 11rem !important;
  }

  .group:hover .md\:group-hover\:right-44{
    right     : 11rem !important;
  }

  .group:hover .md\:group-hover\:bottom-44{
    bottom     : 11rem !important;
  }

  .group:hover .md\:group-hover\:left-44{
    left     : 11rem !important;
  }

  .group:hover .md\:group-hover\:top-48{
    top     : 12rem !important;
  }

  .group:hover .md\:group-hover\:right-48{
    right     : 12rem !important;
  }

  .group:hover .md\:group-hover\:bottom-48{
    bottom     : 12rem !important;
  }

  .group:hover .md\:group-hover\:left-48{
    left     : 12rem !important;
  }

  .group:hover .md\:group-hover\:top-52{
    top     : 13rem !important;
  }

  .group:hover .md\:group-hover\:right-52{
    right     : 13rem !important;
  }

  .group:hover .md\:group-hover\:bottom-52{
    bottom     : 13rem !important;
  }

  .group:hover .md\:group-hover\:left-52{
    left     : 13rem !important;
  }

  .group:hover .md\:group-hover\:top-56{
    top     : 14rem !important;
  }

  .group:hover .md\:group-hover\:right-56{
    right     : 14rem !important;
  }

  .group:hover .md\:group-hover\:bottom-56{
    bottom     : 14rem !important;
  }

  .group:hover .md\:group-hover\:left-56{
    left     : 14rem !important;
  }

  .group:hover .md\:group-hover\:top-60{
    top     : 15rem !important;
  }

  .group:hover .md\:group-hover\:right-60{
    right     : 15rem !important;
  }

  .group:hover .md\:group-hover\:bottom-60{
    bottom     : 15rem !important;
  }

  .group:hover .md\:group-hover\:left-60{
    left     : 15rem !important;
  }

  .group:hover .md\:group-hover\:top-64{
    top     : 16rem !important;
  }

  .group:hover .md\:group-hover\:right-64{
    right     : 16rem !important;
  }

  .group:hover .md\:group-hover\:bottom-64{
    bottom     : 16rem !important;
  }

  .group:hover .md\:group-hover\:left-64{
    left     : 16rem !important;
  }

  .group:hover .md\:group-hover\:top-72{
    top     : 18rem !important;
  }

  .group:hover .md\:group-hover\:right-72{
    right     : 18rem !important;
  }

  .group:hover .md\:group-hover\:bottom-72{
    bottom     : 18rem !important;
  }

  .group:hover .md\:group-hover\:left-72{
    left     : 18rem !important;
  }

  .group:hover .md\:group-hover\:top-80{
    top     : 20rem !important;
  }

  .group:hover .md\:group-hover\:right-80{
    right     : 20rem !important;
  }

  .group:hover .md\:group-hover\:bottom-80{
    bottom     : 20rem !important;
  }

  .group:hover .md\:group-hover\:left-80{
    left     : 20rem !important;
  }

  .group:hover .md\:group-hover\:top-96{
    top     : 24rem !important;
  }

  .group:hover .md\:group-hover\:right-96{
    right     : 24rem !important;
  }

  .group:hover .md\:group-hover\:bottom-96{
    bottom     : 24rem !important;
  }

  .group:hover .md\:group-hover\:left-96{
    left     : 24rem !important;
  }

  .group:hover .md\:group-hover\:top-auto{
    top     : auto !important;
  }

  .group:hover .md\:group-hover\:right-auto{
    right     : auto !important;
  }

  .group:hover .md\:group-hover\:bottom-auto{
    bottom     : auto !important;
  }

  .group:hover .md\:group-hover\:left-auto{
    left     : auto !important;
  }

  .group:hover .md\:group-hover\:top-px{
    top     : 1px !important;
  }

  .group:hover .md\:group-hover\:right-px{
    right     : 1px !important;
  }

  .group:hover .md\:group-hover\:bottom-px{
    bottom     : 1px !important;
  }

  .group:hover .md\:group-hover\:left-px{
    left     : 1px !important;
  }

  .group:hover .md\:group-hover\:top-0\.5{
    top     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:right-0\.5{
    right     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:bottom-0\.5{
    bottom     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:left-0\.5{
    left     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:top-1\.5{
    top     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:right-1\.5{
    right     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:bottom-1\.5{
    bottom     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:left-1\.5{
    left     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:top-2\.5{
    top     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:right-2\.5{
    right     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:bottom-2\.5{
    bottom     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:left-2\.5{
    left     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:top-3\.5{
    top     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:right-3\.5{
    right     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:bottom-3\.5{
    bottom     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:left-3\.5{
    left     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:top-1\/2{
    top     : 50% !important;
  }

  .group:hover .md\:group-hover\:right-1\/2{
    right     : 50% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/2{
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:left-1\/2{
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:top-1\/3{
    top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:right-1\/3{
    right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/3{
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:left-1\/3{
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:top-2\/3{
    top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:right-2\/3{
    right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-2\/3{
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:left-2\/3{
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:top-1\/4{
    top     : 25% !important;
  }

  .group:hover .md\:group-hover\:right-1\/4{
    right     : 25% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/4{
    bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:left-1\/4{
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:top-2\/4{
    top     : 50% !important;
  }

  .group:hover .md\:group-hover\:right-2\/4{
    right     : 50% !important;
  }

  .group:hover .md\:group-hover\:bottom-2\/4{
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:left-2\/4{
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:top-3\/4{
    top     : 75% !important;
  }

  .group:hover .md\:group-hover\:right-3\/4{
    right     : 75% !important;
  }

  .group:hover .md\:group-hover\:bottom-3\/4{
    bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:left-3\/4{
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:top-1\/5{
    top     : 20% !important;
  }

  .group:hover .md\:group-hover\:right-1\/5{
    right     : 20% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/5{
    bottom     : 20% !important;
  }

  .group:hover .md\:group-hover\:left-1\/5{
    left     : 20% !important;
  }

  .group:hover .md\:group-hover\:top-2\/5{
    top     : 40% !important;
  }

  .group:hover .md\:group-hover\:right-2\/5{
    right     : 40% !important;
  }

  .group:hover .md\:group-hover\:bottom-2\/5{
    bottom     : 40% !important;
  }

  .group:hover .md\:group-hover\:left-2\/5{
    left     : 40% !important;
  }

  .group:hover .md\:group-hover\:top-3\/5{
    top     : 60% !important;
  }

  .group:hover .md\:group-hover\:right-3\/5{
    right     : 60% !important;
  }

  .group:hover .md\:group-hover\:bottom-3\/5{
    bottom     : 60% !important;
  }

  .group:hover .md\:group-hover\:left-3\/5{
    left     : 60% !important;
  }

  .group:hover .md\:group-hover\:top-4\/5{
    top     : 80% !important;
  }

  .group:hover .md\:group-hover\:right-4\/5{
    right     : 80% !important;
  }

  .group:hover .md\:group-hover\:bottom-4\/5{
    bottom     : 80% !important;
  }

  .group:hover .md\:group-hover\:left-4\/5{
    left     : 80% !important;
  }

  .group:hover .md\:group-hover\:top-1\/6{
    top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:right-1\/6{
    right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/6{
    bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:left-1\/6{
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:top-2\/6{
    top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:right-2\/6{
    right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-2\/6{
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:left-2\/6{
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:top-3\/6{
    top     : 50% !important;
  }

  .group:hover .md\:group-hover\:right-3\/6{
    right     : 50% !important;
  }

  .group:hover .md\:group-hover\:bottom-3\/6{
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:left-3\/6{
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:top-4\/6{
    top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:right-4\/6{
    right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-4\/6{
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:left-4\/6{
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:top-5\/6{
    top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:right-5\/6{
    right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-5\/6{
    bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:left-5\/6{
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:top-1\/12{
    top     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:right-1\/12{
    right     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-1\/12{
    bottom     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:left-1\/12{
    left     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:top-2\/12{
    top     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:right-2\/12{
    right     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-2\/12{
    bottom     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:left-2\/12{
    left     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:top-3\/12{
    top     : 25% !important;
  }

  .group:hover .md\:group-hover\:right-3\/12{
    right     : 25% !important;
  }

  .group:hover .md\:group-hover\:bottom-3\/12{
    bottom     : 25% !important;
  }

  .group:hover .md\:group-hover\:left-3\/12{
    left     : 25% !important;
  }

  .group:hover .md\:group-hover\:top-4\/12{
    top     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:right-4\/12{
    right     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-4\/12{
    bottom     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:left-4\/12{
    left     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:top-5\/12{
    top     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:right-5\/12{
    right     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-5\/12{
    bottom     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:left-5\/12{
    left     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:top-6\/12{
    top     : 50% !important;
  }

  .group:hover .md\:group-hover\:right-6\/12{
    right     : 50% !important;
  }

  .group:hover .md\:group-hover\:bottom-6\/12{
    bottom     : 50% !important;
  }

  .group:hover .md\:group-hover\:left-6\/12{
    left     : 50% !important;
  }

  .group:hover .md\:group-hover\:top-7\/12{
    top     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:right-7\/12{
    right     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-7\/12{
    bottom     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:left-7\/12{
    left     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:top-8\/12{
    top     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:right-8\/12{
    right     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-8\/12{
    bottom     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:left-8\/12{
    left     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:top-9\/12{
    top     : 75% !important;
  }

  .group:hover .md\:group-hover\:right-9\/12{
    right     : 75% !important;
  }

  .group:hover .md\:group-hover\:bottom-9\/12{
    bottom     : 75% !important;
  }

  .group:hover .md\:group-hover\:left-9\/12{
    left     : 75% !important;
  }

  .group:hover .md\:group-hover\:top-10\/12{
    top     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:right-10\/12{
    right     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:bottom-10\/12{
    bottom     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:left-10\/12{
    left     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:top-11\/12{
    top     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:right-11\/12{
    right     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:bottom-11\/12{
    bottom     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:left-11\/12{
    left     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:top-full{
    top     : 100% !important;
  }

  .group:hover .md\:group-hover\:right-full{
    right     : 100% !important;
  }

  .group:hover .md\:group-hover\:bottom-full{
    bottom     : 100% !important;
  }

  .group:hover .md\:group-hover\:left-full{
    left     : 100% !important;
  }

  .md\:hover\:inset-0:hover{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .md\:hover\:inset-1:hover{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .md\:hover\:inset-2:hover{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .md\:hover\:inset-3:hover{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .md\:hover\:inset-4:hover{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .md\:hover\:inset-5:hover{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .md\:hover\:inset-6:hover{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .md\:hover\:inset-7:hover{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .md\:hover\:inset-8:hover{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .md\:hover\:inset-9:hover{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .md\:hover\:inset-10:hover{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .md\:hover\:inset-11:hover{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .md\:hover\:inset-12:hover{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .md\:hover\:inset-13:hover{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .md\:hover\:inset-14:hover{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .md\:hover\:inset-15:hover{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .md\:hover\:inset-16:hover{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .md\:hover\:inset-20:hover{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .md\:hover\:inset-24:hover{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .md\:hover\:inset-28:hover{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .md\:hover\:inset-32:hover{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .md\:hover\:inset-36:hover{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .md\:hover\:inset-40:hover{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .md\:hover\:inset-44:hover{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .md\:hover\:inset-48:hover{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .md\:hover\:inset-52:hover{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .md\:hover\:inset-56:hover{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .md\:hover\:inset-60:hover{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .md\:hover\:inset-64:hover{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .md\:hover\:inset-72:hover{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .md\:hover\:inset-80:hover{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .md\:hover\:inset-96:hover{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .md\:hover\:inset-auto:hover{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .md\:hover\:inset-px:hover{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .md\:hover\:inset-0\.5:hover{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .md\:hover\:inset-1\.5:hover{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .md\:hover\:inset-2\.5:hover{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .md\:hover\:inset-3\.5:hover{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .md\:hover\:inset-1\/2:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-1\/3:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-2\/3:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-1\/4:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .md\:hover\:inset-2\/4:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-3\/4:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .md\:hover\:inset-1\/5:hover{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .md\:hover\:inset-2\/5:hover{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .md\:hover\:inset-3\/5:hover{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .md\:hover\:inset-4\/5:hover{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .md\:hover\:inset-1\/6:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:hover\:inset-2\/6:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-3\/6:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-4\/6:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-5\/6:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:hover\:inset-1\/12:hover{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .md\:hover\:inset-2\/12:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:hover\:inset-3\/12:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .md\:hover\:inset-4\/12:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-5\/12:hover{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .md\:hover\:inset-6\/12:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-7\/12:hover{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .md\:hover\:inset-8\/12:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-9\/12:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .md\:hover\:inset-10\/12:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:hover\:inset-11\/12:hover{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .md\:hover\:inset-full:hover{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .md\:hover\:inset-y-0:hover{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .md\:hover\:inset-x-0:hover{
    right     : 0 !important;
    left     : 0 !important;
  }

  .md\:hover\:inset-y-1:hover{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .md\:hover\:inset-x-1:hover{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .md\:hover\:inset-y-2:hover{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .md\:hover\:inset-x-2:hover{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .md\:hover\:inset-y-3:hover{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .md\:hover\:inset-x-3:hover{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .md\:hover\:inset-y-4:hover{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .md\:hover\:inset-x-4:hover{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .md\:hover\:inset-y-5:hover{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .md\:hover\:inset-x-5:hover{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .md\:hover\:inset-y-6:hover{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .md\:hover\:inset-x-6:hover{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .md\:hover\:inset-y-7:hover{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .md\:hover\:inset-x-7:hover{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .md\:hover\:inset-y-8:hover{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .md\:hover\:inset-x-8:hover{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .md\:hover\:inset-y-9:hover{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .md\:hover\:inset-x-9:hover{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .md\:hover\:inset-y-10:hover{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .md\:hover\:inset-x-10:hover{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .md\:hover\:inset-y-11:hover{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .md\:hover\:inset-x-11:hover{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .md\:hover\:inset-y-12:hover{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .md\:hover\:inset-x-12:hover{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .md\:hover\:inset-y-13:hover{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .md\:hover\:inset-x-13:hover{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .md\:hover\:inset-y-14:hover{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .md\:hover\:inset-x-14:hover{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .md\:hover\:inset-y-15:hover{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .md\:hover\:inset-x-15:hover{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .md\:hover\:inset-y-16:hover{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .md\:hover\:inset-x-16:hover{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .md\:hover\:inset-y-20:hover{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .md\:hover\:inset-x-20:hover{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .md\:hover\:inset-y-24:hover{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .md\:hover\:inset-x-24:hover{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .md\:hover\:inset-y-28:hover{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .md\:hover\:inset-x-28:hover{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .md\:hover\:inset-y-32:hover{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .md\:hover\:inset-x-32:hover{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .md\:hover\:inset-y-36:hover{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .md\:hover\:inset-x-36:hover{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .md\:hover\:inset-y-40:hover{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .md\:hover\:inset-x-40:hover{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .md\:hover\:inset-y-44:hover{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .md\:hover\:inset-x-44:hover{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .md\:hover\:inset-y-48:hover{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .md\:hover\:inset-x-48:hover{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .md\:hover\:inset-y-52:hover{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .md\:hover\:inset-x-52:hover{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .md\:hover\:inset-y-56:hover{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .md\:hover\:inset-x-56:hover{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .md\:hover\:inset-y-60:hover{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .md\:hover\:inset-x-60:hover{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .md\:hover\:inset-y-64:hover{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .md\:hover\:inset-x-64:hover{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .md\:hover\:inset-y-72:hover{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .md\:hover\:inset-x-72:hover{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .md\:hover\:inset-y-80:hover{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .md\:hover\:inset-x-80:hover{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .md\:hover\:inset-y-96:hover{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .md\:hover\:inset-x-96:hover{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .md\:hover\:inset-y-auto:hover{
    top     : auto !important;
    bottom     : auto !important;
  }

  .md\:hover\:inset-x-auto:hover{
    right     : auto !important;
    left     : auto !important;
  }

  .md\:hover\:inset-y-px:hover{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .md\:hover\:inset-x-px:hover{
    right     : 1px !important;
    left     : 1px !important;
  }

  .md\:hover\:inset-y-0\.5:hover{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .md\:hover\:inset-x-0\.5:hover{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .md\:hover\:inset-y-1\.5:hover{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .md\:hover\:inset-x-1\.5:hover{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .md\:hover\:inset-y-2\.5:hover{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .md\:hover\:inset-x-2\.5:hover{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .md\:hover\:inset-y-3\.5:hover{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .md\:hover\:inset-x-3\.5:hover{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .md\:hover\:inset-y-1\/2:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:hover\:inset-x-1\/2:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-y-1\/3:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:hover\:inset-x-1\/3:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-y-2\/3:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:hover\:inset-x-2\/3:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-y-1\/4:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .md\:hover\:inset-x-1\/4:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .md\:hover\:inset-y-2\/4:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:hover\:inset-x-2\/4:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-y-3\/4:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .md\:hover\:inset-x-3\/4:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .md\:hover\:inset-y-1\/5:hover{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .md\:hover\:inset-x-1\/5:hover{
    right     : 20% !important;
    left     : 20% !important;
  }

  .md\:hover\:inset-y-2\/5:hover{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .md\:hover\:inset-x-2\/5:hover{
    right     : 40% !important;
    left     : 40% !important;
  }

  .md\:hover\:inset-y-3\/5:hover{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .md\:hover\:inset-x-3\/5:hover{
    right     : 60% !important;
    left     : 60% !important;
  }

  .md\:hover\:inset-y-4\/5:hover{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .md\:hover\:inset-x-4\/5:hover{
    right     : 80% !important;
    left     : 80% !important;
  }

  .md\:hover\:inset-y-1\/6:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .md\:hover\:inset-x-1\/6:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:hover\:inset-y-2\/6:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:hover\:inset-x-2\/6:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-y-3\/6:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:hover\:inset-x-3\/6:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-y-4\/6:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:hover\:inset-x-4\/6:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-y-5\/6:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .md\:hover\:inset-x-5\/6:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:hover\:inset-y-1\/12:hover{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .md\:hover\:inset-x-1\/12:hover{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .md\:hover\:inset-y-2\/12:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .md\:hover\:inset-x-2\/12:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:hover\:inset-y-3\/12:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .md\:hover\:inset-x-3\/12:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .md\:hover\:inset-y-4\/12:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:hover\:inset-x-4\/12:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:hover\:inset-y-5\/12:hover{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .md\:hover\:inset-x-5\/12:hover{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .md\:hover\:inset-y-6\/12:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:hover\:inset-x-6\/12:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:hover\:inset-y-7\/12:hover{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .md\:hover\:inset-x-7\/12:hover{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .md\:hover\:inset-y-8\/12:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:hover\:inset-x-8\/12:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:hover\:inset-y-9\/12:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .md\:hover\:inset-x-9\/12:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .md\:hover\:inset-y-10\/12:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .md\:hover\:inset-x-10\/12:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:hover\:inset-y-11\/12:hover{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .md\:hover\:inset-x-11\/12:hover{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .md\:hover\:inset-y-full:hover{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .md\:hover\:inset-x-full:hover{
    right     : 100% !important;
    left     : 100% !important;
  }

  .md\:hover\:top-0:hover{
    top     : 0 !important;
  }

  .md\:hover\:right-0:hover{
    right     : 0 !important;
  }

  .md\:hover\:bottom-0:hover{
    bottom     : 0 !important;
  }

  .md\:hover\:left-0:hover{
    left     : 0 !important;
  }

  .md\:hover\:top-1:hover{
    top     : 0.25rem !important;
  }

  .md\:hover\:right-1:hover{
    right     : 0.25rem !important;
  }

  .md\:hover\:bottom-1:hover{
    bottom     : 0.25rem !important;
  }

  .md\:hover\:left-1:hover{
    left     : 0.25rem !important;
  }

  .md\:hover\:top-2:hover{
    top     : 0.5rem !important;
  }

  .md\:hover\:right-2:hover{
    right     : 0.5rem !important;
  }

  .md\:hover\:bottom-2:hover{
    bottom     : 0.5rem !important;
  }

  .md\:hover\:left-2:hover{
    left     : 0.5rem !important;
  }

  .md\:hover\:top-3:hover{
    top     : 0.75rem !important;
  }

  .md\:hover\:right-3:hover{
    right     : 0.75rem !important;
  }

  .md\:hover\:bottom-3:hover{
    bottom     : 0.75rem !important;
  }

  .md\:hover\:left-3:hover{
    left     : 0.75rem !important;
  }

  .md\:hover\:top-4:hover{
    top     : 1rem !important;
  }

  .md\:hover\:right-4:hover{
    right     : 1rem !important;
  }

  .md\:hover\:bottom-4:hover{
    bottom     : 1rem !important;
  }

  .md\:hover\:left-4:hover{
    left     : 1rem !important;
  }

  .md\:hover\:top-5:hover{
    top     : 1.25rem !important;
  }

  .md\:hover\:right-5:hover{
    right     : 1.25rem !important;
  }

  .md\:hover\:bottom-5:hover{
    bottom     : 1.25rem !important;
  }

  .md\:hover\:left-5:hover{
    left     : 1.25rem !important;
  }

  .md\:hover\:top-6:hover{
    top     : 1.5rem !important;
  }

  .md\:hover\:right-6:hover{
    right     : 1.5rem !important;
  }

  .md\:hover\:bottom-6:hover{
    bottom     : 1.5rem !important;
  }

  .md\:hover\:left-6:hover{
    left     : 1.5rem !important;
  }

  .md\:hover\:top-7:hover{
    top     : 1.75rem !important;
  }

  .md\:hover\:right-7:hover{
    right     : 1.75rem !important;
  }

  .md\:hover\:bottom-7:hover{
    bottom     : 1.75rem !important;
  }

  .md\:hover\:left-7:hover{
    left     : 1.75rem !important;
  }

  .md\:hover\:top-8:hover{
    top     : 2rem !important;
  }

  .md\:hover\:right-8:hover{
    right     : 2rem !important;
  }

  .md\:hover\:bottom-8:hover{
    bottom     : 2rem !important;
  }

  .md\:hover\:left-8:hover{
    left     : 2rem !important;
  }

  .md\:hover\:top-9:hover{
    top     : 2.25rem !important;
  }

  .md\:hover\:right-9:hover{
    right     : 2.25rem !important;
  }

  .md\:hover\:bottom-9:hover{
    bottom     : 2.25rem !important;
  }

  .md\:hover\:left-9:hover{
    left     : 2.25rem !important;
  }

  .md\:hover\:top-10:hover{
    top     : 2.5rem !important;
  }

  .md\:hover\:right-10:hover{
    right     : 2.5rem !important;
  }

  .md\:hover\:bottom-10:hover{
    bottom     : 2.5rem !important;
  }

  .md\:hover\:left-10:hover{
    left     : 2.5rem !important;
  }

  .md\:hover\:top-11:hover{
    top     : 2.75rem !important;
  }

  .md\:hover\:right-11:hover{
    right     : 2.75rem !important;
  }

  .md\:hover\:bottom-11:hover{
    bottom     : 2.75rem !important;
  }

  .md\:hover\:left-11:hover{
    left     : 2.75rem !important;
  }

  .md\:hover\:top-12:hover{
    top     : 3rem !important;
  }

  .md\:hover\:right-12:hover{
    right     : 3rem !important;
  }

  .md\:hover\:bottom-12:hover{
    bottom     : 3rem !important;
  }

  .md\:hover\:left-12:hover{
    left     : 3rem !important;
  }

  .md\:hover\:top-13:hover{
    top     : 3.25rem !important;
  }

  .md\:hover\:right-13:hover{
    right     : 3.25rem !important;
  }

  .md\:hover\:bottom-13:hover{
    bottom     : 3.25rem !important;
  }

  .md\:hover\:left-13:hover{
    left     : 3.25rem !important;
  }

  .md\:hover\:top-14:hover{
    top     : 3.5rem !important;
  }

  .md\:hover\:right-14:hover{
    right     : 3.5rem !important;
  }

  .md\:hover\:bottom-14:hover{
    bottom     : 3.5rem !important;
  }

  .md\:hover\:left-14:hover{
    left     : 3.5rem !important;
  }

  .md\:hover\:top-15:hover{
    top     : 3.75rem !important;
  }

  .md\:hover\:right-15:hover{
    right     : 3.75rem !important;
  }

  .md\:hover\:bottom-15:hover{
    bottom     : 3.75rem !important;
  }

  .md\:hover\:left-15:hover{
    left     : 3.75rem !important;
  }

  .md\:hover\:top-16:hover{
    top     : 4rem !important;
  }

  .md\:hover\:right-16:hover{
    right     : 4rem !important;
  }

  .md\:hover\:bottom-16:hover{
    bottom     : 4rem !important;
  }

  .md\:hover\:left-16:hover{
    left     : 4rem !important;
  }

  .md\:hover\:top-20:hover{
    top     : 5rem !important;
  }

  .md\:hover\:right-20:hover{
    right     : 5rem !important;
  }

  .md\:hover\:bottom-20:hover{
    bottom     : 5rem !important;
  }

  .md\:hover\:left-20:hover{
    left     : 5rem !important;
  }

  .md\:hover\:top-24:hover{
    top     : 6rem !important;
  }

  .md\:hover\:right-24:hover{
    right     : 6rem !important;
  }

  .md\:hover\:bottom-24:hover{
    bottom     : 6rem !important;
  }

  .md\:hover\:left-24:hover{
    left     : 6rem !important;
  }

  .md\:hover\:top-28:hover{
    top     : 7rem !important;
  }

  .md\:hover\:right-28:hover{
    right     : 7rem !important;
  }

  .md\:hover\:bottom-28:hover{
    bottom     : 7rem !important;
  }

  .md\:hover\:left-28:hover{
    left     : 7rem !important;
  }

  .md\:hover\:top-32:hover{
    top     : 8rem !important;
  }

  .md\:hover\:right-32:hover{
    right     : 8rem !important;
  }

  .md\:hover\:bottom-32:hover{
    bottom     : 8rem !important;
  }

  .md\:hover\:left-32:hover{
    left     : 8rem !important;
  }

  .md\:hover\:top-36:hover{
    top     : 9rem !important;
  }

  .md\:hover\:right-36:hover{
    right     : 9rem !important;
  }

  .md\:hover\:bottom-36:hover{
    bottom     : 9rem !important;
  }

  .md\:hover\:left-36:hover{
    left     : 9rem !important;
  }

  .md\:hover\:top-40:hover{
    top     : 10rem !important;
  }

  .md\:hover\:right-40:hover{
    right     : 10rem !important;
  }

  .md\:hover\:bottom-40:hover{
    bottom     : 10rem !important;
  }

  .md\:hover\:left-40:hover{
    left     : 10rem !important;
  }

  .md\:hover\:top-44:hover{
    top     : 11rem !important;
  }

  .md\:hover\:right-44:hover{
    right     : 11rem !important;
  }

  .md\:hover\:bottom-44:hover{
    bottom     : 11rem !important;
  }

  .md\:hover\:left-44:hover{
    left     : 11rem !important;
  }

  .md\:hover\:top-48:hover{
    top     : 12rem !important;
  }

  .md\:hover\:right-48:hover{
    right     : 12rem !important;
  }

  .md\:hover\:bottom-48:hover{
    bottom     : 12rem !important;
  }

  .md\:hover\:left-48:hover{
    left     : 12rem !important;
  }

  .md\:hover\:top-52:hover{
    top     : 13rem !important;
  }

  .md\:hover\:right-52:hover{
    right     : 13rem !important;
  }

  .md\:hover\:bottom-52:hover{
    bottom     : 13rem !important;
  }

  .md\:hover\:left-52:hover{
    left     : 13rem !important;
  }

  .md\:hover\:top-56:hover{
    top     : 14rem !important;
  }

  .md\:hover\:right-56:hover{
    right     : 14rem !important;
  }

  .md\:hover\:bottom-56:hover{
    bottom     : 14rem !important;
  }

  .md\:hover\:left-56:hover{
    left     : 14rem !important;
  }

  .md\:hover\:top-60:hover{
    top     : 15rem !important;
  }

  .md\:hover\:right-60:hover{
    right     : 15rem !important;
  }

  .md\:hover\:bottom-60:hover{
    bottom     : 15rem !important;
  }

  .md\:hover\:left-60:hover{
    left     : 15rem !important;
  }

  .md\:hover\:top-64:hover{
    top     : 16rem !important;
  }

  .md\:hover\:right-64:hover{
    right     : 16rem !important;
  }

  .md\:hover\:bottom-64:hover{
    bottom     : 16rem !important;
  }

  .md\:hover\:left-64:hover{
    left     : 16rem !important;
  }

  .md\:hover\:top-72:hover{
    top     : 18rem !important;
  }

  .md\:hover\:right-72:hover{
    right     : 18rem !important;
  }

  .md\:hover\:bottom-72:hover{
    bottom     : 18rem !important;
  }

  .md\:hover\:left-72:hover{
    left     : 18rem !important;
  }

  .md\:hover\:top-80:hover{
    top     : 20rem !important;
  }

  .md\:hover\:right-80:hover{
    right     : 20rem !important;
  }

  .md\:hover\:bottom-80:hover{
    bottom     : 20rem !important;
  }

  .md\:hover\:left-80:hover{
    left     : 20rem !important;
  }

  .md\:hover\:top-96:hover{
    top     : 24rem !important;
  }

  .md\:hover\:right-96:hover{
    right     : 24rem !important;
  }

  .md\:hover\:bottom-96:hover{
    bottom     : 24rem !important;
  }

  .md\:hover\:left-96:hover{
    left     : 24rem !important;
  }

  .md\:hover\:top-auto:hover{
    top     : auto !important;
  }

  .md\:hover\:right-auto:hover{
    right     : auto !important;
  }

  .md\:hover\:bottom-auto:hover{
    bottom     : auto !important;
  }

  .md\:hover\:left-auto:hover{
    left     : auto !important;
  }

  .md\:hover\:top-px:hover{
    top     : 1px !important;
  }

  .md\:hover\:right-px:hover{
    right     : 1px !important;
  }

  .md\:hover\:bottom-px:hover{
    bottom     : 1px !important;
  }

  .md\:hover\:left-px:hover{
    left     : 1px !important;
  }

  .md\:hover\:top-0\.5:hover{
    top     : 0.125rem !important;
  }

  .md\:hover\:right-0\.5:hover{
    right     : 0.125rem !important;
  }

  .md\:hover\:bottom-0\.5:hover{
    bottom     : 0.125rem !important;
  }

  .md\:hover\:left-0\.5:hover{
    left     : 0.125rem !important;
  }

  .md\:hover\:top-1\.5:hover{
    top     : 0.375rem !important;
  }

  .md\:hover\:right-1\.5:hover{
    right     : 0.375rem !important;
  }

  .md\:hover\:bottom-1\.5:hover{
    bottom     : 0.375rem !important;
  }

  .md\:hover\:left-1\.5:hover{
    left     : 0.375rem !important;
  }

  .md\:hover\:top-2\.5:hover{
    top     : 0.625rem !important;
  }

  .md\:hover\:right-2\.5:hover{
    right     : 0.625rem !important;
  }

  .md\:hover\:bottom-2\.5:hover{
    bottom     : 0.625rem !important;
  }

  .md\:hover\:left-2\.5:hover{
    left     : 0.625rem !important;
  }

  .md\:hover\:top-3\.5:hover{
    top     : 0.875rem !important;
  }

  .md\:hover\:right-3\.5:hover{
    right     : 0.875rem !important;
  }

  .md\:hover\:bottom-3\.5:hover{
    bottom     : 0.875rem !important;
  }

  .md\:hover\:left-3\.5:hover{
    left     : 0.875rem !important;
  }

  .md\:hover\:top-1\/2:hover{
    top     : 50% !important;
  }

  .md\:hover\:right-1\/2:hover{
    right     : 50% !important;
  }

  .md\:hover\:bottom-1\/2:hover{
    bottom     : 50% !important;
  }

  .md\:hover\:left-1\/2:hover{
    left     : 50% !important;
  }

  .md\:hover\:top-1\/3:hover{
    top     : 33.333333% !important;
  }

  .md\:hover\:right-1\/3:hover{
    right     : 33.333333% !important;
  }

  .md\:hover\:bottom-1\/3:hover{
    bottom     : 33.333333% !important;
  }

  .md\:hover\:left-1\/3:hover{
    left     : 33.333333% !important;
  }

  .md\:hover\:top-2\/3:hover{
    top     : 66.666667% !important;
  }

  .md\:hover\:right-2\/3:hover{
    right     : 66.666667% !important;
  }

  .md\:hover\:bottom-2\/3:hover{
    bottom     : 66.666667% !important;
  }

  .md\:hover\:left-2\/3:hover{
    left     : 66.666667% !important;
  }

  .md\:hover\:top-1\/4:hover{
    top     : 25% !important;
  }

  .md\:hover\:right-1\/4:hover{
    right     : 25% !important;
  }

  .md\:hover\:bottom-1\/4:hover{
    bottom     : 25% !important;
  }

  .md\:hover\:left-1\/4:hover{
    left     : 25% !important;
  }

  .md\:hover\:top-2\/4:hover{
    top     : 50% !important;
  }

  .md\:hover\:right-2\/4:hover{
    right     : 50% !important;
  }

  .md\:hover\:bottom-2\/4:hover{
    bottom     : 50% !important;
  }

  .md\:hover\:left-2\/4:hover{
    left     : 50% !important;
  }

  .md\:hover\:top-3\/4:hover{
    top     : 75% !important;
  }

  .md\:hover\:right-3\/4:hover{
    right     : 75% !important;
  }

  .md\:hover\:bottom-3\/4:hover{
    bottom     : 75% !important;
  }

  .md\:hover\:left-3\/4:hover{
    left     : 75% !important;
  }

  .md\:hover\:top-1\/5:hover{
    top     : 20% !important;
  }

  .md\:hover\:right-1\/5:hover{
    right     : 20% !important;
  }

  .md\:hover\:bottom-1\/5:hover{
    bottom     : 20% !important;
  }

  .md\:hover\:left-1\/5:hover{
    left     : 20% !important;
  }

  .md\:hover\:top-2\/5:hover{
    top     : 40% !important;
  }

  .md\:hover\:right-2\/5:hover{
    right     : 40% !important;
  }

  .md\:hover\:bottom-2\/5:hover{
    bottom     : 40% !important;
  }

  .md\:hover\:left-2\/5:hover{
    left     : 40% !important;
  }

  .md\:hover\:top-3\/5:hover{
    top     : 60% !important;
  }

  .md\:hover\:right-3\/5:hover{
    right     : 60% !important;
  }

  .md\:hover\:bottom-3\/5:hover{
    bottom     : 60% !important;
  }

  .md\:hover\:left-3\/5:hover{
    left     : 60% !important;
  }

  .md\:hover\:top-4\/5:hover{
    top     : 80% !important;
  }

  .md\:hover\:right-4\/5:hover{
    right     : 80% !important;
  }

  .md\:hover\:bottom-4\/5:hover{
    bottom     : 80% !important;
  }

  .md\:hover\:left-4\/5:hover{
    left     : 80% !important;
  }

  .md\:hover\:top-1\/6:hover{
    top     : 16.666667% !important;
  }

  .md\:hover\:right-1\/6:hover{
    right     : 16.666667% !important;
  }

  .md\:hover\:bottom-1\/6:hover{
    bottom     : 16.666667% !important;
  }

  .md\:hover\:left-1\/6:hover{
    left     : 16.666667% !important;
  }

  .md\:hover\:top-2\/6:hover{
    top     : 33.333333% !important;
  }

  .md\:hover\:right-2\/6:hover{
    right     : 33.333333% !important;
  }

  .md\:hover\:bottom-2\/6:hover{
    bottom     : 33.333333% !important;
  }

  .md\:hover\:left-2\/6:hover{
    left     : 33.333333% !important;
  }

  .md\:hover\:top-3\/6:hover{
    top     : 50% !important;
  }

  .md\:hover\:right-3\/6:hover{
    right     : 50% !important;
  }

  .md\:hover\:bottom-3\/6:hover{
    bottom     : 50% !important;
  }

  .md\:hover\:left-3\/6:hover{
    left     : 50% !important;
  }

  .md\:hover\:top-4\/6:hover{
    top     : 66.666667% !important;
  }

  .md\:hover\:right-4\/6:hover{
    right     : 66.666667% !important;
  }

  .md\:hover\:bottom-4\/6:hover{
    bottom     : 66.666667% !important;
  }

  .md\:hover\:left-4\/6:hover{
    left     : 66.666667% !important;
  }

  .md\:hover\:top-5\/6:hover{
    top     : 83.333333% !important;
  }

  .md\:hover\:right-5\/6:hover{
    right     : 83.333333% !important;
  }

  .md\:hover\:bottom-5\/6:hover{
    bottom     : 83.333333% !important;
  }

  .md\:hover\:left-5\/6:hover{
    left     : 83.333333% !important;
  }

  .md\:hover\:top-1\/12:hover{
    top     : 8.333333% !important;
  }

  .md\:hover\:right-1\/12:hover{
    right     : 8.333333% !important;
  }

  .md\:hover\:bottom-1\/12:hover{
    bottom     : 8.333333% !important;
  }

  .md\:hover\:left-1\/12:hover{
    left     : 8.333333% !important;
  }

  .md\:hover\:top-2\/12:hover{
    top     : 16.666667% !important;
  }

  .md\:hover\:right-2\/12:hover{
    right     : 16.666667% !important;
  }

  .md\:hover\:bottom-2\/12:hover{
    bottom     : 16.666667% !important;
  }

  .md\:hover\:left-2\/12:hover{
    left     : 16.666667% !important;
  }

  .md\:hover\:top-3\/12:hover{
    top     : 25% !important;
  }

  .md\:hover\:right-3\/12:hover{
    right     : 25% !important;
  }

  .md\:hover\:bottom-3\/12:hover{
    bottom     : 25% !important;
  }

  .md\:hover\:left-3\/12:hover{
    left     : 25% !important;
  }

  .md\:hover\:top-4\/12:hover{
    top     : 33.333333% !important;
  }

  .md\:hover\:right-4\/12:hover{
    right     : 33.333333% !important;
  }

  .md\:hover\:bottom-4\/12:hover{
    bottom     : 33.333333% !important;
  }

  .md\:hover\:left-4\/12:hover{
    left     : 33.333333% !important;
  }

  .md\:hover\:top-5\/12:hover{
    top     : 41.666667% !important;
  }

  .md\:hover\:right-5\/12:hover{
    right     : 41.666667% !important;
  }

  .md\:hover\:bottom-5\/12:hover{
    bottom     : 41.666667% !important;
  }

  .md\:hover\:left-5\/12:hover{
    left     : 41.666667% !important;
  }

  .md\:hover\:top-6\/12:hover{
    top     : 50% !important;
  }

  .md\:hover\:right-6\/12:hover{
    right     : 50% !important;
  }

  .md\:hover\:bottom-6\/12:hover{
    bottom     : 50% !important;
  }

  .md\:hover\:left-6\/12:hover{
    left     : 50% !important;
  }

  .md\:hover\:top-7\/12:hover{
    top     : 58.333333% !important;
  }

  .md\:hover\:right-7\/12:hover{
    right     : 58.333333% !important;
  }

  .md\:hover\:bottom-7\/12:hover{
    bottom     : 58.333333% !important;
  }

  .md\:hover\:left-7\/12:hover{
    left     : 58.333333% !important;
  }

  .md\:hover\:top-8\/12:hover{
    top     : 66.666667% !important;
  }

  .md\:hover\:right-8\/12:hover{
    right     : 66.666667% !important;
  }

  .md\:hover\:bottom-8\/12:hover{
    bottom     : 66.666667% !important;
  }

  .md\:hover\:left-8\/12:hover{
    left     : 66.666667% !important;
  }

  .md\:hover\:top-9\/12:hover{
    top     : 75% !important;
  }

  .md\:hover\:right-9\/12:hover{
    right     : 75% !important;
  }

  .md\:hover\:bottom-9\/12:hover{
    bottom     : 75% !important;
  }

  .md\:hover\:left-9\/12:hover{
    left     : 75% !important;
  }

  .md\:hover\:top-10\/12:hover{
    top     : 83.333333% !important;
  }

  .md\:hover\:right-10\/12:hover{
    right     : 83.333333% !important;
  }

  .md\:hover\:bottom-10\/12:hover{
    bottom     : 83.333333% !important;
  }

  .md\:hover\:left-10\/12:hover{
    left     : 83.333333% !important;
  }

  .md\:hover\:top-11\/12:hover{
    top     : 91.666667% !important;
  }

  .md\:hover\:right-11\/12:hover{
    right     : 91.666667% !important;
  }

  .md\:hover\:bottom-11\/12:hover{
    bottom     : 91.666667% !important;
  }

  .md\:hover\:left-11\/12:hover{
    left     : 91.666667% !important;
  }

  .md\:hover\:top-full:hover{
    top     : 100% !important;
  }

  .md\:hover\:right-full:hover{
    right     : 100% !important;
  }

  .md\:hover\:bottom-full:hover{
    bottom     : 100% !important;
  }

  .md\:hover\:left-full:hover{
    left     : 100% !important;
  }

  .md\:focus\:inset-0:focus{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .md\:focus\:inset-1:focus{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .md\:focus\:inset-2:focus{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .md\:focus\:inset-3:focus{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .md\:focus\:inset-4:focus{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .md\:focus\:inset-5:focus{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .md\:focus\:inset-6:focus{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .md\:focus\:inset-7:focus{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .md\:focus\:inset-8:focus{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .md\:focus\:inset-9:focus{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .md\:focus\:inset-10:focus{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .md\:focus\:inset-11:focus{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .md\:focus\:inset-12:focus{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .md\:focus\:inset-13:focus{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .md\:focus\:inset-14:focus{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .md\:focus\:inset-15:focus{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .md\:focus\:inset-16:focus{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .md\:focus\:inset-20:focus{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .md\:focus\:inset-24:focus{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .md\:focus\:inset-28:focus{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .md\:focus\:inset-32:focus{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .md\:focus\:inset-36:focus{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .md\:focus\:inset-40:focus{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .md\:focus\:inset-44:focus{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .md\:focus\:inset-48:focus{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .md\:focus\:inset-52:focus{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .md\:focus\:inset-56:focus{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .md\:focus\:inset-60:focus{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .md\:focus\:inset-64:focus{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .md\:focus\:inset-72:focus{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .md\:focus\:inset-80:focus{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .md\:focus\:inset-96:focus{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .md\:focus\:inset-auto:focus{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .md\:focus\:inset-px:focus{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .md\:focus\:inset-0\.5:focus{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .md\:focus\:inset-1\.5:focus{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .md\:focus\:inset-2\.5:focus{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .md\:focus\:inset-3\.5:focus{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .md\:focus\:inset-1\/2:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-1\/3:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-2\/3:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-1\/4:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .md\:focus\:inset-2\/4:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-3\/4:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .md\:focus\:inset-1\/5:focus{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .md\:focus\:inset-2\/5:focus{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .md\:focus\:inset-3\/5:focus{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .md\:focus\:inset-4\/5:focus{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .md\:focus\:inset-1\/6:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:focus\:inset-2\/6:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-3\/6:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-4\/6:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-5\/6:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:focus\:inset-1\/12:focus{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .md\:focus\:inset-2\/12:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:focus\:inset-3\/12:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .md\:focus\:inset-4\/12:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-5\/12:focus{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .md\:focus\:inset-6\/12:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-7\/12:focus{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .md\:focus\:inset-8\/12:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-9\/12:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .md\:focus\:inset-10\/12:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:focus\:inset-11\/12:focus{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .md\:focus\:inset-full:focus{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .md\:focus\:inset-y-0:focus{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .md\:focus\:inset-x-0:focus{
    right     : 0 !important;
    left     : 0 !important;
  }

  .md\:focus\:inset-y-1:focus{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .md\:focus\:inset-x-1:focus{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .md\:focus\:inset-y-2:focus{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .md\:focus\:inset-x-2:focus{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .md\:focus\:inset-y-3:focus{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .md\:focus\:inset-x-3:focus{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .md\:focus\:inset-y-4:focus{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .md\:focus\:inset-x-4:focus{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .md\:focus\:inset-y-5:focus{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .md\:focus\:inset-x-5:focus{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .md\:focus\:inset-y-6:focus{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .md\:focus\:inset-x-6:focus{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .md\:focus\:inset-y-7:focus{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .md\:focus\:inset-x-7:focus{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .md\:focus\:inset-y-8:focus{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .md\:focus\:inset-x-8:focus{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .md\:focus\:inset-y-9:focus{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .md\:focus\:inset-x-9:focus{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .md\:focus\:inset-y-10:focus{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .md\:focus\:inset-x-10:focus{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .md\:focus\:inset-y-11:focus{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .md\:focus\:inset-x-11:focus{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .md\:focus\:inset-y-12:focus{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .md\:focus\:inset-x-12:focus{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .md\:focus\:inset-y-13:focus{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .md\:focus\:inset-x-13:focus{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .md\:focus\:inset-y-14:focus{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .md\:focus\:inset-x-14:focus{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .md\:focus\:inset-y-15:focus{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .md\:focus\:inset-x-15:focus{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .md\:focus\:inset-y-16:focus{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .md\:focus\:inset-x-16:focus{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .md\:focus\:inset-y-20:focus{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .md\:focus\:inset-x-20:focus{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .md\:focus\:inset-y-24:focus{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .md\:focus\:inset-x-24:focus{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .md\:focus\:inset-y-28:focus{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .md\:focus\:inset-x-28:focus{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .md\:focus\:inset-y-32:focus{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .md\:focus\:inset-x-32:focus{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .md\:focus\:inset-y-36:focus{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .md\:focus\:inset-x-36:focus{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .md\:focus\:inset-y-40:focus{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .md\:focus\:inset-x-40:focus{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .md\:focus\:inset-y-44:focus{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .md\:focus\:inset-x-44:focus{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .md\:focus\:inset-y-48:focus{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .md\:focus\:inset-x-48:focus{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .md\:focus\:inset-y-52:focus{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .md\:focus\:inset-x-52:focus{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .md\:focus\:inset-y-56:focus{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .md\:focus\:inset-x-56:focus{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .md\:focus\:inset-y-60:focus{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .md\:focus\:inset-x-60:focus{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .md\:focus\:inset-y-64:focus{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .md\:focus\:inset-x-64:focus{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .md\:focus\:inset-y-72:focus{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .md\:focus\:inset-x-72:focus{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .md\:focus\:inset-y-80:focus{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .md\:focus\:inset-x-80:focus{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .md\:focus\:inset-y-96:focus{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .md\:focus\:inset-x-96:focus{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .md\:focus\:inset-y-auto:focus{
    top     : auto !important;
    bottom     : auto !important;
  }

  .md\:focus\:inset-x-auto:focus{
    right     : auto !important;
    left     : auto !important;
  }

  .md\:focus\:inset-y-px:focus{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .md\:focus\:inset-x-px:focus{
    right     : 1px !important;
    left     : 1px !important;
  }

  .md\:focus\:inset-y-0\.5:focus{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .md\:focus\:inset-x-0\.5:focus{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .md\:focus\:inset-y-1\.5:focus{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .md\:focus\:inset-x-1\.5:focus{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .md\:focus\:inset-y-2\.5:focus{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .md\:focus\:inset-x-2\.5:focus{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .md\:focus\:inset-y-3\.5:focus{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .md\:focus\:inset-x-3\.5:focus{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .md\:focus\:inset-y-1\/2:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:focus\:inset-x-1\/2:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-y-1\/3:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:focus\:inset-x-1\/3:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-y-2\/3:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:focus\:inset-x-2\/3:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-y-1\/4:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .md\:focus\:inset-x-1\/4:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .md\:focus\:inset-y-2\/4:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:focus\:inset-x-2\/4:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-y-3\/4:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .md\:focus\:inset-x-3\/4:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .md\:focus\:inset-y-1\/5:focus{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .md\:focus\:inset-x-1\/5:focus{
    right     : 20% !important;
    left     : 20% !important;
  }

  .md\:focus\:inset-y-2\/5:focus{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .md\:focus\:inset-x-2\/5:focus{
    right     : 40% !important;
    left     : 40% !important;
  }

  .md\:focus\:inset-y-3\/5:focus{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .md\:focus\:inset-x-3\/5:focus{
    right     : 60% !important;
    left     : 60% !important;
  }

  .md\:focus\:inset-y-4\/5:focus{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .md\:focus\:inset-x-4\/5:focus{
    right     : 80% !important;
    left     : 80% !important;
  }

  .md\:focus\:inset-y-1\/6:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .md\:focus\:inset-x-1\/6:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:focus\:inset-y-2\/6:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:focus\:inset-x-2\/6:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-y-3\/6:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:focus\:inset-x-3\/6:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-y-4\/6:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:focus\:inset-x-4\/6:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-y-5\/6:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .md\:focus\:inset-x-5\/6:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:focus\:inset-y-1\/12:focus{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .md\:focus\:inset-x-1\/12:focus{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .md\:focus\:inset-y-2\/12:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .md\:focus\:inset-x-2\/12:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .md\:focus\:inset-y-3\/12:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .md\:focus\:inset-x-3\/12:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .md\:focus\:inset-y-4\/12:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .md\:focus\:inset-x-4\/12:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .md\:focus\:inset-y-5\/12:focus{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .md\:focus\:inset-x-5\/12:focus{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .md\:focus\:inset-y-6\/12:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .md\:focus\:inset-x-6\/12:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .md\:focus\:inset-y-7\/12:focus{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .md\:focus\:inset-x-7\/12:focus{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .md\:focus\:inset-y-8\/12:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .md\:focus\:inset-x-8\/12:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .md\:focus\:inset-y-9\/12:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .md\:focus\:inset-x-9\/12:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .md\:focus\:inset-y-10\/12:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .md\:focus\:inset-x-10\/12:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .md\:focus\:inset-y-11\/12:focus{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .md\:focus\:inset-x-11\/12:focus{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .md\:focus\:inset-y-full:focus{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .md\:focus\:inset-x-full:focus{
    right     : 100% !important;
    left     : 100% !important;
  }

  .md\:focus\:top-0:focus{
    top     : 0 !important;
  }

  .md\:focus\:right-0:focus{
    right     : 0 !important;
  }

  .md\:focus\:bottom-0:focus{
    bottom     : 0 !important;
  }

  .md\:focus\:left-0:focus{
    left     : 0 !important;
  }

  .md\:focus\:top-1:focus{
    top     : 0.25rem !important;
  }

  .md\:focus\:right-1:focus{
    right     : 0.25rem !important;
  }

  .md\:focus\:bottom-1:focus{
    bottom     : 0.25rem !important;
  }

  .md\:focus\:left-1:focus{
    left     : 0.25rem !important;
  }

  .md\:focus\:top-2:focus{
    top     : 0.5rem !important;
  }

  .md\:focus\:right-2:focus{
    right     : 0.5rem !important;
  }

  .md\:focus\:bottom-2:focus{
    bottom     : 0.5rem !important;
  }

  .md\:focus\:left-2:focus{
    left     : 0.5rem !important;
  }

  .md\:focus\:top-3:focus{
    top     : 0.75rem !important;
  }

  .md\:focus\:right-3:focus{
    right     : 0.75rem !important;
  }

  .md\:focus\:bottom-3:focus{
    bottom     : 0.75rem !important;
  }

  .md\:focus\:left-3:focus{
    left     : 0.75rem !important;
  }

  .md\:focus\:top-4:focus{
    top     : 1rem !important;
  }

  .md\:focus\:right-4:focus{
    right     : 1rem !important;
  }

  .md\:focus\:bottom-4:focus{
    bottom     : 1rem !important;
  }

  .md\:focus\:left-4:focus{
    left     : 1rem !important;
  }

  .md\:focus\:top-5:focus{
    top     : 1.25rem !important;
  }

  .md\:focus\:right-5:focus{
    right     : 1.25rem !important;
  }

  .md\:focus\:bottom-5:focus{
    bottom     : 1.25rem !important;
  }

  .md\:focus\:left-5:focus{
    left     : 1.25rem !important;
  }

  .md\:focus\:top-6:focus{
    top     : 1.5rem !important;
  }

  .md\:focus\:right-6:focus{
    right     : 1.5rem !important;
  }

  .md\:focus\:bottom-6:focus{
    bottom     : 1.5rem !important;
  }

  .md\:focus\:left-6:focus{
    left     : 1.5rem !important;
  }

  .md\:focus\:top-7:focus{
    top     : 1.75rem !important;
  }

  .md\:focus\:right-7:focus{
    right     : 1.75rem !important;
  }

  .md\:focus\:bottom-7:focus{
    bottom     : 1.75rem !important;
  }

  .md\:focus\:left-7:focus{
    left     : 1.75rem !important;
  }

  .md\:focus\:top-8:focus{
    top     : 2rem !important;
  }

  .md\:focus\:right-8:focus{
    right     : 2rem !important;
  }

  .md\:focus\:bottom-8:focus{
    bottom     : 2rem !important;
  }

  .md\:focus\:left-8:focus{
    left     : 2rem !important;
  }

  .md\:focus\:top-9:focus{
    top     : 2.25rem !important;
  }

  .md\:focus\:right-9:focus{
    right     : 2.25rem !important;
  }

  .md\:focus\:bottom-9:focus{
    bottom     : 2.25rem !important;
  }

  .md\:focus\:left-9:focus{
    left     : 2.25rem !important;
  }

  .md\:focus\:top-10:focus{
    top     : 2.5rem !important;
  }

  .md\:focus\:right-10:focus{
    right     : 2.5rem !important;
  }

  .md\:focus\:bottom-10:focus{
    bottom     : 2.5rem !important;
  }

  .md\:focus\:left-10:focus{
    left     : 2.5rem !important;
  }

  .md\:focus\:top-11:focus{
    top     : 2.75rem !important;
  }

  .md\:focus\:right-11:focus{
    right     : 2.75rem !important;
  }

  .md\:focus\:bottom-11:focus{
    bottom     : 2.75rem !important;
  }

  .md\:focus\:left-11:focus{
    left     : 2.75rem !important;
  }

  .md\:focus\:top-12:focus{
    top     : 3rem !important;
  }

  .md\:focus\:right-12:focus{
    right     : 3rem !important;
  }

  .md\:focus\:bottom-12:focus{
    bottom     : 3rem !important;
  }

  .md\:focus\:left-12:focus{
    left     : 3rem !important;
  }

  .md\:focus\:top-13:focus{
    top     : 3.25rem !important;
  }

  .md\:focus\:right-13:focus{
    right     : 3.25rem !important;
  }

  .md\:focus\:bottom-13:focus{
    bottom     : 3.25rem !important;
  }

  .md\:focus\:left-13:focus{
    left     : 3.25rem !important;
  }

  .md\:focus\:top-14:focus{
    top     : 3.5rem !important;
  }

  .md\:focus\:right-14:focus{
    right     : 3.5rem !important;
  }

  .md\:focus\:bottom-14:focus{
    bottom     : 3.5rem !important;
  }

  .md\:focus\:left-14:focus{
    left     : 3.5rem !important;
  }

  .md\:focus\:top-15:focus{
    top     : 3.75rem !important;
  }

  .md\:focus\:right-15:focus{
    right     : 3.75rem !important;
  }

  .md\:focus\:bottom-15:focus{
    bottom     : 3.75rem !important;
  }

  .md\:focus\:left-15:focus{
    left     : 3.75rem !important;
  }

  .md\:focus\:top-16:focus{
    top     : 4rem !important;
  }

  .md\:focus\:right-16:focus{
    right     : 4rem !important;
  }

  .md\:focus\:bottom-16:focus{
    bottom     : 4rem !important;
  }

  .md\:focus\:left-16:focus{
    left     : 4rem !important;
  }

  .md\:focus\:top-20:focus{
    top     : 5rem !important;
  }

  .md\:focus\:right-20:focus{
    right     : 5rem !important;
  }

  .md\:focus\:bottom-20:focus{
    bottom     : 5rem !important;
  }

  .md\:focus\:left-20:focus{
    left     : 5rem !important;
  }

  .md\:focus\:top-24:focus{
    top     : 6rem !important;
  }

  .md\:focus\:right-24:focus{
    right     : 6rem !important;
  }

  .md\:focus\:bottom-24:focus{
    bottom     : 6rem !important;
  }

  .md\:focus\:left-24:focus{
    left     : 6rem !important;
  }

  .md\:focus\:top-28:focus{
    top     : 7rem !important;
  }

  .md\:focus\:right-28:focus{
    right     : 7rem !important;
  }

  .md\:focus\:bottom-28:focus{
    bottom     : 7rem !important;
  }

  .md\:focus\:left-28:focus{
    left     : 7rem !important;
  }

  .md\:focus\:top-32:focus{
    top     : 8rem !important;
  }

  .md\:focus\:right-32:focus{
    right     : 8rem !important;
  }

  .md\:focus\:bottom-32:focus{
    bottom     : 8rem !important;
  }

  .md\:focus\:left-32:focus{
    left     : 8rem !important;
  }

  .md\:focus\:top-36:focus{
    top     : 9rem !important;
  }

  .md\:focus\:right-36:focus{
    right     : 9rem !important;
  }

  .md\:focus\:bottom-36:focus{
    bottom     : 9rem !important;
  }

  .md\:focus\:left-36:focus{
    left     : 9rem !important;
  }

  .md\:focus\:top-40:focus{
    top     : 10rem !important;
  }

  .md\:focus\:right-40:focus{
    right     : 10rem !important;
  }

  .md\:focus\:bottom-40:focus{
    bottom     : 10rem !important;
  }

  .md\:focus\:left-40:focus{
    left     : 10rem !important;
  }

  .md\:focus\:top-44:focus{
    top     : 11rem !important;
  }

  .md\:focus\:right-44:focus{
    right     : 11rem !important;
  }

  .md\:focus\:bottom-44:focus{
    bottom     : 11rem !important;
  }

  .md\:focus\:left-44:focus{
    left     : 11rem !important;
  }

  .md\:focus\:top-48:focus{
    top     : 12rem !important;
  }

  .md\:focus\:right-48:focus{
    right     : 12rem !important;
  }

  .md\:focus\:bottom-48:focus{
    bottom     : 12rem !important;
  }

  .md\:focus\:left-48:focus{
    left     : 12rem !important;
  }

  .md\:focus\:top-52:focus{
    top     : 13rem !important;
  }

  .md\:focus\:right-52:focus{
    right     : 13rem !important;
  }

  .md\:focus\:bottom-52:focus{
    bottom     : 13rem !important;
  }

  .md\:focus\:left-52:focus{
    left     : 13rem !important;
  }

  .md\:focus\:top-56:focus{
    top     : 14rem !important;
  }

  .md\:focus\:right-56:focus{
    right     : 14rem !important;
  }

  .md\:focus\:bottom-56:focus{
    bottom     : 14rem !important;
  }

  .md\:focus\:left-56:focus{
    left     : 14rem !important;
  }

  .md\:focus\:top-60:focus{
    top     : 15rem !important;
  }

  .md\:focus\:right-60:focus{
    right     : 15rem !important;
  }

  .md\:focus\:bottom-60:focus{
    bottom     : 15rem !important;
  }

  .md\:focus\:left-60:focus{
    left     : 15rem !important;
  }

  .md\:focus\:top-64:focus{
    top     : 16rem !important;
  }

  .md\:focus\:right-64:focus{
    right     : 16rem !important;
  }

  .md\:focus\:bottom-64:focus{
    bottom     : 16rem !important;
  }

  .md\:focus\:left-64:focus{
    left     : 16rem !important;
  }

  .md\:focus\:top-72:focus{
    top     : 18rem !important;
  }

  .md\:focus\:right-72:focus{
    right     : 18rem !important;
  }

  .md\:focus\:bottom-72:focus{
    bottom     : 18rem !important;
  }

  .md\:focus\:left-72:focus{
    left     : 18rem !important;
  }

  .md\:focus\:top-80:focus{
    top     : 20rem !important;
  }

  .md\:focus\:right-80:focus{
    right     : 20rem !important;
  }

  .md\:focus\:bottom-80:focus{
    bottom     : 20rem !important;
  }

  .md\:focus\:left-80:focus{
    left     : 20rem !important;
  }

  .md\:focus\:top-96:focus{
    top     : 24rem !important;
  }

  .md\:focus\:right-96:focus{
    right     : 24rem !important;
  }

  .md\:focus\:bottom-96:focus{
    bottom     : 24rem !important;
  }

  .md\:focus\:left-96:focus{
    left     : 24rem !important;
  }

  .md\:focus\:top-auto:focus{
    top     : auto !important;
  }

  .md\:focus\:right-auto:focus{
    right     : auto !important;
  }

  .md\:focus\:bottom-auto:focus{
    bottom     : auto !important;
  }

  .md\:focus\:left-auto:focus{
    left     : auto !important;
  }

  .md\:focus\:top-px:focus{
    top     : 1px !important;
  }

  .md\:focus\:right-px:focus{
    right     : 1px !important;
  }

  .md\:focus\:bottom-px:focus{
    bottom     : 1px !important;
  }

  .md\:focus\:left-px:focus{
    left     : 1px !important;
  }

  .md\:focus\:top-0\.5:focus{
    top     : 0.125rem !important;
  }

  .md\:focus\:right-0\.5:focus{
    right     : 0.125rem !important;
  }

  .md\:focus\:bottom-0\.5:focus{
    bottom     : 0.125rem !important;
  }

  .md\:focus\:left-0\.5:focus{
    left     : 0.125rem !important;
  }

  .md\:focus\:top-1\.5:focus{
    top     : 0.375rem !important;
  }

  .md\:focus\:right-1\.5:focus{
    right     : 0.375rem !important;
  }

  .md\:focus\:bottom-1\.5:focus{
    bottom     : 0.375rem !important;
  }

  .md\:focus\:left-1\.5:focus{
    left     : 0.375rem !important;
  }

  .md\:focus\:top-2\.5:focus{
    top     : 0.625rem !important;
  }

  .md\:focus\:right-2\.5:focus{
    right     : 0.625rem !important;
  }

  .md\:focus\:bottom-2\.5:focus{
    bottom     : 0.625rem !important;
  }

  .md\:focus\:left-2\.5:focus{
    left     : 0.625rem !important;
  }

  .md\:focus\:top-3\.5:focus{
    top     : 0.875rem !important;
  }

  .md\:focus\:right-3\.5:focus{
    right     : 0.875rem !important;
  }

  .md\:focus\:bottom-3\.5:focus{
    bottom     : 0.875rem !important;
  }

  .md\:focus\:left-3\.5:focus{
    left     : 0.875rem !important;
  }

  .md\:focus\:top-1\/2:focus{
    top     : 50% !important;
  }

  .md\:focus\:right-1\/2:focus{
    right     : 50% !important;
  }

  .md\:focus\:bottom-1\/2:focus{
    bottom     : 50% !important;
  }

  .md\:focus\:left-1\/2:focus{
    left     : 50% !important;
  }

  .md\:focus\:top-1\/3:focus{
    top     : 33.333333% !important;
  }

  .md\:focus\:right-1\/3:focus{
    right     : 33.333333% !important;
  }

  .md\:focus\:bottom-1\/3:focus{
    bottom     : 33.333333% !important;
  }

  .md\:focus\:left-1\/3:focus{
    left     : 33.333333% !important;
  }

  .md\:focus\:top-2\/3:focus{
    top     : 66.666667% !important;
  }

  .md\:focus\:right-2\/3:focus{
    right     : 66.666667% !important;
  }

  .md\:focus\:bottom-2\/3:focus{
    bottom     : 66.666667% !important;
  }

  .md\:focus\:left-2\/3:focus{
    left     : 66.666667% !important;
  }

  .md\:focus\:top-1\/4:focus{
    top     : 25% !important;
  }

  .md\:focus\:right-1\/4:focus{
    right     : 25% !important;
  }

  .md\:focus\:bottom-1\/4:focus{
    bottom     : 25% !important;
  }

  .md\:focus\:left-1\/4:focus{
    left     : 25% !important;
  }

  .md\:focus\:top-2\/4:focus{
    top     : 50% !important;
  }

  .md\:focus\:right-2\/4:focus{
    right     : 50% !important;
  }

  .md\:focus\:bottom-2\/4:focus{
    bottom     : 50% !important;
  }

  .md\:focus\:left-2\/4:focus{
    left     : 50% !important;
  }

  .md\:focus\:top-3\/4:focus{
    top     : 75% !important;
  }

  .md\:focus\:right-3\/4:focus{
    right     : 75% !important;
  }

  .md\:focus\:bottom-3\/4:focus{
    bottom     : 75% !important;
  }

  .md\:focus\:left-3\/4:focus{
    left     : 75% !important;
  }

  .md\:focus\:top-1\/5:focus{
    top     : 20% !important;
  }

  .md\:focus\:right-1\/5:focus{
    right     : 20% !important;
  }

  .md\:focus\:bottom-1\/5:focus{
    bottom     : 20% !important;
  }

  .md\:focus\:left-1\/5:focus{
    left     : 20% !important;
  }

  .md\:focus\:top-2\/5:focus{
    top     : 40% !important;
  }

  .md\:focus\:right-2\/5:focus{
    right     : 40% !important;
  }

  .md\:focus\:bottom-2\/5:focus{
    bottom     : 40% !important;
  }

  .md\:focus\:left-2\/5:focus{
    left     : 40% !important;
  }

  .md\:focus\:top-3\/5:focus{
    top     : 60% !important;
  }

  .md\:focus\:right-3\/5:focus{
    right     : 60% !important;
  }

  .md\:focus\:bottom-3\/5:focus{
    bottom     : 60% !important;
  }

  .md\:focus\:left-3\/5:focus{
    left     : 60% !important;
  }

  .md\:focus\:top-4\/5:focus{
    top     : 80% !important;
  }

  .md\:focus\:right-4\/5:focus{
    right     : 80% !important;
  }

  .md\:focus\:bottom-4\/5:focus{
    bottom     : 80% !important;
  }

  .md\:focus\:left-4\/5:focus{
    left     : 80% !important;
  }

  .md\:focus\:top-1\/6:focus{
    top     : 16.666667% !important;
  }

  .md\:focus\:right-1\/6:focus{
    right     : 16.666667% !important;
  }

  .md\:focus\:bottom-1\/6:focus{
    bottom     : 16.666667% !important;
  }

  .md\:focus\:left-1\/6:focus{
    left     : 16.666667% !important;
  }

  .md\:focus\:top-2\/6:focus{
    top     : 33.333333% !important;
  }

  .md\:focus\:right-2\/6:focus{
    right     : 33.333333% !important;
  }

  .md\:focus\:bottom-2\/6:focus{
    bottom     : 33.333333% !important;
  }

  .md\:focus\:left-2\/6:focus{
    left     : 33.333333% !important;
  }

  .md\:focus\:top-3\/6:focus{
    top     : 50% !important;
  }

  .md\:focus\:right-3\/6:focus{
    right     : 50% !important;
  }

  .md\:focus\:bottom-3\/6:focus{
    bottom     : 50% !important;
  }

  .md\:focus\:left-3\/6:focus{
    left     : 50% !important;
  }

  .md\:focus\:top-4\/6:focus{
    top     : 66.666667% !important;
  }

  .md\:focus\:right-4\/6:focus{
    right     : 66.666667% !important;
  }

  .md\:focus\:bottom-4\/6:focus{
    bottom     : 66.666667% !important;
  }

  .md\:focus\:left-4\/6:focus{
    left     : 66.666667% !important;
  }

  .md\:focus\:top-5\/6:focus{
    top     : 83.333333% !important;
  }

  .md\:focus\:right-5\/6:focus{
    right     : 83.333333% !important;
  }

  .md\:focus\:bottom-5\/6:focus{
    bottom     : 83.333333% !important;
  }

  .md\:focus\:left-5\/6:focus{
    left     : 83.333333% !important;
  }

  .md\:focus\:top-1\/12:focus{
    top     : 8.333333% !important;
  }

  .md\:focus\:right-1\/12:focus{
    right     : 8.333333% !important;
  }

  .md\:focus\:bottom-1\/12:focus{
    bottom     : 8.333333% !important;
  }

  .md\:focus\:left-1\/12:focus{
    left     : 8.333333% !important;
  }

  .md\:focus\:top-2\/12:focus{
    top     : 16.666667% !important;
  }

  .md\:focus\:right-2\/12:focus{
    right     : 16.666667% !important;
  }

  .md\:focus\:bottom-2\/12:focus{
    bottom     : 16.666667% !important;
  }

  .md\:focus\:left-2\/12:focus{
    left     : 16.666667% !important;
  }

  .md\:focus\:top-3\/12:focus{
    top     : 25% !important;
  }

  .md\:focus\:right-3\/12:focus{
    right     : 25% !important;
  }

  .md\:focus\:bottom-3\/12:focus{
    bottom     : 25% !important;
  }

  .md\:focus\:left-3\/12:focus{
    left     : 25% !important;
  }

  .md\:focus\:top-4\/12:focus{
    top     : 33.333333% !important;
  }

  .md\:focus\:right-4\/12:focus{
    right     : 33.333333% !important;
  }

  .md\:focus\:bottom-4\/12:focus{
    bottom     : 33.333333% !important;
  }

  .md\:focus\:left-4\/12:focus{
    left     : 33.333333% !important;
  }

  .md\:focus\:top-5\/12:focus{
    top     : 41.666667% !important;
  }

  .md\:focus\:right-5\/12:focus{
    right     : 41.666667% !important;
  }

  .md\:focus\:bottom-5\/12:focus{
    bottom     : 41.666667% !important;
  }

  .md\:focus\:left-5\/12:focus{
    left     : 41.666667% !important;
  }

  .md\:focus\:top-6\/12:focus{
    top     : 50% !important;
  }

  .md\:focus\:right-6\/12:focus{
    right     : 50% !important;
  }

  .md\:focus\:bottom-6\/12:focus{
    bottom     : 50% !important;
  }

  .md\:focus\:left-6\/12:focus{
    left     : 50% !important;
  }

  .md\:focus\:top-7\/12:focus{
    top     : 58.333333% !important;
  }

  .md\:focus\:right-7\/12:focus{
    right     : 58.333333% !important;
  }

  .md\:focus\:bottom-7\/12:focus{
    bottom     : 58.333333% !important;
  }

  .md\:focus\:left-7\/12:focus{
    left     : 58.333333% !important;
  }

  .md\:focus\:top-8\/12:focus{
    top     : 66.666667% !important;
  }

  .md\:focus\:right-8\/12:focus{
    right     : 66.666667% !important;
  }

  .md\:focus\:bottom-8\/12:focus{
    bottom     : 66.666667% !important;
  }

  .md\:focus\:left-8\/12:focus{
    left     : 66.666667% !important;
  }

  .md\:focus\:top-9\/12:focus{
    top     : 75% !important;
  }

  .md\:focus\:right-9\/12:focus{
    right     : 75% !important;
  }

  .md\:focus\:bottom-9\/12:focus{
    bottom     : 75% !important;
  }

  .md\:focus\:left-9\/12:focus{
    left     : 75% !important;
  }

  .md\:focus\:top-10\/12:focus{
    top     : 83.333333% !important;
  }

  .md\:focus\:right-10\/12:focus{
    right     : 83.333333% !important;
  }

  .md\:focus\:bottom-10\/12:focus{
    bottom     : 83.333333% !important;
  }

  .md\:focus\:left-10\/12:focus{
    left     : 83.333333% !important;
  }

  .md\:focus\:top-11\/12:focus{
    top     : 91.666667% !important;
  }

  .md\:focus\:right-11\/12:focus{
    right     : 91.666667% !important;
  }

  .md\:focus\:bottom-11\/12:focus{
    bottom     : 91.666667% !important;
  }

  .md\:focus\:left-11\/12:focus{
    left     : 91.666667% !important;
  }

  .md\:focus\:top-full:focus{
    top     : 100% !important;
  }

  .md\:focus\:right-full:focus{
    right     : 100% !important;
  }

  .md\:focus\:bottom-full:focus{
    bottom     : 100% !important;
  }

  .md\:focus\:left-full:focus{
    left     : 100% !important;
  }

  .md\:resize-none{
    resize     : none !important;
  }

  .md\:resize-y{
    resize     : vertical !important;
  }

  .md\:resize-x{
    resize     : horizontal !important;
  }

  .md\:resize{
    resize     : both !important;
  }

  .group:hover .md\:group-hover\:resize-none{
    resize     : none !important;
  }

  .group:hover .md\:group-hover\:resize-y{
    resize     : vertical !important;
  }

  .group:hover .md\:group-hover\:resize-x{
    resize     : horizontal !important;
  }

  .group:hover .md\:group-hover\:resize{
    resize     : both !important;
  }

  .md\:hover\:resize-none:hover{
    resize     : none !important;
  }

  .md\:hover\:resize-y:hover{
    resize     : vertical !important;
  }

  .md\:hover\:resize-x:hover{
    resize     : horizontal !important;
  }

  .md\:hover\:resize:hover{
    resize     : both !important;
  }

  .md\:focus\:resize-none:focus{
    resize     : none !important;
  }

  .md\:focus\:resize-y:focus{
    resize     : vertical !important;
  }

  .md\:focus\:resize-x:focus{
    resize     : horizontal !important;
  }

  .md\:focus\:resize:focus{
    resize     : both !important;
  }

  .md\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .md\:shadow-none{
    box-shadow     : none !important;
  }

  .md\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .md\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .md\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .md\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .md\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .md\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .md\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .md\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .md\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .md\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .md\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .md\:group-hover\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .md\:group-hover\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .group:hover .md\:group-hover\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-none{
    box-shadow     : none !important;
  }

  .group:hover .md\:group-hover\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .group:hover .md\:group-hover\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .md\:hover\:shadow-xs:hover{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:shadow-sm:hover{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:shadow:hover{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:shadow-md:hover{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:shadow-lg:hover{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:shadow-xl:hover{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:hover\:shadow-2xl:hover{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:hover\:shadow-inner:hover{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:shadow-outline:hover{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .md\:hover\:shadow-none:hover{
    box-shadow     : none !important;
  }

  .md\:hover\:shadow-solid:hover{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .md\:hover\:shadow-outline-gray:hover{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .md\:hover\:shadow-outline-blue:hover{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .md\:hover\:shadow-outline-teal:hover{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .md\:hover\:shadow-outline-green:hover{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .md\:hover\:shadow-outline-yellow:hover{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .md\:hover\:shadow-outline-orange:hover{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .md\:hover\:shadow-outline-red:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .md\:hover\:shadow-outline-pink:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .md\:hover\:shadow-outline-purple:hover{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .md\:hover\:shadow-outline-indigo:hover{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .md\:focus\:shadow-xs:focus{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:shadow-sm:focus{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:shadow:focus{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:shadow-md:focus{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:shadow-lg:focus{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:shadow-xl:focus{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:focus\:shadow-2xl:focus{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:focus\:shadow-inner:focus{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:shadow-outline:focus{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .md\:focus\:shadow-none:focus{
    box-shadow     : none !important;
  }

  .md\:focus\:shadow-solid:focus{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .md\:focus\:shadow-outline-gray:focus{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .md\:focus\:shadow-outline-blue:focus{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .md\:focus\:shadow-outline-teal:focus{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .md\:focus\:shadow-outline-green:focus{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .md\:focus\:shadow-outline-yellow:focus{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .md\:focus\:shadow-outline-orange:focus{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .md\:focus\:shadow-outline-red:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .md\:focus\:shadow-outline-pink:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .md\:focus\:shadow-outline-purple:focus{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .md\:focus\:shadow-outline-indigo:focus{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .md\:fill-current{
    fill     : currentColor !important;
  }

  .group:hover .md\:group-hover\:fill-current{
    fill     : currentColor !important;
  }

  .md\:hover\:fill-current:hover{
    fill     : currentColor !important;
  }

  .md\:focus\:fill-current:focus{
    fill     : currentColor !important;
  }

  .md\:stroke-current{
    stroke     : currentColor !important;
  }

  .group:hover .md\:group-hover\:stroke-current{
    stroke     : currentColor !important;
  }

  .md\:hover\:stroke-current:hover{
    stroke     : currentColor !important;
  }

  .md\:focus\:stroke-current:focus{
    stroke     : currentColor !important;
  }

  .md\:stroke-0{
    stroke-width     : 0 !important;
  }

  .md\:stroke-1{
    stroke-width     : 1 !important;
  }

  .md\:stroke-2{
    stroke-width     : 2 !important;
  }

  .group:hover .md\:group-hover\:stroke-0{
    stroke-width     : 0 !important;
  }

  .group:hover .md\:group-hover\:stroke-1{
    stroke-width     : 1 !important;
  }

  .group:hover .md\:group-hover\:stroke-2{
    stroke-width     : 2 !important;
  }

  .md\:hover\:stroke-0:hover{
    stroke-width     : 0 !important;
  }

  .md\:hover\:stroke-1:hover{
    stroke-width     : 1 !important;
  }

  .md\:hover\:stroke-2:hover{
    stroke-width     : 2 !important;
  }

  .md\:focus\:stroke-0:focus{
    stroke-width     : 0 !important;
  }

  .md\:focus\:stroke-1:focus{
    stroke-width     : 1 !important;
  }

  .md\:focus\:stroke-2:focus{
    stroke-width     : 2 !important;
  }

  .md\:table-auto{
    table-layout     : auto !important;
  }

  .md\:table-fixed{
    table-layout     : fixed !important;
  }

  .group:hover .md\:group-hover\:table-auto{
    table-layout     : auto !important;
  }

  .group:hover .md\:group-hover\:table-fixed{
    table-layout     : fixed !important;
  }

  .md\:hover\:table-auto:hover{
    table-layout     : auto !important;
  }

  .md\:hover\:table-fixed:hover{
    table-layout     : fixed !important;
  }

  .md\:focus\:table-auto:focus{
    table-layout     : auto !important;
  }

  .md\:focus\:table-fixed:focus{
    table-layout     : fixed !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;
  }

  .group:hover .md\:group-hover\:text-left{
    text-align     : left !important;
  }

  .group:hover .md\:group-hover\:text-center{
    text-align     : center !important;
  }

  .group:hover .md\:group-hover\:text-right{
    text-align     : right !important;
  }

  .group:hover .md\:group-hover\:text-justify{
    text-align     : justify !important;
  }

  .md\:hover\:text-left:hover{
    text-align     : left !important;
  }

  .md\:hover\:text-center:hover{
    text-align     : center !important;
  }

  .md\:hover\:text-right:hover{
    text-align     : right !important;
  }

  .md\:hover\:text-justify:hover{
    text-align     : justify !important;
  }

  .md\:focus\:text-left:focus{
    text-align     : left !important;
  }

  .md\:focus\:text-center:focus{
    text-align     : center !important;
  }

  .md\:focus\:text-right:focus{
    text-align     : right !important;
  }

  .md\:focus\:text-justify:focus{
    text-align     : justify !important;
  }

  .md\:text-transparent{
    color     : transparent !important;
  }

  .md\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .md\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .md\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .md\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .md\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .md\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .md\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .md\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .md\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .md\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .md\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .md\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .md\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .md\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .md\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .md\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .md\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .md\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .md\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .md\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .md\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .md\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .md\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .md\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .md\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .md\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .md\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .md\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .md\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .md\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .md\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .md\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .md\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .md\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .md\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .md\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .md\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .md\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .md\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .md\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .md\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .md\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .md\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .md\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .md\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .md\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .md\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .md\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .md\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .md\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .md\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .md\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .md\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .md\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .md\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .md\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .md\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .md\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .md\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .md\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .md\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .md\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .md\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .md\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .md\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .md\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .md\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .md\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .md\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .md\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .md\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .md\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .md\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .md\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .md\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .md\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .md\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .md\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .md\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .md\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .md\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .md\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .md\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .md\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .md\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .md\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .md\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .md\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .md\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .md\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .md\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .md\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .md\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .md\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .md\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .md\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .md\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .md\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .md\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .md\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .md\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .md\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-transparent{
    color     : transparent !important;
  }

  .group:hover .md\:group-hover\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .group:hover .md\:group-hover\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .md\:hover\:text-transparent:hover{
    color     : transparent !important;
  }

  .md\:hover\:text-white:hover{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:text-black:hover{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .md\:hover\:text-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .md\:hover\:text-cool-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-100:hover{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-200:hover{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-400:hover{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-500:hover{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-600:hover{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-700:hover{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-800:hover{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .md\:hover\:text-red-900:hover{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-50:hover{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-100:hover{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-200:hover{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-300:hover{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-400:hover{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-500:hover{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-600:hover{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-700:hover{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-800:hover{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .md\:hover\:text-orange-900:hover{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-100:hover{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-200:hover{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-300:hover{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-400:hover{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-500:hover{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-600:hover{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-700:hover{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-800:hover{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .md\:hover\:text-yellow-900:hover{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-50:hover{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-100:hover{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-200:hover{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-300:hover{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-400:hover{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-500:hover{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-600:hover{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-700:hover{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-800:hover{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .md\:hover\:text-green-900:hover{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-50:hover{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-100:hover{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-200:hover{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-300:hover{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-400:hover{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-500:hover{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-600:hover{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-700:hover{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-800:hover{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .md\:hover\:text-teal-900:hover{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-50:hover{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-100:hover{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-200:hover{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-300:hover{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-400:hover{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-500:hover{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-600:hover{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-700:hover{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-800:hover{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-900:hover{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-50:hover{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-100:hover{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-200:hover{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-300:hover{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-400:hover{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-500:hover{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-600:hover{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-700:hover{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-800:hover{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .md\:hover\:text-indigo-900:hover{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-50:hover{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-100:hover{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-200:hover{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-300:hover{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-400:hover{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-500:hover{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-600:hover{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-700:hover{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-800:hover{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .md\:hover\:text-purple-900:hover{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-100:hover{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-200:hover{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-400:hover{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-500:hover{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-600:hover{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-700:hover{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-800:hover{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .md\:hover\:text-pink-900:hover{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .md\:hover\:text-blue-brand:hover{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .md\:focus\:text-transparent:focus{
    color     : transparent !important;
  }

  .md\:focus\:text-white:focus{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:text-black:focus{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .md\:focus\:text-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .md\:focus\:text-cool-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-100:focus{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-200:focus{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-400:focus{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-500:focus{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-600:focus{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-700:focus{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-800:focus{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .md\:focus\:text-red-900:focus{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-50:focus{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-100:focus{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-200:focus{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-300:focus{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-400:focus{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-500:focus{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-600:focus{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-700:focus{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-800:focus{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .md\:focus\:text-orange-900:focus{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-100:focus{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-200:focus{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-300:focus{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-400:focus{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-500:focus{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-600:focus{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-700:focus{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-800:focus{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .md\:focus\:text-yellow-900:focus{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-50:focus{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-100:focus{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-200:focus{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-300:focus{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-400:focus{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-500:focus{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-600:focus{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-700:focus{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-800:focus{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .md\:focus\:text-green-900:focus{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-50:focus{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-100:focus{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-200:focus{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-300:focus{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-400:focus{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-500:focus{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-600:focus{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-700:focus{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-800:focus{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .md\:focus\:text-teal-900:focus{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-50:focus{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-100:focus{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-200:focus{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-300:focus{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-400:focus{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-500:focus{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-600:focus{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-700:focus{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-800:focus{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-900:focus{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-50:focus{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-100:focus{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-200:focus{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-300:focus{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-400:focus{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-500:focus{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-600:focus{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-700:focus{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-800:focus{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .md\:focus\:text-indigo-900:focus{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-50:focus{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-100:focus{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-200:focus{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-300:focus{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-400:focus{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-500:focus{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-600:focus{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-700:focus{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-800:focus{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .md\:focus\:text-purple-900:focus{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-100:focus{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-200:focus{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-400:focus{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-500:focus{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-600:focus{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-700:focus{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-800:focus{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .md\:focus\:text-pink-900:focus{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .md\:focus\:text-blue-brand:focus{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .md\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .md\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .md\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .md\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .md\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .group:hover .md\:group-hover\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .group:hover .md\:group-hover\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .group:hover .md\:group-hover\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .group:hover .md\:group-hover\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .group:hover .md\:group-hover\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .md\:hover\:text-opacity-0:hover{
    --text-opacity     : 0 !important;
  }

  .md\:hover\:text-opacity-25:hover{
    --text-opacity     : 0.25 !important;
  }

  .md\:hover\:text-opacity-50:hover{
    --text-opacity     : 0.5 !important;
  }

  .md\:hover\:text-opacity-75:hover{
    --text-opacity     : 0.75 !important;
  }

  .md\:hover\:text-opacity-100:hover{
    --text-opacity     : 1 !important;
  }

  .md\:focus\:text-opacity-0:focus{
    --text-opacity     : 0 !important;
  }

  .md\:focus\:text-opacity-25:focus{
    --text-opacity     : 0.25 !important;
  }

  .md\:focus\:text-opacity-50:focus{
    --text-opacity     : 0.5 !important;
  }

  .md\:focus\:text-opacity-75:focus{
    --text-opacity     : 0.75 !important;
  }

  .md\:focus\:text-opacity-100:focus{
    --text-opacity     : 1 !important;
  }

  .md\:italic{
    font-style     : italic !important;
  }

  .md\:not-italic{
    font-style     : normal !important;
  }

  .group:hover .md\:group-hover\:italic{
    font-style     : italic !important;
  }

  .group:hover .md\:group-hover\:not-italic{
    font-style     : normal !important;
  }

  .md\:hover\:italic:hover{
    font-style     : italic !important;
  }

  .md\:hover\:not-italic:hover{
    font-style     : normal !important;
  }

  .md\:focus\:italic:focus{
    font-style     : italic !important;
  }

  .md\:focus\:not-italic:focus{
    font-style     : normal !important;
  }

  .md\:uppercase{
    text-transform     : uppercase !important;
  }

  .md\:lowercase{
    text-transform     : lowercase !important;
  }

  .md\:capitalize{
    text-transform     : capitalize !important;
  }

  .md\:normal-case{
    text-transform     : none !important;
  }

  .group:hover .md\:group-hover\:uppercase{
    text-transform     : uppercase !important;
  }

  .group:hover .md\:group-hover\:lowercase{
    text-transform     : lowercase !important;
  }

  .group:hover .md\:group-hover\:capitalize{
    text-transform     : capitalize !important;
  }

  .group:hover .md\:group-hover\:normal-case{
    text-transform     : none !important;
  }

  .md\:hover\:uppercase:hover{
    text-transform     : uppercase !important;
  }

  .md\:hover\:lowercase:hover{
    text-transform     : lowercase !important;
  }

  .md\:hover\:capitalize:hover{
    text-transform     : capitalize !important;
  }

  .md\:hover\:normal-case:hover{
    text-transform     : none !important;
  }

  .md\:focus\:uppercase:focus{
    text-transform     : uppercase !important;
  }

  .md\:focus\:lowercase:focus{
    text-transform     : lowercase !important;
  }

  .md\:focus\:capitalize:focus{
    text-transform     : capitalize !important;
  }

  .md\:focus\:normal-case:focus{
    text-transform     : none !important;
  }

  .md\:underline{
    text-decoration     : underline !important;
  }

  .md\:line-through{
    text-decoration     : line-through !important;
  }

  .md\:no-underline{
    text-decoration     : none !important;
  }

  .group:hover .md\:group-hover\:underline{
    text-decoration     : underline !important;
  }

  .group:hover .md\:group-hover\:line-through{
    text-decoration     : line-through !important;
  }

  .group:hover .md\:group-hover\:no-underline{
    text-decoration     : none !important;
  }

  .md\:hover\:underline:hover{
    text-decoration     : underline !important;
  }

  .md\:hover\:line-through:hover{
    text-decoration     : line-through !important;
  }

  .md\:hover\:no-underline:hover{
    text-decoration     : none !important;
  }

  .md\:focus\:underline:focus{
    text-decoration     : underline !important;
  }

  .md\:focus\:line-through:focus{
    text-decoration     : line-through !important;
  }

  .md\:focus\:no-underline:focus{
    text-decoration     : none !important;
  }

  .md\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .md\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .group:hover .md\:group-hover\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .group:hover .md\:group-hover\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .md\:hover\:antialiased:hover{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .md\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .md\:focus\:antialiased:focus{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .md\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !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;
  }

  .group:hover .md\:group-hover\:tracking-tighter{
    letter-spacing     : -0.05em !important;
  }

  .group:hover .md\:group-hover\:tracking-tight{
    letter-spacing     : -0.025em !important;
  }

  .group:hover .md\:group-hover\:tracking-normal{
    letter-spacing     : 0 !important;
  }

  .group:hover .md\:group-hover\:tracking-wide{
    letter-spacing     : 0.025em !important;
  }

  .group:hover .md\:group-hover\:tracking-wider{
    letter-spacing     : 0.05em !important;
  }

  .group:hover .md\:group-hover\:tracking-widest{
    letter-spacing     : 0.1em !important;
  }

  .md\:hover\:tracking-tighter:hover{
    letter-spacing     : -0.05em !important;
  }

  .md\:hover\:tracking-tight:hover{
    letter-spacing     : -0.025em !important;
  }

  .md\:hover\:tracking-normal:hover{
    letter-spacing     : 0 !important;
  }

  .md\:hover\:tracking-wide:hover{
    letter-spacing     : 0.025em !important;
  }

  .md\:hover\:tracking-wider:hover{
    letter-spacing     : 0.05em !important;
  }

  .md\:hover\:tracking-widest:hover{
    letter-spacing     : 0.1em !important;
  }

  .md\:focus\:tracking-tighter:focus{
    letter-spacing     : -0.05em !important;
  }

  .md\:focus\:tracking-tight:focus{
    letter-spacing     : -0.025em !important;
  }

  .md\:focus\:tracking-normal:focus{
    letter-spacing     : 0 !important;
  }

  .md\:focus\:tracking-wide:focus{
    letter-spacing     : 0.025em !important;
  }

  .md\:focus\:tracking-wider:focus{
    letter-spacing     : 0.05em !important;
  }

  .md\:focus\:tracking-widest:focus{
    letter-spacing     : 0.1em !important;
  }

  .md\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .md\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .md\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .md\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .group:hover .md\:group-hover\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .group:hover .md\:group-hover\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .group:hover .md\:group-hover\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .group:hover .md\:group-hover\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .md\:hover\:select-none:hover{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .md\:hover\:select-text:hover{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .md\:hover\:select-all:hover{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .md\:hover\:select-auto:hover{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .md\:focus\:select-none:focus{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .md\:focus\:select-text:focus{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .md\:focus\:select-all:focus{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .md\:focus\:select-auto:focus{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .md\:align-baseline{
    vertical-align     : baseline !important;
  }

  .md\:align-top{
    vertical-align     : top !important;
  }

  .md\:align-middle{
    vertical-align     : middle !important;
  }

  .md\:align-bottom{
    vertical-align     : bottom !important;
  }

  .md\:align-text-top{
    vertical-align     : text-top !important;
  }

  .md\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .group:hover .md\:group-hover\:align-baseline{
    vertical-align     : baseline !important;
  }

  .group:hover .md\:group-hover\:align-top{
    vertical-align     : top !important;
  }

  .group:hover .md\:group-hover\:align-middle{
    vertical-align     : middle !important;
  }

  .group:hover .md\:group-hover\:align-bottom{
    vertical-align     : bottom !important;
  }

  .group:hover .md\:group-hover\:align-text-top{
    vertical-align     : text-top !important;
  }

  .group:hover .md\:group-hover\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .md\:hover\:align-baseline:hover{
    vertical-align     : baseline !important;
  }

  .md\:hover\:align-top:hover{
    vertical-align     : top !important;
  }

  .md\:hover\:align-middle:hover{
    vertical-align     : middle !important;
  }

  .md\:hover\:align-bottom:hover{
    vertical-align     : bottom !important;
  }

  .md\:hover\:align-text-top:hover{
    vertical-align     : text-top !important;
  }

  .md\:hover\:align-text-bottom:hover{
    vertical-align     : text-bottom !important;
  }

  .md\:focus\:align-baseline:focus{
    vertical-align     : baseline !important;
  }

  .md\:focus\:align-top:focus{
    vertical-align     : top !important;
  }

  .md\:focus\:align-middle:focus{
    vertical-align     : middle !important;
  }

  .md\:focus\:align-bottom:focus{
    vertical-align     : bottom !important;
  }

  .md\:focus\:align-text-top:focus{
    vertical-align     : text-top !important;
  }

  .md\:focus\:align-text-bottom:focus{
    vertical-align     : text-bottom !important;
  }

  .md\:visible{
    visibility     : visible !important;
  }

  .md\:invisible{
    visibility     : hidden !important;
  }

  .group:hover .md\:group-hover\:visible{
    visibility     : visible !important;
  }

  .group:hover .md\:group-hover\:invisible{
    visibility     : hidden !important;
  }

  .md\:hover\:visible:hover{
    visibility     : visible !important;
  }

  .md\:hover\:invisible:hover{
    visibility     : hidden !important;
  }

  .md\:focus\:visible:focus{
    visibility     : visible !important;
  }

  .md\:focus\:invisible:focus{
    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;
  }

  .group:hover .md\:group-hover\:whitespace-normal{
    white-space     : normal !important;
  }

  .group:hover .md\:group-hover\:whitespace-no-wrap{
    white-space     : nowrap !important;
  }

  .group:hover .md\:group-hover\:whitespace-pre{
    white-space     : pre !important;
  }

  .group:hover .md\:group-hover\:whitespace-pre-line{
    white-space     : pre-line !important;
  }

  .group:hover .md\:group-hover\:whitespace-pre-wrap{
    white-space     : pre-wrap !important;
  }

  .md\:hover\:whitespace-normal:hover{
    white-space     : normal !important;
  }

  .md\:hover\:whitespace-no-wrap:hover{
    white-space     : nowrap !important;
  }

  .md\:hover\:whitespace-pre:hover{
    white-space     : pre !important;
  }

  .md\:hover\:whitespace-pre-line:hover{
    white-space     : pre-line !important;
  }

  .md\:hover\:whitespace-pre-wrap:hover{
    white-space     : pre-wrap !important;
  }

  .md\:focus\:whitespace-normal:focus{
    white-space     : normal !important;
  }

  .md\:focus\:whitespace-no-wrap:focus{
    white-space     : nowrap !important;
  }

  .md\:focus\:whitespace-pre:focus{
    white-space     : pre !important;
  }

  .md\:focus\:whitespace-pre-line:focus{
    white-space     : pre-line !important;
  }

  .md\:focus\:whitespace-pre-wrap:focus{
    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;
  }

  .group:hover .md\:group-hover\:break-normal{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .group:hover .md\:group-hover\:break-words{
    overflow-wrap     : break-word !important;
  }

  .group:hover .md\:group-hover\:break-all{
    word-break     : break-all !important;
  }

  .group:hover .md\:group-hover\:truncate{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .md\:hover\:break-normal:hover{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .md\:hover\:break-words:hover{
    overflow-wrap     : break-word !important;
  }

  .md\:hover\:break-all:hover{
    word-break     : break-all !important;
  }

  .md\:hover\:truncate:hover{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .md\:focus\:break-normal:focus{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .md\:focus\:break-words:focus{
    overflow-wrap     : break-word !important;
  }

  .md\:focus\:break-all:focus{
    word-break     : break-all !important;
  }

  .md\:focus\:truncate:focus{
    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-20{
    width     : 5rem !important;
  }

  .md\:w-24{
    width     : 6rem !important;
  }

  .md\:w-28{
    width     : 7rem !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-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-96{
    width     : 24rem !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-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;
  }

  .group:hover .md\:group-hover\:w-0{
    width     : 0 !important;
  }

  .group:hover .md\:group-hover\:w-1{
    width     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:w-2{
    width     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:w-3{
    width     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:w-4{
    width     : 1rem !important;
  }

  .group:hover .md\:group-hover\:w-5{
    width     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:w-6{
    width     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:w-7{
    width     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:w-8{
    width     : 2rem !important;
  }

  .group:hover .md\:group-hover\:w-9{
    width     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:w-10{
    width     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:w-11{
    width     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:w-12{
    width     : 3rem !important;
  }

  .group:hover .md\:group-hover\:w-13{
    width     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:w-14{
    width     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:w-15{
    width     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:w-16{
    width     : 4rem !important;
  }

  .group:hover .md\:group-hover\:w-20{
    width     : 5rem !important;
  }

  .group:hover .md\:group-hover\:w-24{
    width     : 6rem !important;
  }

  .group:hover .md\:group-hover\:w-28{
    width     : 7rem !important;
  }

  .group:hover .md\:group-hover\:w-32{
    width     : 8rem !important;
  }

  .group:hover .md\:group-hover\:w-36{
    width     : 9rem !important;
  }

  .group:hover .md\:group-hover\:w-40{
    width     : 10rem !important;
  }

  .group:hover .md\:group-hover\:w-44{
    width     : 11rem !important;
  }

  .group:hover .md\:group-hover\:w-48{
    width     : 12rem !important;
  }

  .group:hover .md\:group-hover\:w-52{
    width     : 13rem !important;
  }

  .group:hover .md\:group-hover\:w-56{
    width     : 14rem !important;
  }

  .group:hover .md\:group-hover\:w-60{
    width     : 15rem !important;
  }

  .group:hover .md\:group-hover\:w-64{
    width     : 16rem !important;
  }

  .group:hover .md\:group-hover\:w-72{
    width     : 18rem !important;
  }

  .group:hover .md\:group-hover\:w-80{
    width     : 20rem !important;
  }

  .group:hover .md\:group-hover\:w-96{
    width     : 24rem !important;
  }

  .group:hover .md\:group-hover\:w-auto{
    width     : auto !important;
  }

  .group:hover .md\:group-hover\:w-px{
    width     : 1px !important;
  }

  .group:hover .md\:group-hover\:w-0\.5{
    width     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:w-1\.5{
    width     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:w-2\.5{
    width     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:w-3\.5{
    width     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:w-1\/2{
    width     : 50% !important;
  }

  .group:hover .md\:group-hover\:w-1\/3{
    width     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:w-2\/3{
    width     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:w-1\/4{
    width     : 25% !important;
  }

  .group:hover .md\:group-hover\:w-2\/4{
    width     : 50% !important;
  }

  .group:hover .md\:group-hover\:w-3\/4{
    width     : 75% !important;
  }

  .group:hover .md\:group-hover\:w-1\/5{
    width     : 20% !important;
  }

  .group:hover .md\:group-hover\:w-2\/5{
    width     : 40% !important;
  }

  .group:hover .md\:group-hover\:w-3\/5{
    width     : 60% !important;
  }

  .group:hover .md\:group-hover\:w-4\/5{
    width     : 80% !important;
  }

  .group:hover .md\:group-hover\:w-1\/6{
    width     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:w-2\/6{
    width     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:w-3\/6{
    width     : 50% !important;
  }

  .group:hover .md\:group-hover\:w-4\/6{
    width     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:w-5\/6{
    width     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:w-1\/12{
    width     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:w-2\/12{
    width     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:w-3\/12{
    width     : 25% !important;
  }

  .group:hover .md\:group-hover\:w-4\/12{
    width     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:w-5\/12{
    width     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:w-6\/12{
    width     : 50% !important;
  }

  .group:hover .md\:group-hover\:w-7\/12{
    width     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:w-8\/12{
    width     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:w-9\/12{
    width     : 75% !important;
  }

  .group:hover .md\:group-hover\:w-10\/12{
    width     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:w-11\/12{
    width     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:w-full{
    width     : 100% !important;
  }

  .group:hover .md\:group-hover\:w-screen{
    width     : 100vw !important;
  }

  .group:hover .md\:group-hover\:w-min-content{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .group:hover .md\:group-hover\:w-max-content{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .md\:hover\:w-0:hover{
    width     : 0 !important;
  }

  .md\:hover\:w-1:hover{
    width     : 0.25rem !important;
  }

  .md\:hover\:w-2:hover{
    width     : 0.5rem !important;
  }

  .md\:hover\:w-3:hover{
    width     : 0.75rem !important;
  }

  .md\:hover\:w-4:hover{
    width     : 1rem !important;
  }

  .md\:hover\:w-5:hover{
    width     : 1.25rem !important;
  }

  .md\:hover\:w-6:hover{
    width     : 1.5rem !important;
  }

  .md\:hover\:w-7:hover{
    width     : 1.75rem !important;
  }

  .md\:hover\:w-8:hover{
    width     : 2rem !important;
  }

  .md\:hover\:w-9:hover{
    width     : 2.25rem !important;
  }

  .md\:hover\:w-10:hover{
    width     : 2.5rem !important;
  }

  .md\:hover\:w-11:hover{
    width     : 2.75rem !important;
  }

  .md\:hover\:w-12:hover{
    width     : 3rem !important;
  }

  .md\:hover\:w-13:hover{
    width     : 3.25rem !important;
  }

  .md\:hover\:w-14:hover{
    width     : 3.5rem !important;
  }

  .md\:hover\:w-15:hover{
    width     : 3.75rem !important;
  }

  .md\:hover\:w-16:hover{
    width     : 4rem !important;
  }

  .md\:hover\:w-20:hover{
    width     : 5rem !important;
  }

  .md\:hover\:w-24:hover{
    width     : 6rem !important;
  }

  .md\:hover\:w-28:hover{
    width     : 7rem !important;
  }

  .md\:hover\:w-32:hover{
    width     : 8rem !important;
  }

  .md\:hover\:w-36:hover{
    width     : 9rem !important;
  }

  .md\:hover\:w-40:hover{
    width     : 10rem !important;
  }

  .md\:hover\:w-44:hover{
    width     : 11rem !important;
  }

  .md\:hover\:w-48:hover{
    width     : 12rem !important;
  }

  .md\:hover\:w-52:hover{
    width     : 13rem !important;
  }

  .md\:hover\:w-56:hover{
    width     : 14rem !important;
  }

  .md\:hover\:w-60:hover{
    width     : 15rem !important;
  }

  .md\:hover\:w-64:hover{
    width     : 16rem !important;
  }

  .md\:hover\:w-72:hover{
    width     : 18rem !important;
  }

  .md\:hover\:w-80:hover{
    width     : 20rem !important;
  }

  .md\:hover\:w-96:hover{
    width     : 24rem !important;
  }

  .md\:hover\:w-auto:hover{
    width     : auto !important;
  }

  .md\:hover\:w-px:hover{
    width     : 1px !important;
  }

  .md\:hover\:w-0\.5:hover{
    width     : 0.125rem !important;
  }

  .md\:hover\:w-1\.5:hover{
    width     : 0.375rem !important;
  }

  .md\:hover\:w-2\.5:hover{
    width     : 0.625rem !important;
  }

  .md\:hover\:w-3\.5:hover{
    width     : 0.875rem !important;
  }

  .md\:hover\:w-1\/2:hover{
    width     : 50% !important;
  }

  .md\:hover\:w-1\/3:hover{
    width     : 33.333333% !important;
  }

  .md\:hover\:w-2\/3:hover{
    width     : 66.666667% !important;
  }

  .md\:hover\:w-1\/4:hover{
    width     : 25% !important;
  }

  .md\:hover\:w-2\/4:hover{
    width     : 50% !important;
  }

  .md\:hover\:w-3\/4:hover{
    width     : 75% !important;
  }

  .md\:hover\:w-1\/5:hover{
    width     : 20% !important;
  }

  .md\:hover\:w-2\/5:hover{
    width     : 40% !important;
  }

  .md\:hover\:w-3\/5:hover{
    width     : 60% !important;
  }

  .md\:hover\:w-4\/5:hover{
    width     : 80% !important;
  }

  .md\:hover\:w-1\/6:hover{
    width     : 16.666667% !important;
  }

  .md\:hover\:w-2\/6:hover{
    width     : 33.333333% !important;
  }

  .md\:hover\:w-3\/6:hover{
    width     : 50% !important;
  }

  .md\:hover\:w-4\/6:hover{
    width     : 66.666667% !important;
  }

  .md\:hover\:w-5\/6:hover{
    width     : 83.333333% !important;
  }

  .md\:hover\:w-1\/12:hover{
    width     : 8.333333% !important;
  }

  .md\:hover\:w-2\/12:hover{
    width     : 16.666667% !important;
  }

  .md\:hover\:w-3\/12:hover{
    width     : 25% !important;
  }

  .md\:hover\:w-4\/12:hover{
    width     : 33.333333% !important;
  }

  .md\:hover\:w-5\/12:hover{
    width     : 41.666667% !important;
  }

  .md\:hover\:w-6\/12:hover{
    width     : 50% !important;
  }

  .md\:hover\:w-7\/12:hover{
    width     : 58.333333% !important;
  }

  .md\:hover\:w-8\/12:hover{
    width     : 66.666667% !important;
  }

  .md\:hover\:w-9\/12:hover{
    width     : 75% !important;
  }

  .md\:hover\:w-10\/12:hover{
    width     : 83.333333% !important;
  }

  .md\:hover\:w-11\/12:hover{
    width     : 91.666667% !important;
  }

  .md\:hover\:w-full:hover{
    width     : 100% !important;
  }

  .md\:hover\:w-screen:hover{
    width     : 100vw !important;
  }

  .md\:hover\:w-min-content:hover{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .md\:hover\:w-max-content:hover{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .md\:focus\:w-0:focus{
    width     : 0 !important;
  }

  .md\:focus\:w-1:focus{
    width     : 0.25rem !important;
  }

  .md\:focus\:w-2:focus{
    width     : 0.5rem !important;
  }

  .md\:focus\:w-3:focus{
    width     : 0.75rem !important;
  }

  .md\:focus\:w-4:focus{
    width     : 1rem !important;
  }

  .md\:focus\:w-5:focus{
    width     : 1.25rem !important;
  }

  .md\:focus\:w-6:focus{
    width     : 1.5rem !important;
  }

  .md\:focus\:w-7:focus{
    width     : 1.75rem !important;
  }

  .md\:focus\:w-8:focus{
    width     : 2rem !important;
  }

  .md\:focus\:w-9:focus{
    width     : 2.25rem !important;
  }

  .md\:focus\:w-10:focus{
    width     : 2.5rem !important;
  }

  .md\:focus\:w-11:focus{
    width     : 2.75rem !important;
  }

  .md\:focus\:w-12:focus{
    width     : 3rem !important;
  }

  .md\:focus\:w-13:focus{
    width     : 3.25rem !important;
  }

  .md\:focus\:w-14:focus{
    width     : 3.5rem !important;
  }

  .md\:focus\:w-15:focus{
    width     : 3.75rem !important;
  }

  .md\:focus\:w-16:focus{
    width     : 4rem !important;
  }

  .md\:focus\:w-20:focus{
    width     : 5rem !important;
  }

  .md\:focus\:w-24:focus{
    width     : 6rem !important;
  }

  .md\:focus\:w-28:focus{
    width     : 7rem !important;
  }

  .md\:focus\:w-32:focus{
    width     : 8rem !important;
  }

  .md\:focus\:w-36:focus{
    width     : 9rem !important;
  }

  .md\:focus\:w-40:focus{
    width     : 10rem !important;
  }

  .md\:focus\:w-44:focus{
    width     : 11rem !important;
  }

  .md\:focus\:w-48:focus{
    width     : 12rem !important;
  }

  .md\:focus\:w-52:focus{
    width     : 13rem !important;
  }

  .md\:focus\:w-56:focus{
    width     : 14rem !important;
  }

  .md\:focus\:w-60:focus{
    width     : 15rem !important;
  }

  .md\:focus\:w-64:focus{
    width     : 16rem !important;
  }

  .md\:focus\:w-72:focus{
    width     : 18rem !important;
  }

  .md\:focus\:w-80:focus{
    width     : 20rem !important;
  }

  .md\:focus\:w-96:focus{
    width     : 24rem !important;
  }

  .md\:focus\:w-auto:focus{
    width     : auto !important;
  }

  .md\:focus\:w-px:focus{
    width     : 1px !important;
  }

  .md\:focus\:w-0\.5:focus{
    width     : 0.125rem !important;
  }

  .md\:focus\:w-1\.5:focus{
    width     : 0.375rem !important;
  }

  .md\:focus\:w-2\.5:focus{
    width     : 0.625rem !important;
  }

  .md\:focus\:w-3\.5:focus{
    width     : 0.875rem !important;
  }

  .md\:focus\:w-1\/2:focus{
    width     : 50% !important;
  }

  .md\:focus\:w-1\/3:focus{
    width     : 33.333333% !important;
  }

  .md\:focus\:w-2\/3:focus{
    width     : 66.666667% !important;
  }

  .md\:focus\:w-1\/4:focus{
    width     : 25% !important;
  }

  .md\:focus\:w-2\/4:focus{
    width     : 50% !important;
  }

  .md\:focus\:w-3\/4:focus{
    width     : 75% !important;
  }

  .md\:focus\:w-1\/5:focus{
    width     : 20% !important;
  }

  .md\:focus\:w-2\/5:focus{
    width     : 40% !important;
  }

  .md\:focus\:w-3\/5:focus{
    width     : 60% !important;
  }

  .md\:focus\:w-4\/5:focus{
    width     : 80% !important;
  }

  .md\:focus\:w-1\/6:focus{
    width     : 16.666667% !important;
  }

  .md\:focus\:w-2\/6:focus{
    width     : 33.333333% !important;
  }

  .md\:focus\:w-3\/6:focus{
    width     : 50% !important;
  }

  .md\:focus\:w-4\/6:focus{
    width     : 66.666667% !important;
  }

  .md\:focus\:w-5\/6:focus{
    width     : 83.333333% !important;
  }

  .md\:focus\:w-1\/12:focus{
    width     : 8.333333% !important;
  }

  .md\:focus\:w-2\/12:focus{
    width     : 16.666667% !important;
  }

  .md\:focus\:w-3\/12:focus{
    width     : 25% !important;
  }

  .md\:focus\:w-4\/12:focus{
    width     : 33.333333% !important;
  }

  .md\:focus\:w-5\/12:focus{
    width     : 41.666667% !important;
  }

  .md\:focus\:w-6\/12:focus{
    width     : 50% !important;
  }

  .md\:focus\:w-7\/12:focus{
    width     : 58.333333% !important;
  }

  .md\:focus\:w-8\/12:focus{
    width     : 66.666667% !important;
  }

  .md\:focus\:w-9\/12:focus{
    width     : 75% !important;
  }

  .md\:focus\:w-10\/12:focus{
    width     : 83.333333% !important;
  }

  .md\:focus\:w-11\/12:focus{
    width     : 91.666667% !important;
  }

  .md\:focus\:w-full:focus{
    width     : 100% !important;
  }

  .md\:focus\:w-screen:focus{
    width     : 100vw !important;
  }

  .md\:focus\:w-min-content:focus{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .md\:focus\:w-max-content:focus{
    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-auto{
    z-index     : auto !important;
  }

  .group:hover .md\:group-hover\:z-0{
    z-index     : 0 !important;
  }

  .group:hover .md\:group-hover\:z-10{
    z-index     : 10 !important;
  }

  .group:hover .md\:group-hover\:z-20{
    z-index     : 20 !important;
  }

  .group:hover .md\:group-hover\:z-30{
    z-index     : 30 !important;
  }

  .group:hover .md\:group-hover\:z-40{
    z-index     : 40 !important;
  }

  .group:hover .md\:group-hover\:z-50{
    z-index     : 50 !important;
  }

  .group:hover .md\:group-hover\:z-auto{
    z-index     : auto !important;
  }

  .md\:hover\:z-0:hover{
    z-index     : 0 !important;
  }

  .md\:hover\:z-10:hover{
    z-index     : 10 !important;
  }

  .md\:hover\:z-20:hover{
    z-index     : 20 !important;
  }

  .md\:hover\:z-30:hover{
    z-index     : 30 !important;
  }

  .md\:hover\:z-40:hover{
    z-index     : 40 !important;
  }

  .md\:hover\:z-50:hover{
    z-index     : 50 !important;
  }

  .md\:hover\:z-auto:hover{
    z-index     : auto !important;
  }

  .md\:focus\:z-0:focus{
    z-index     : 0 !important;
  }

  .md\:focus\:z-10:focus{
    z-index     : 10 !important;
  }

  .md\:focus\:z-20:focus{
    z-index     : 20 !important;
  }

  .md\:focus\:z-30:focus{
    z-index     : 30 !important;
  }

  .md\:focus\:z-40:focus{
    z-index     : 40 !important;
  }

  .md\:focus\:z-50:focus{
    z-index     : 50 !important;
  }

  .md\:focus\:z-auto:focus{
    z-index     : auto !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-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .md\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .md\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !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-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-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !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\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .md\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .md\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .md\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .md\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .md\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .md\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .md\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .md\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .md\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .md\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .md\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .md\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .md\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .md\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .md\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .md\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .md\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .md\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .md\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .md\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .md\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .md\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .md\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .md\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .md\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .md\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .md\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .md\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .md\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .md\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .md\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .md\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .md\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .md\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .md\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .md\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .md\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .md\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .md\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .md\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .md\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .md\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .md\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .md\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .md\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .md\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .md\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .md\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .md\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .md\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .md\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .md\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .md\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .md\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .md\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .md\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .md\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .md\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .md\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .md\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .md\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .md\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .md\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .md\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .md\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .md\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .md\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .md\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .md\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .md\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .md\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .md\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .md\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .md\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .md\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .md\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .md\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .md\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .md\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .md\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .md\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .md\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .md\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .md\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .md\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .md\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .md\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .md\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .md\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .md\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .md\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .group:hover .md\:group-hover\:gap-0{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .group:hover .md\:group-hover\:gap-1{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:gap-2{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:gap-3{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:gap-4{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .group:hover .md\:group-hover\:gap-5{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:gap-6{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:gap-7{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:gap-8{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .group:hover .md\:group-hover\:gap-9{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:gap-10{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:gap-11{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:gap-12{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .group:hover .md\:group-hover\:gap-13{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:gap-14{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:gap-15{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:gap-16{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .group:hover .md\:group-hover\:gap-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .group:hover .md\:group-hover\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .group:hover .md\:group-hover\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .group:hover .md\:group-hover\:gap-32{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .group:hover .md\:group-hover\:gap-36{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .group:hover .md\:group-hover\:gap-40{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .group:hover .md\:group-hover\:gap-44{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .group:hover .md\:group-hover\:gap-48{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .group:hover .md\:group-hover\:gap-52{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .group:hover .md\:group-hover\:gap-56{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .group:hover .md\:group-hover\:gap-60{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .group:hover .md\:group-hover\:gap-64{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .group:hover .md\:group-hover\:gap-72{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .group:hover .md\:group-hover\:gap-80{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .group:hover .md\:group-hover\:gap-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .group:hover .md\:group-hover\:gap-px{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .group:hover .md\:group-hover\:gap-0\.5{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:gap-1\.5{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:gap-2\.5{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:gap-3\.5{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:gap-1\/2{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:gap-1\/3{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-2\/3{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-1\/4{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:gap-2\/4{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:gap-3\/4{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:gap-1\/5{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .group:hover .md\:group-hover\:gap-2\/5{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .group:hover .md\:group-hover\:gap-3\/5{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .group:hover .md\:group-hover\:gap-4\/5{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .group:hover .md\:group-hover\:gap-1\/6{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-2\/6{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-3\/6{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:gap-4\/6{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-5\/6{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-1\/12{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-2\/12{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-3\/12{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:gap-4\/12{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-5\/12{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-6\/12{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:gap-7\/12{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-8\/12{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-9\/12{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:gap-10\/12{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:gap-11\/12{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:gap-full{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .group:hover .md\:group-hover\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .group:hover .md\:group-hover\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .group:hover .md\:group-hover\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .group:hover .md\:group-hover\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .group:hover .md\:group-hover\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .group:hover .md\:group-hover\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .group:hover .md\:group-hover\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .group:hover .md\:group-hover\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .group:hover .md\:group-hover\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .group:hover .md\:group-hover\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .md\:group-hover\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .md\:group-hover\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .md\:group-hover\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .md\:hover\:gap-0:hover{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .md\:hover\:gap-1:hover{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .md\:hover\:gap-2:hover{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .md\:hover\:gap-3:hover{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .md\:hover\:gap-4:hover{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .md\:hover\:gap-5:hover{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .md\:hover\:gap-6:hover{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .md\:hover\:gap-7:hover{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .md\:hover\:gap-8:hover{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .md\:hover\:gap-9:hover{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .md\:hover\:gap-10:hover{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .md\:hover\:gap-11:hover{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .md\:hover\:gap-12:hover{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .md\:hover\:gap-13:hover{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .md\:hover\:gap-14:hover{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .md\:hover\:gap-15:hover{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .md\:hover\:gap-16:hover{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .md\:hover\:gap-20:hover{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .md\:hover\:gap-24:hover{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .md\:hover\:gap-28:hover{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .md\:hover\:gap-32:hover{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .md\:hover\:gap-36:hover{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .md\:hover\:gap-40:hover{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .md\:hover\:gap-44:hover{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .md\:hover\:gap-48:hover{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .md\:hover\:gap-52:hover{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .md\:hover\:gap-56:hover{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .md\:hover\:gap-60:hover{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .md\:hover\:gap-64:hover{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .md\:hover\:gap-72:hover{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .md\:hover\:gap-80:hover{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .md\:hover\:gap-96:hover{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .md\:hover\:gap-px:hover{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .md\:hover\:gap-0\.5:hover{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .md\:hover\:gap-1\.5:hover{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .md\:hover\:gap-2\.5:hover{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .md\:hover\:gap-3\.5:hover{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .md\:hover\:gap-1\/2:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:hover\:gap-1\/3:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:hover\:gap-2\/3:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:hover\:gap-1\/4:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .md\:hover\:gap-2\/4:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:hover\:gap-3\/4:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .md\:hover\:gap-1\/5:hover{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .md\:hover\:gap-2\/5:hover{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .md\:hover\:gap-3\/5:hover{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .md\:hover\:gap-4\/5:hover{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .md\:hover\:gap-1\/6:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .md\:hover\:gap-2\/6:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:hover\:gap-3\/6:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:hover\:gap-4\/6:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:hover\:gap-5\/6:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .md\:hover\:gap-1\/12:hover{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .md\:hover\:gap-2\/12:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .md\:hover\:gap-3\/12:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .md\:hover\:gap-4\/12:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:hover\:gap-5\/12:hover{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .md\:hover\:gap-6\/12:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:hover\:gap-7\/12:hover{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .md\:hover\:gap-8\/12:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:hover\:gap-9\/12:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .md\:hover\:gap-10\/12:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .md\:hover\:gap-11\/12:hover{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .md\:hover\:gap-full:hover{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .md\:hover\:col-gap-0:hover{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .md\:hover\:col-gap-1:hover{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .md\:hover\:col-gap-2:hover{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .md\:hover\:col-gap-3:hover{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .md\:hover\:col-gap-4:hover{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .md\:hover\:col-gap-5:hover{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .md\:hover\:col-gap-6:hover{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .md\:hover\:col-gap-7:hover{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .md\:hover\:col-gap-8:hover{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .md\:hover\:col-gap-9:hover{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .md\:hover\:col-gap-10:hover{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .md\:hover\:col-gap-11:hover{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .md\:hover\:col-gap-12:hover{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .md\:hover\:col-gap-13:hover{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .md\:hover\:col-gap-14:hover{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .md\:hover\:col-gap-15:hover{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .md\:hover\:col-gap-16:hover{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .md\:hover\:col-gap-20:hover{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .md\:hover\:col-gap-24:hover{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .md\:hover\:col-gap-28:hover{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .md\:hover\:col-gap-32:hover{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .md\:hover\:col-gap-36:hover{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .md\:hover\:col-gap-40:hover{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .md\:hover\:col-gap-44:hover{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .md\:hover\:col-gap-48:hover{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .md\:hover\:col-gap-52:hover{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .md\:hover\:col-gap-56:hover{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .md\:hover\:col-gap-60:hover{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .md\:hover\:col-gap-64:hover{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .md\:hover\:col-gap-72:hover{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .md\:hover\:col-gap-80:hover{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .md\:hover\:col-gap-96:hover{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .md\:hover\:col-gap-px:hover{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .md\:hover\:col-gap-0\.5:hover{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .md\:hover\:col-gap-1\.5:hover{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .md\:hover\:col-gap-2\.5:hover{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .md\:hover\:col-gap-3\.5:hover{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .md\:hover\:col-gap-1\/2:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:hover\:col-gap-1\/3:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:hover\:col-gap-2\/3:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:hover\:col-gap-1\/4:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:hover\:col-gap-2\/4:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:hover\:col-gap-3\/4:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:hover\:col-gap-1\/5:hover{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .md\:hover\:col-gap-2\/5:hover{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .md\:hover\:col-gap-3\/5:hover{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .md\:hover\:col-gap-4\/5:hover{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .md\:hover\:col-gap-1\/6:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:hover\:col-gap-2\/6:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:hover\:col-gap-3\/6:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:hover\:col-gap-4\/6:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:hover\:col-gap-5\/6:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:hover\:col-gap-1\/12:hover{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .md\:hover\:col-gap-2\/12:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:hover\:col-gap-3\/12:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:hover\:col-gap-4\/12:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:hover\:col-gap-5\/12:hover{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .md\:hover\:col-gap-6\/12:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:hover\:col-gap-7\/12:hover{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .md\:hover\:col-gap-8\/12:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:hover\:col-gap-9\/12:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:hover\:col-gap-10\/12:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:hover\:col-gap-11\/12:hover{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .md\:hover\:col-gap-full:hover{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .md\:hover\:row-gap-0:hover{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .md\:hover\:row-gap-1:hover{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .md\:hover\:row-gap-2:hover{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .md\:hover\:row-gap-3:hover{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .md\:hover\:row-gap-4:hover{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .md\:hover\:row-gap-5:hover{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .md\:hover\:row-gap-6:hover{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .md\:hover\:row-gap-7:hover{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .md\:hover\:row-gap-8:hover{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .md\:hover\:row-gap-9:hover{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .md\:hover\:row-gap-10:hover{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .md\:hover\:row-gap-11:hover{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .md\:hover\:row-gap-12:hover{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .md\:hover\:row-gap-13:hover{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .md\:hover\:row-gap-14:hover{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .md\:hover\:row-gap-15:hover{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .md\:hover\:row-gap-16:hover{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .md\:hover\:row-gap-20:hover{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .md\:hover\:row-gap-24:hover{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .md\:hover\:row-gap-28:hover{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .md\:hover\:row-gap-32:hover{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .md\:hover\:row-gap-36:hover{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .md\:hover\:row-gap-40:hover{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .md\:hover\:row-gap-44:hover{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .md\:hover\:row-gap-48:hover{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .md\:hover\:row-gap-52:hover{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .md\:hover\:row-gap-56:hover{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .md\:hover\:row-gap-60:hover{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .md\:hover\:row-gap-64:hover{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .md\:hover\:row-gap-72:hover{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .md\:hover\:row-gap-80:hover{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .md\:hover\:row-gap-96:hover{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .md\:hover\:row-gap-px:hover{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .md\:hover\:row-gap-0\.5:hover{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .md\:hover\:row-gap-1\.5:hover{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .md\:hover\:row-gap-2\.5:hover{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .md\:hover\:row-gap-3\.5:hover{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .md\:hover\:row-gap-1\/2:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:hover\:row-gap-1\/3:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:hover\:row-gap-2\/3:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:hover\:row-gap-1\/4:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:hover\:row-gap-2\/4:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:hover\:row-gap-3\/4:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:hover\:row-gap-1\/5:hover{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .md\:hover\:row-gap-2\/5:hover{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .md\:hover\:row-gap-3\/5:hover{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .md\:hover\:row-gap-4\/5:hover{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .md\:hover\:row-gap-1\/6:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:hover\:row-gap-2\/6:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:hover\:row-gap-3\/6:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:hover\:row-gap-4\/6:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:hover\:row-gap-5\/6:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:hover\:row-gap-1\/12:hover{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .md\:hover\:row-gap-2\/12:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:hover\:row-gap-3\/12:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:hover\:row-gap-4\/12:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:hover\:row-gap-5\/12:hover{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .md\:hover\:row-gap-6\/12:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:hover\:row-gap-7\/12:hover{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .md\:hover\:row-gap-8\/12:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:hover\:row-gap-9\/12:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:hover\:row-gap-10\/12:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:hover\:row-gap-11\/12:hover{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .md\:hover\:row-gap-full:hover{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .md\:focus\:gap-0:focus{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .md\:focus\:gap-1:focus{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .md\:focus\:gap-2:focus{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .md\:focus\:gap-3:focus{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .md\:focus\:gap-4:focus{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .md\:focus\:gap-5:focus{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .md\:focus\:gap-6:focus{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .md\:focus\:gap-7:focus{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .md\:focus\:gap-8:focus{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .md\:focus\:gap-9:focus{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .md\:focus\:gap-10:focus{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .md\:focus\:gap-11:focus{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .md\:focus\:gap-12:focus{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .md\:focus\:gap-13:focus{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .md\:focus\:gap-14:focus{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .md\:focus\:gap-15:focus{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .md\:focus\:gap-16:focus{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .md\:focus\:gap-20:focus{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .md\:focus\:gap-24:focus{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .md\:focus\:gap-28:focus{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .md\:focus\:gap-32:focus{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .md\:focus\:gap-36:focus{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .md\:focus\:gap-40:focus{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .md\:focus\:gap-44:focus{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .md\:focus\:gap-48:focus{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .md\:focus\:gap-52:focus{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .md\:focus\:gap-56:focus{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .md\:focus\:gap-60:focus{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .md\:focus\:gap-64:focus{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .md\:focus\:gap-72:focus{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .md\:focus\:gap-80:focus{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .md\:focus\:gap-96:focus{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .md\:focus\:gap-px:focus{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .md\:focus\:gap-0\.5:focus{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .md\:focus\:gap-1\.5:focus{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .md\:focus\:gap-2\.5:focus{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .md\:focus\:gap-3\.5:focus{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .md\:focus\:gap-1\/2:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:focus\:gap-1\/3:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:focus\:gap-2\/3:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:focus\:gap-1\/4:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .md\:focus\:gap-2\/4:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:focus\:gap-3\/4:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .md\:focus\:gap-1\/5:focus{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .md\:focus\:gap-2\/5:focus{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .md\:focus\:gap-3\/5:focus{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .md\:focus\:gap-4\/5:focus{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .md\:focus\:gap-1\/6:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .md\:focus\:gap-2\/6:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:focus\:gap-3\/6:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:focus\:gap-4\/6:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:focus\:gap-5\/6:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .md\:focus\:gap-1\/12:focus{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .md\:focus\:gap-2\/12:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .md\:focus\:gap-3\/12:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .md\:focus\:gap-4\/12:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .md\:focus\:gap-5\/12:focus{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .md\:focus\:gap-6\/12:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .md\:focus\:gap-7\/12:focus{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .md\:focus\:gap-8\/12:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .md\:focus\:gap-9\/12:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .md\:focus\:gap-10\/12:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .md\:focus\:gap-11\/12:focus{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .md\:focus\:gap-full:focus{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .md\:focus\:col-gap-0:focus{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .md\:focus\:col-gap-1:focus{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .md\:focus\:col-gap-2:focus{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .md\:focus\:col-gap-3:focus{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .md\:focus\:col-gap-4:focus{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .md\:focus\:col-gap-5:focus{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .md\:focus\:col-gap-6:focus{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .md\:focus\:col-gap-7:focus{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .md\:focus\:col-gap-8:focus{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .md\:focus\:col-gap-9:focus{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .md\:focus\:col-gap-10:focus{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .md\:focus\:col-gap-11:focus{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .md\:focus\:col-gap-12:focus{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .md\:focus\:col-gap-13:focus{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .md\:focus\:col-gap-14:focus{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .md\:focus\:col-gap-15:focus{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .md\:focus\:col-gap-16:focus{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .md\:focus\:col-gap-20:focus{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .md\:focus\:col-gap-24:focus{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .md\:focus\:col-gap-28:focus{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .md\:focus\:col-gap-32:focus{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .md\:focus\:col-gap-36:focus{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .md\:focus\:col-gap-40:focus{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .md\:focus\:col-gap-44:focus{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .md\:focus\:col-gap-48:focus{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .md\:focus\:col-gap-52:focus{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .md\:focus\:col-gap-56:focus{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .md\:focus\:col-gap-60:focus{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .md\:focus\:col-gap-64:focus{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .md\:focus\:col-gap-72:focus{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .md\:focus\:col-gap-80:focus{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .md\:focus\:col-gap-96:focus{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .md\:focus\:col-gap-px:focus{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .md\:focus\:col-gap-0\.5:focus{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .md\:focus\:col-gap-1\.5:focus{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .md\:focus\:col-gap-2\.5:focus{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .md\:focus\:col-gap-3\.5:focus{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .md\:focus\:col-gap-1\/2:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:focus\:col-gap-1\/3:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:focus\:col-gap-2\/3:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:focus\:col-gap-1\/4:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:focus\:col-gap-2\/4:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:focus\:col-gap-3\/4:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:focus\:col-gap-1\/5:focus{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .md\:focus\:col-gap-2\/5:focus{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .md\:focus\:col-gap-3\/5:focus{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .md\:focus\:col-gap-4\/5:focus{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .md\:focus\:col-gap-1\/6:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:focus\:col-gap-2\/6:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:focus\:col-gap-3\/6:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:focus\:col-gap-4\/6:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:focus\:col-gap-5\/6:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:focus\:col-gap-1\/12:focus{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .md\:focus\:col-gap-2\/12:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .md\:focus\:col-gap-3\/12:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .md\:focus\:col-gap-4\/12:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .md\:focus\:col-gap-5\/12:focus{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .md\:focus\:col-gap-6\/12:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .md\:focus\:col-gap-7\/12:focus{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .md\:focus\:col-gap-8\/12:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .md\:focus\:col-gap-9\/12:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .md\:focus\:col-gap-10\/12:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .md\:focus\:col-gap-11\/12:focus{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .md\:focus\:col-gap-full:focus{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .md\:focus\:row-gap-0:focus{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .md\:focus\:row-gap-1:focus{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .md\:focus\:row-gap-2:focus{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .md\:focus\:row-gap-3:focus{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .md\:focus\:row-gap-4:focus{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .md\:focus\:row-gap-5:focus{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .md\:focus\:row-gap-6:focus{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .md\:focus\:row-gap-7:focus{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .md\:focus\:row-gap-8:focus{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .md\:focus\:row-gap-9:focus{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .md\:focus\:row-gap-10:focus{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .md\:focus\:row-gap-11:focus{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .md\:focus\:row-gap-12:focus{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .md\:focus\:row-gap-13:focus{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .md\:focus\:row-gap-14:focus{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .md\:focus\:row-gap-15:focus{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .md\:focus\:row-gap-16:focus{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .md\:focus\:row-gap-20:focus{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .md\:focus\:row-gap-24:focus{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .md\:focus\:row-gap-28:focus{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .md\:focus\:row-gap-32:focus{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .md\:focus\:row-gap-36:focus{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .md\:focus\:row-gap-40:focus{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .md\:focus\:row-gap-44:focus{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .md\:focus\:row-gap-48:focus{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .md\:focus\:row-gap-52:focus{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .md\:focus\:row-gap-56:focus{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .md\:focus\:row-gap-60:focus{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .md\:focus\:row-gap-64:focus{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .md\:focus\:row-gap-72:focus{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .md\:focus\:row-gap-80:focus{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .md\:focus\:row-gap-96:focus{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .md\:focus\:row-gap-px:focus{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .md\:focus\:row-gap-0\.5:focus{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .md\:focus\:row-gap-1\.5:focus{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .md\:focus\:row-gap-2\.5:focus{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .md\:focus\:row-gap-3\.5:focus{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .md\:focus\:row-gap-1\/2:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:focus\:row-gap-1\/3:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:focus\:row-gap-2\/3:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:focus\:row-gap-1\/4:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:focus\:row-gap-2\/4:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:focus\:row-gap-3\/4:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:focus\:row-gap-1\/5:focus{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .md\:focus\:row-gap-2\/5:focus{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .md\:focus\:row-gap-3\/5:focus{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .md\:focus\:row-gap-4\/5:focus{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .md\:focus\:row-gap-1\/6:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:focus\:row-gap-2\/6:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:focus\:row-gap-3\/6:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:focus\:row-gap-4\/6:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:focus\:row-gap-5\/6:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:focus\:row-gap-1\/12:focus{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .md\:focus\:row-gap-2\/12:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .md\:focus\:row-gap-3\/12:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .md\:focus\:row-gap-4\/12:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .md\:focus\:row-gap-5\/12:focus{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .md\:focus\:row-gap-6\/12:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .md\:focus\:row-gap-7\/12:focus{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .md\:focus\:row-gap-8\/12:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .md\:focus\:row-gap-9\/12:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .md\:focus\:row-gap-10\/12:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .md\:focus\:row-gap-11\/12:focus{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .md\:focus\:row-gap-full:focus{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !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;
  }

  .group:hover .md\:group-hover\:grid-flow-row{
    grid-auto-flow     : row !important;
  }

  .group:hover .md\:group-hover\:grid-flow-col{
    grid-auto-flow     : column !important;
  }

  .group:hover .md\:group-hover\:grid-flow-row-dense{
    grid-auto-flow     : row dense !important;
  }

  .group:hover .md\:group-hover\:grid-flow-col-dense{
    grid-auto-flow     : column dense !important;
  }

  .md\:hover\:grid-flow-row:hover{
    grid-auto-flow     : row !important;
  }

  .md\:hover\:grid-flow-col:hover{
    grid-auto-flow     : column !important;
  }

  .md\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow     : row dense !important;
  }

  .md\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow     : column dense !important;
  }

  .md\:focus\:grid-flow-row:focus{
    grid-auto-flow     : row !important;
  }

  .md\:focus\:grid-flow-col:focus{
    grid-auto-flow     : column !important;
  }

  .md\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow     : row dense !important;
  }

  .md\:focus\:grid-flow-col-dense:focus{
    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;
  }

  .group:hover .md\:group-hover\:grid-cols-1{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-2{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-3{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-4{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-5{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-6{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-7{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-8{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-9{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-10{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-11{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-12{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-cols-none{
    grid-template-columns     : none !important;
  }

  .md\:hover\:grid-cols-1:hover{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-2:hover{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-3:hover{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-4:hover{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-5:hover{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-6:hover{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-7:hover{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-8:hover{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-9:hover{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-10:hover{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-11:hover{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-12:hover{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-cols-none:hover{
    grid-template-columns     : none !important;
  }

  .md\:focus\:grid-cols-1:focus{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-2:focus{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-3:focus{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-4:focus{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-5:focus{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-6:focus{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-7:focus{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-8:focus{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-9:focus{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-10:focus{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-11:focus{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-12:focus{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-cols-none:focus{
    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;
  }

  .group:hover .md\:group-hover\:col-auto{
    grid-column     : auto !important;
  }

  .group:hover .md\:group-hover\:col-span-1{
    grid-column     : span 1 / span 1 !important;
  }

  .group:hover .md\:group-hover\:col-span-2{
    grid-column     : span 2 / span 2 !important;
  }

  .group:hover .md\:group-hover\:col-span-3{
    grid-column     : span 3 / span 3 !important;
  }

  .group:hover .md\:group-hover\:col-span-4{
    grid-column     : span 4 / span 4 !important;
  }

  .group:hover .md\:group-hover\:col-span-5{
    grid-column     : span 5 / span 5 !important;
  }

  .group:hover .md\:group-hover\:col-span-6{
    grid-column     : span 6 / span 6 !important;
  }

  .group:hover .md\:group-hover\:col-span-7{
    grid-column     : span 7 / span 7 !important;
  }

  .group:hover .md\:group-hover\:col-span-8{
    grid-column     : span 8 / span 8 !important;
  }

  .group:hover .md\:group-hover\:col-span-9{
    grid-column     : span 9 / span 9 !important;
  }

  .group:hover .md\:group-hover\:col-span-10{
    grid-column     : span 10 / span 10 !important;
  }

  .group:hover .md\:group-hover\:col-span-11{
    grid-column     : span 11 / span 11 !important;
  }

  .group:hover .md\:group-hover\:col-span-12{
    grid-column     : span 12 / span 12 !important;
  }

  .md\:hover\:col-auto:hover{
    grid-column     : auto !important;
  }

  .md\:hover\:col-span-1:hover{
    grid-column     : span 1 / span 1 !important;
  }

  .md\:hover\:col-span-2:hover{
    grid-column     : span 2 / span 2 !important;
  }

  .md\:hover\:col-span-3:hover{
    grid-column     : span 3 / span 3 !important;
  }

  .md\:hover\:col-span-4:hover{
    grid-column     : span 4 / span 4 !important;
  }

  .md\:hover\:col-span-5:hover{
    grid-column     : span 5 / span 5 !important;
  }

  .md\:hover\:col-span-6:hover{
    grid-column     : span 6 / span 6 !important;
  }

  .md\:hover\:col-span-7:hover{
    grid-column     : span 7 / span 7 !important;
  }

  .md\:hover\:col-span-8:hover{
    grid-column     : span 8 / span 8 !important;
  }

  .md\:hover\:col-span-9:hover{
    grid-column     : span 9 / span 9 !important;
  }

  .md\:hover\:col-span-10:hover{
    grid-column     : span 10 / span 10 !important;
  }

  .md\:hover\:col-span-11:hover{
    grid-column     : span 11 / span 11 !important;
  }

  .md\:hover\:col-span-12:hover{
    grid-column     : span 12 / span 12 !important;
  }

  .md\:focus\:col-auto:focus{
    grid-column     : auto !important;
  }

  .md\:focus\:col-span-1:focus{
    grid-column     : span 1 / span 1 !important;
  }

  .md\:focus\:col-span-2:focus{
    grid-column     : span 2 / span 2 !important;
  }

  .md\:focus\:col-span-3:focus{
    grid-column     : span 3 / span 3 !important;
  }

  .md\:focus\:col-span-4:focus{
    grid-column     : span 4 / span 4 !important;
  }

  .md\:focus\:col-span-5:focus{
    grid-column     : span 5 / span 5 !important;
  }

  .md\:focus\:col-span-6:focus{
    grid-column     : span 6 / span 6 !important;
  }

  .md\:focus\:col-span-7:focus{
    grid-column     : span 7 / span 7 !important;
  }

  .md\:focus\:col-span-8:focus{
    grid-column     : span 8 / span 8 !important;
  }

  .md\:focus\:col-span-9:focus{
    grid-column     : span 9 / span 9 !important;
  }

  .md\:focus\:col-span-10:focus{
    grid-column     : span 10 / span 10 !important;
  }

  .md\:focus\:col-span-11:focus{
    grid-column     : span 11 / span 11 !important;
  }

  .md\:focus\:col-span-12:focus{
    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;
  }

  .group:hover .md\:group-hover\:col-start-1{
    grid-column-start     : 1 !important;
  }

  .group:hover .md\:group-hover\:col-start-2{
    grid-column-start     : 2 !important;
  }

  .group:hover .md\:group-hover\:col-start-3{
    grid-column-start     : 3 !important;
  }

  .group:hover .md\:group-hover\:col-start-4{
    grid-column-start     : 4 !important;
  }

  .group:hover .md\:group-hover\:col-start-5{
    grid-column-start     : 5 !important;
  }

  .group:hover .md\:group-hover\:col-start-6{
    grid-column-start     : 6 !important;
  }

  .group:hover .md\:group-hover\:col-start-7{
    grid-column-start     : 7 !important;
  }

  .group:hover .md\:group-hover\:col-start-8{
    grid-column-start     : 8 !important;
  }

  .group:hover .md\:group-hover\:col-start-9{
    grid-column-start     : 9 !important;
  }

  .group:hover .md\:group-hover\:col-start-10{
    grid-column-start     : 10 !important;
  }

  .group:hover .md\:group-hover\:col-start-11{
    grid-column-start     : 11 !important;
  }

  .group:hover .md\:group-hover\:col-start-12{
    grid-column-start     : 12 !important;
  }

  .group:hover .md\:group-hover\:col-start-13{
    grid-column-start     : 13 !important;
  }

  .group:hover .md\:group-hover\:col-start-auto{
    grid-column-start     : auto !important;
  }

  .md\:hover\:col-start-1:hover{
    grid-column-start     : 1 !important;
  }

  .md\:hover\:col-start-2:hover{
    grid-column-start     : 2 !important;
  }

  .md\:hover\:col-start-3:hover{
    grid-column-start     : 3 !important;
  }

  .md\:hover\:col-start-4:hover{
    grid-column-start     : 4 !important;
  }

  .md\:hover\:col-start-5:hover{
    grid-column-start     : 5 !important;
  }

  .md\:hover\:col-start-6:hover{
    grid-column-start     : 6 !important;
  }

  .md\:hover\:col-start-7:hover{
    grid-column-start     : 7 !important;
  }

  .md\:hover\:col-start-8:hover{
    grid-column-start     : 8 !important;
  }

  .md\:hover\:col-start-9:hover{
    grid-column-start     : 9 !important;
  }

  .md\:hover\:col-start-10:hover{
    grid-column-start     : 10 !important;
  }

  .md\:hover\:col-start-11:hover{
    grid-column-start     : 11 !important;
  }

  .md\:hover\:col-start-12:hover{
    grid-column-start     : 12 !important;
  }

  .md\:hover\:col-start-13:hover{
    grid-column-start     : 13 !important;
  }

  .md\:hover\:col-start-auto:hover{
    grid-column-start     : auto !important;
  }

  .md\:focus\:col-start-1:focus{
    grid-column-start     : 1 !important;
  }

  .md\:focus\:col-start-2:focus{
    grid-column-start     : 2 !important;
  }

  .md\:focus\:col-start-3:focus{
    grid-column-start     : 3 !important;
  }

  .md\:focus\:col-start-4:focus{
    grid-column-start     : 4 !important;
  }

  .md\:focus\:col-start-5:focus{
    grid-column-start     : 5 !important;
  }

  .md\:focus\:col-start-6:focus{
    grid-column-start     : 6 !important;
  }

  .md\:focus\:col-start-7:focus{
    grid-column-start     : 7 !important;
  }

  .md\:focus\:col-start-8:focus{
    grid-column-start     : 8 !important;
  }

  .md\:focus\:col-start-9:focus{
    grid-column-start     : 9 !important;
  }

  .md\:focus\:col-start-10:focus{
    grid-column-start     : 10 !important;
  }

  .md\:focus\:col-start-11:focus{
    grid-column-start     : 11 !important;
  }

  .md\:focus\:col-start-12:focus{
    grid-column-start     : 12 !important;
  }

  .md\:focus\:col-start-13:focus{
    grid-column-start     : 13 !important;
  }

  .md\:focus\:col-start-auto:focus{
    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;
  }

  .group:hover .md\:group-hover\:col-end-1{
    grid-column-end     : 1 !important;
  }

  .group:hover .md\:group-hover\:col-end-2{
    grid-column-end     : 2 !important;
  }

  .group:hover .md\:group-hover\:col-end-3{
    grid-column-end     : 3 !important;
  }

  .group:hover .md\:group-hover\:col-end-4{
    grid-column-end     : 4 !important;
  }

  .group:hover .md\:group-hover\:col-end-5{
    grid-column-end     : 5 !important;
  }

  .group:hover .md\:group-hover\:col-end-6{
    grid-column-end     : 6 !important;
  }

  .group:hover .md\:group-hover\:col-end-7{
    grid-column-end     : 7 !important;
  }

  .group:hover .md\:group-hover\:col-end-8{
    grid-column-end     : 8 !important;
  }

  .group:hover .md\:group-hover\:col-end-9{
    grid-column-end     : 9 !important;
  }

  .group:hover .md\:group-hover\:col-end-10{
    grid-column-end     : 10 !important;
  }

  .group:hover .md\:group-hover\:col-end-11{
    grid-column-end     : 11 !important;
  }

  .group:hover .md\:group-hover\:col-end-12{
    grid-column-end     : 12 !important;
  }

  .group:hover .md\:group-hover\:col-end-13{
    grid-column-end     : 13 !important;
  }

  .group:hover .md\:group-hover\:col-end-auto{
    grid-column-end     : auto !important;
  }

  .md\:hover\:col-end-1:hover{
    grid-column-end     : 1 !important;
  }

  .md\:hover\:col-end-2:hover{
    grid-column-end     : 2 !important;
  }

  .md\:hover\:col-end-3:hover{
    grid-column-end     : 3 !important;
  }

  .md\:hover\:col-end-4:hover{
    grid-column-end     : 4 !important;
  }

  .md\:hover\:col-end-5:hover{
    grid-column-end     : 5 !important;
  }

  .md\:hover\:col-end-6:hover{
    grid-column-end     : 6 !important;
  }

  .md\:hover\:col-end-7:hover{
    grid-column-end     : 7 !important;
  }

  .md\:hover\:col-end-8:hover{
    grid-column-end     : 8 !important;
  }

  .md\:hover\:col-end-9:hover{
    grid-column-end     : 9 !important;
  }

  .md\:hover\:col-end-10:hover{
    grid-column-end     : 10 !important;
  }

  .md\:hover\:col-end-11:hover{
    grid-column-end     : 11 !important;
  }

  .md\:hover\:col-end-12:hover{
    grid-column-end     : 12 !important;
  }

  .md\:hover\:col-end-13:hover{
    grid-column-end     : 13 !important;
  }

  .md\:hover\:col-end-auto:hover{
    grid-column-end     : auto !important;
  }

  .md\:focus\:col-end-1:focus{
    grid-column-end     : 1 !important;
  }

  .md\:focus\:col-end-2:focus{
    grid-column-end     : 2 !important;
  }

  .md\:focus\:col-end-3:focus{
    grid-column-end     : 3 !important;
  }

  .md\:focus\:col-end-4:focus{
    grid-column-end     : 4 !important;
  }

  .md\:focus\:col-end-5:focus{
    grid-column-end     : 5 !important;
  }

  .md\:focus\:col-end-6:focus{
    grid-column-end     : 6 !important;
  }

  .md\:focus\:col-end-7:focus{
    grid-column-end     : 7 !important;
  }

  .md\:focus\:col-end-8:focus{
    grid-column-end     : 8 !important;
  }

  .md\:focus\:col-end-9:focus{
    grid-column-end     : 9 !important;
  }

  .md\:focus\:col-end-10:focus{
    grid-column-end     : 10 !important;
  }

  .md\:focus\:col-end-11:focus{
    grid-column-end     : 11 !important;
  }

  .md\:focus\:col-end-12:focus{
    grid-column-end     : 12 !important;
  }

  .md\:focus\:col-end-13:focus{
    grid-column-end     : 13 !important;
  }

  .md\:focus\:col-end-auto:focus{
    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;
  }

  .group:hover .md\:group-hover\:grid-rows-1{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-2{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-3{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-4{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-5{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-6{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .md\:group-hover\:grid-rows-none{
    grid-template-rows     : none !important;
  }

  .md\:hover\:grid-rows-1:hover{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-2:hover{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-3:hover{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-4:hover{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-5:hover{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-6:hover{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:hover\:grid-rows-none:hover{
    grid-template-rows     : none !important;
  }

  .md\:focus\:grid-rows-1:focus{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-2:focus{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-3:focus{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-4:focus{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-5:focus{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-6:focus{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:focus\:grid-rows-none:focus{
    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;
  }

  .group:hover .md\:group-hover\:row-auto{
    grid-row     : auto !important;
  }

  .group:hover .md\:group-hover\:row-span-1{
    grid-row     : span 1 / span 1 !important;
  }

  .group:hover .md\:group-hover\:row-span-2{
    grid-row     : span 2 / span 2 !important;
  }

  .group:hover .md\:group-hover\:row-span-3{
    grid-row     : span 3 / span 3 !important;
  }

  .group:hover .md\:group-hover\:row-span-4{
    grid-row     : span 4 / span 4 !important;
  }

  .group:hover .md\:group-hover\:row-span-5{
    grid-row     : span 5 / span 5 !important;
  }

  .group:hover .md\:group-hover\:row-span-6{
    grid-row     : span 6 / span 6 !important;
  }

  .md\:hover\:row-auto:hover{
    grid-row     : auto !important;
  }

  .md\:hover\:row-span-1:hover{
    grid-row     : span 1 / span 1 !important;
  }

  .md\:hover\:row-span-2:hover{
    grid-row     : span 2 / span 2 !important;
  }

  .md\:hover\:row-span-3:hover{
    grid-row     : span 3 / span 3 !important;
  }

  .md\:hover\:row-span-4:hover{
    grid-row     : span 4 / span 4 !important;
  }

  .md\:hover\:row-span-5:hover{
    grid-row     : span 5 / span 5 !important;
  }

  .md\:hover\:row-span-6:hover{
    grid-row     : span 6 / span 6 !important;
  }

  .md\:focus\:row-auto:focus{
    grid-row     : auto !important;
  }

  .md\:focus\:row-span-1:focus{
    grid-row     : span 1 / span 1 !important;
  }

  .md\:focus\:row-span-2:focus{
    grid-row     : span 2 / span 2 !important;
  }

  .md\:focus\:row-span-3:focus{
    grid-row     : span 3 / span 3 !important;
  }

  .md\:focus\:row-span-4:focus{
    grid-row     : span 4 / span 4 !important;
  }

  .md\:focus\:row-span-5:focus{
    grid-row     : span 5 / span 5 !important;
  }

  .md\:focus\:row-span-6:focus{
    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;
  }

  .group:hover .md\:group-hover\:row-start-1{
    grid-row-start     : 1 !important;
  }

  .group:hover .md\:group-hover\:row-start-2{
    grid-row-start     : 2 !important;
  }

  .group:hover .md\:group-hover\:row-start-3{
    grid-row-start     : 3 !important;
  }

  .group:hover .md\:group-hover\:row-start-4{
    grid-row-start     : 4 !important;
  }

  .group:hover .md\:group-hover\:row-start-5{
    grid-row-start     : 5 !important;
  }

  .group:hover .md\:group-hover\:row-start-6{
    grid-row-start     : 6 !important;
  }

  .group:hover .md\:group-hover\:row-start-7{
    grid-row-start     : 7 !important;
  }

  .group:hover .md\:group-hover\:row-start-auto{
    grid-row-start     : auto !important;
  }

  .md\:hover\:row-start-1:hover{
    grid-row-start     : 1 !important;
  }

  .md\:hover\:row-start-2:hover{
    grid-row-start     : 2 !important;
  }

  .md\:hover\:row-start-3:hover{
    grid-row-start     : 3 !important;
  }

  .md\:hover\:row-start-4:hover{
    grid-row-start     : 4 !important;
  }

  .md\:hover\:row-start-5:hover{
    grid-row-start     : 5 !important;
  }

  .md\:hover\:row-start-6:hover{
    grid-row-start     : 6 !important;
  }

  .md\:hover\:row-start-7:hover{
    grid-row-start     : 7 !important;
  }

  .md\:hover\:row-start-auto:hover{
    grid-row-start     : auto !important;
  }

  .md\:focus\:row-start-1:focus{
    grid-row-start     : 1 !important;
  }

  .md\:focus\:row-start-2:focus{
    grid-row-start     : 2 !important;
  }

  .md\:focus\:row-start-3:focus{
    grid-row-start     : 3 !important;
  }

  .md\:focus\:row-start-4:focus{
    grid-row-start     : 4 !important;
  }

  .md\:focus\:row-start-5:focus{
    grid-row-start     : 5 !important;
  }

  .md\:focus\:row-start-6:focus{
    grid-row-start     : 6 !important;
  }

  .md\:focus\:row-start-7:focus{
    grid-row-start     : 7 !important;
  }

  .md\:focus\:row-start-auto:focus{
    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;
  }

  .group:hover .md\:group-hover\:row-end-1{
    grid-row-end     : 1 !important;
  }

  .group:hover .md\:group-hover\:row-end-2{
    grid-row-end     : 2 !important;
  }

  .group:hover .md\:group-hover\:row-end-3{
    grid-row-end     : 3 !important;
  }

  .group:hover .md\:group-hover\:row-end-4{
    grid-row-end     : 4 !important;
  }

  .group:hover .md\:group-hover\:row-end-5{
    grid-row-end     : 5 !important;
  }

  .group:hover .md\:group-hover\:row-end-6{
    grid-row-end     : 6 !important;
  }

  .group:hover .md\:group-hover\:row-end-7{
    grid-row-end     : 7 !important;
  }

  .group:hover .md\:group-hover\:row-end-auto{
    grid-row-end     : auto !important;
  }

  .md\:hover\:row-end-1:hover{
    grid-row-end     : 1 !important;
  }

  .md\:hover\:row-end-2:hover{
    grid-row-end     : 2 !important;
  }

  .md\:hover\:row-end-3:hover{
    grid-row-end     : 3 !important;
  }

  .md\:hover\:row-end-4:hover{
    grid-row-end     : 4 !important;
  }

  .md\:hover\:row-end-5:hover{
    grid-row-end     : 5 !important;
  }

  .md\:hover\:row-end-6:hover{
    grid-row-end     : 6 !important;
  }

  .md\:hover\:row-end-7:hover{
    grid-row-end     : 7 !important;
  }

  .md\:hover\:row-end-auto:hover{
    grid-row-end     : auto !important;
  }

  .md\:focus\:row-end-1:focus{
    grid-row-end     : 1 !important;
  }

  .md\:focus\:row-end-2:focus{
    grid-row-end     : 2 !important;
  }

  .md\:focus\:row-end-3:focus{
    grid-row-end     : 3 !important;
  }

  .md\:focus\:row-end-4:focus{
    grid-row-end     : 4 !important;
  }

  .md\:focus\:row-end-5:focus{
    grid-row-end     : 5 !important;
  }

  .md\:focus\:row-end-6:focus{
    grid-row-end     : 6 !important;
  }

  .md\:focus\:row-end-7:focus{
    grid-row-end     : 7 !important;
  }

  .md\:focus\:row-end-auto:focus{
    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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:transform-none{
    transform     : none !important;
  }

  .md\:hover\:transform:hover{
    --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\:hover\:transform-none:hover{
    transform     : none !important;
  }

  .md\:focus\:transform:focus{
    --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\:focus\:transform-none:focus{
    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;
  }

  .group:hover .md\:group-hover\:origin-center{
    transform-origin     : center !important;
  }

  .group:hover .md\:group-hover\:origin-top{
    transform-origin     : top !important;
  }

  .group:hover .md\:group-hover\:origin-top-right{
    transform-origin     : top right !important;
  }

  .group:hover .md\:group-hover\:origin-right{
    transform-origin     : right !important;
  }

  .group:hover .md\:group-hover\:origin-bottom-right{
    transform-origin     : bottom right !important;
  }

  .group:hover .md\:group-hover\:origin-bottom{
    transform-origin     : bottom !important;
  }

  .group:hover .md\:group-hover\:origin-bottom-left{
    transform-origin     : bottom left !important;
  }

  .group:hover .md\:group-hover\:origin-left{
    transform-origin     : left !important;
  }

  .group:hover .md\:group-hover\:origin-top-left{
    transform-origin     : top left !important;
  }

  .md\:hover\:origin-center:hover{
    transform-origin     : center !important;
  }

  .md\:hover\:origin-top:hover{
    transform-origin     : top !important;
  }

  .md\:hover\:origin-top-right:hover{
    transform-origin     : top right !important;
  }

  .md\:hover\:origin-right:hover{
    transform-origin     : right !important;
  }

  .md\:hover\:origin-bottom-right:hover{
    transform-origin     : bottom right !important;
  }

  .md\:hover\:origin-bottom:hover{
    transform-origin     : bottom !important;
  }

  .md\:hover\:origin-bottom-left:hover{
    transform-origin     : bottom left !important;
  }

  .md\:hover\:origin-left:hover{
    transform-origin     : left !important;
  }

  .md\:hover\:origin-top-left:hover{
    transform-origin     : top left !important;
  }

  .md\:focus\:origin-center:focus{
    transform-origin     : center !important;
  }

  .md\:focus\:origin-top:focus{
    transform-origin     : top !important;
  }

  .md\:focus\:origin-top-right:focus{
    transform-origin     : top right !important;
  }

  .md\:focus\:origin-right:focus{
    transform-origin     : right !important;
  }

  .md\:focus\:origin-bottom-right:focus{
    transform-origin     : bottom right !important;
  }

  .md\:focus\:origin-bottom:focus{
    transform-origin     : bottom !important;
  }

  .md\:focus\:origin-bottom-left:focus{
    transform-origin     : bottom left !important;
  }

  .md\:focus\:origin-left:focus{
    transform-origin     : left !important;
  }

  .md\:focus\:origin-top-left:focus{
    transform-origin     : top left !important;
  }

  .md\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .md\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .md\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .md\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .md\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .md\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .md\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .md\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .md\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .md\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .md\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .md\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .md\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .md\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .md\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .md\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .md\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .md\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .md\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .md\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .md\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .md\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .md\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .md\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .md\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .md\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .md\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .md\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .md\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .md\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .md\:group-hover\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .group:hover .md\:group-hover\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .group:hover .md\:group-hover\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .group:hover .md\:group-hover\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .group:hover .md\:group-hover\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .group:hover .md\:group-hover\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .group:hover .md\:group-hover\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .md\:group-hover\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .md\:group-hover\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .md\:group-hover\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .md\:group-hover\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .group:hover .md\:group-hover\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .group:hover .md\:group-hover\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .group:hover .md\:group-hover\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .group:hover .md\:group-hover\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .group:hover .md\:group-hover\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .group:hover .md\:group-hover\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .group:hover .md\:group-hover\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .group:hover .md\:group-hover\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .group:hover .md\:group-hover\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .group:hover .md\:group-hover\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .group:hover .md\:group-hover\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .group:hover .md\:group-hover\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .group:hover .md\:group-hover\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .group:hover .md\:group-hover\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .group:hover .md\:group-hover\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .group:hover .md\:group-hover\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .md\:group-hover\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .md\:group-hover\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .md\:group-hover\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .md\:hover\:scale-0:hover{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .md\:hover\:scale-50:hover{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .md\:hover\:scale-75:hover{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .md\:hover\:scale-90:hover{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .md\:hover\:scale-95:hover{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .md\:hover\:scale-100:hover{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .md\:hover\:scale-105:hover{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .md\:hover\:scale-110:hover{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .md\:hover\:scale-125:hover{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .md\:hover\:scale-150:hover{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .md\:hover\:scale-x-0:hover{
    --transform-scale-x     : 0 !important;
  }

  .md\:hover\:scale-x-50:hover{
    --transform-scale-x     : .5 !important;
  }

  .md\:hover\:scale-x-75:hover{
    --transform-scale-x     : .75 !important;
  }

  .md\:hover\:scale-x-90:hover{
    --transform-scale-x     : .9 !important;
  }

  .md\:hover\:scale-x-95:hover{
    --transform-scale-x     : .95 !important;
  }

  .md\:hover\:scale-x-100:hover{
    --transform-scale-x     : 1 !important;
  }

  .md\:hover\:scale-x-105:hover{
    --transform-scale-x     : 1.05 !important;
  }

  .md\:hover\:scale-x-110:hover{
    --transform-scale-x     : 1.1 !important;
  }

  .md\:hover\:scale-x-125:hover{
    --transform-scale-x     : 1.25 !important;
  }

  .md\:hover\:scale-x-150:hover{
    --transform-scale-x     : 1.5 !important;
  }

  .md\:hover\:scale-y-0:hover{
    --transform-scale-y     : 0 !important;
  }

  .md\:hover\:scale-y-50:hover{
    --transform-scale-y     : .5 !important;
  }

  .md\:hover\:scale-y-75:hover{
    --transform-scale-y     : .75 !important;
  }

  .md\:hover\:scale-y-90:hover{
    --transform-scale-y     : .9 !important;
  }

  .md\:hover\:scale-y-95:hover{
    --transform-scale-y     : .95 !important;
  }

  .md\:hover\:scale-y-100:hover{
    --transform-scale-y     : 1 !important;
  }

  .md\:hover\:scale-y-105:hover{
    --transform-scale-y     : 1.05 !important;
  }

  .md\:hover\:scale-y-110:hover{
    --transform-scale-y     : 1.1 !important;
  }

  .md\:hover\:scale-y-125:hover{
    --transform-scale-y     : 1.25 !important;
  }

  .md\:hover\:scale-y-150:hover{
    --transform-scale-y     : 1.5 !important;
  }

  .md\:focus\:scale-0:focus{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .md\:focus\:scale-50:focus{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .md\:focus\:scale-75:focus{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .md\:focus\:scale-90:focus{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .md\:focus\:scale-95:focus{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .md\:focus\:scale-100:focus{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .md\:focus\:scale-105:focus{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .md\:focus\:scale-110:focus{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .md\:focus\:scale-125:focus{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .md\:focus\:scale-150:focus{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .md\:focus\:scale-x-0:focus{
    --transform-scale-x     : 0 !important;
  }

  .md\:focus\:scale-x-50:focus{
    --transform-scale-x     : .5 !important;
  }

  .md\:focus\:scale-x-75:focus{
    --transform-scale-x     : .75 !important;
  }

  .md\:focus\:scale-x-90:focus{
    --transform-scale-x     : .9 !important;
  }

  .md\:focus\:scale-x-95:focus{
    --transform-scale-x     : .95 !important;
  }

  .md\:focus\:scale-x-100:focus{
    --transform-scale-x     : 1 !important;
  }

  .md\:focus\:scale-x-105:focus{
    --transform-scale-x     : 1.05 !important;
  }

  .md\:focus\:scale-x-110:focus{
    --transform-scale-x     : 1.1 !important;
  }

  .md\:focus\:scale-x-125:focus{
    --transform-scale-x     : 1.25 !important;
  }

  .md\:focus\:scale-x-150:focus{
    --transform-scale-x     : 1.5 !important;
  }

  .md\:focus\:scale-y-0:focus{
    --transform-scale-y     : 0 !important;
  }

  .md\:focus\:scale-y-50:focus{
    --transform-scale-y     : .5 !important;
  }

  .md\:focus\:scale-y-75:focus{
    --transform-scale-y     : .75 !important;
  }

  .md\:focus\:scale-y-90:focus{
    --transform-scale-y     : .9 !important;
  }

  .md\:focus\:scale-y-95:focus{
    --transform-scale-y     : .95 !important;
  }

  .md\:focus\:scale-y-100:focus{
    --transform-scale-y     : 1 !important;
  }

  .md\:focus\:scale-y-105:focus{
    --transform-scale-y     : 1.05 !important;
  }

  .md\:focus\:scale-y-110:focus{
    --transform-scale-y     : 1.1 !important;
  }

  .md\:focus\:scale-y-125:focus{
    --transform-scale-y     : 1.25 !important;
  }

  .md\:focus\:scale-y-150:focus{
    --transform-scale-y     : 1.5 !important;
  }

  .md\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .md\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .md\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .md\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .md\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .md\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .md\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .group:hover .md\:group-hover\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .group:hover .md\:group-hover\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .group:hover .md\:group-hover\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .group:hover .md\:group-hover\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .group:hover .md\:group-hover\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .group:hover .md\:group-hover\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .group:hover .md\:group-hover\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .md\:hover\:rotate-0:hover{
    --transform-rotate     : 0 !important;
  }

  .md\:hover\:rotate-45:hover{
    --transform-rotate     : 45deg !important;
  }

  .md\:hover\:rotate-90:hover{
    --transform-rotate     : 90deg !important;
  }

  .md\:hover\:rotate-180:hover{
    --transform-rotate     : 180deg !important;
  }

  .md\:hover\:-rotate-180:hover{
    --transform-rotate     : -180deg !important;
  }

  .md\:hover\:-rotate-90:hover{
    --transform-rotate     : -90deg !important;
  }

  .md\:hover\:-rotate-45:hover{
    --transform-rotate     : -45deg !important;
  }

  .md\:focus\:rotate-0:focus{
    --transform-rotate     : 0 !important;
  }

  .md\:focus\:rotate-45:focus{
    --transform-rotate     : 45deg !important;
  }

  .md\:focus\:rotate-90:focus{
    --transform-rotate     : 90deg !important;
  }

  .md\:focus\:rotate-180:focus{
    --transform-rotate     : 180deg !important;
  }

  .md\:focus\:-rotate-180:focus{
    --transform-rotate     : -180deg !important;
  }

  .md\:focus\:-rotate-90:focus{
    --transform-rotate     : -90deg !important;
  }

  .md\:focus\:-rotate-45:focus{
    --transform-rotate     : -45deg !important;
  }

  .md\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .md\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .md\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .md\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .md\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .md\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .md\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .md\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .md\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .md\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .md\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .md\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .md\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .md\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .md\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .md\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .md\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .md\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .md\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .md\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .md\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .md\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .md\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .md\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .md\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .md\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .md\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .md\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .md\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .md\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .md\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .md\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .md\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .md\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .md\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .md\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .md\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .md\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .md\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .md\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .md\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .md\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .md\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .md\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .md\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .md\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .md\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .md\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .md\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .md\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .md\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .md\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .md\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .md\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .md\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .md\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .md\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .md\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .md\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .md\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .md\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .md\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .md\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .md\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .md\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .md\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .md\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .md\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .md\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .md\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .md\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .md\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .md\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .md\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .md\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .md\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .md\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .md\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .md\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .md\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .md\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .md\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .md\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .md\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .md\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .md\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .md\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .md\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .md\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .md\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .md\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .md\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .md\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .md\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .md\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .md\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .md\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .md\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .md\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .md\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .md\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .md\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .md\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .md\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .md\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .md\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .md\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .md\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .md\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .md\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .md\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .md\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .md\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .md\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .md\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .md\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .md\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .md\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .md\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .md\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .md\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .md\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .md\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .md\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .md\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .md\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .md\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .md\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .md\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .md\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .md\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .md\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .md\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .md\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .md\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .md\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .md\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .md\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .md\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .md\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .md\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .md\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .md\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .md\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .md\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .md\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .md\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .md\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .md\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .md\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .md\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .md\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .md\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .md\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .md\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .md\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .md\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .md\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .md\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .md\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .md\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .md\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .md\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .md\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .md\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .md\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .md\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .md\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .md\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .md\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .md\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .md\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .md\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .md\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .md\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .md\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .md\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .md\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .md\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .md\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .md\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .md\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .md\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .md\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .md\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .md\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .md\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .md\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .md\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .md\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .md\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .md\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .md\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .md\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .md\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .md\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .md\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .md\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .md\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .md\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .md\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .md\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .md\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .md\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .md\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .md\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .md\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .md\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .md\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .md\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .md\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .md\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .md\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .md\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .group:hover .md\:group-hover\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .group:hover .md\:group-hover\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .group:hover .md\:group-hover\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .group:hover .md\:group-hover\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .group:hover .md\:group-hover\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .md\:group-hover\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .md\:group-hover\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .group:hover .md\:group-hover\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .group:hover .md\:group-hover\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .group:hover .md\:group-hover\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .group:hover .md\:group-hover\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .group:hover .md\:group-hover\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .group:hover .md\:group-hover\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .md\:group-hover\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .md\:group-hover\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .md\:group-hover\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .md\:group-hover\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .group:hover .md\:group-hover\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .group:hover .md\:group-hover\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .group:hover .md\:group-hover\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .md\:hover\:translate-x-0:hover{
    --transform-translate-x     : 0 !important;
  }

  .md\:hover\:translate-x-1:hover{
    --transform-translate-x     : 0.25rem !important;
  }

  .md\:hover\:translate-x-2:hover{
    --transform-translate-x     : 0.5rem !important;
  }

  .md\:hover\:translate-x-3:hover{
    --transform-translate-x     : 0.75rem !important;
  }

  .md\:hover\:translate-x-4:hover{
    --transform-translate-x     : 1rem !important;
  }

  .md\:hover\:translate-x-5:hover{
    --transform-translate-x     : 1.25rem !important;
  }

  .md\:hover\:translate-x-6:hover{
    --transform-translate-x     : 1.5rem !important;
  }

  .md\:hover\:translate-x-7:hover{
    --transform-translate-x     : 1.75rem !important;
  }

  .md\:hover\:translate-x-8:hover{
    --transform-translate-x     : 2rem !important;
  }

  .md\:hover\:translate-x-9:hover{
    --transform-translate-x     : 2.25rem !important;
  }

  .md\:hover\:translate-x-10:hover{
    --transform-translate-x     : 2.5rem !important;
  }

  .md\:hover\:translate-x-11:hover{
    --transform-translate-x     : 2.75rem !important;
  }

  .md\:hover\:translate-x-12:hover{
    --transform-translate-x     : 3rem !important;
  }

  .md\:hover\:translate-x-13:hover{
    --transform-translate-x     : 3.25rem !important;
  }

  .md\:hover\:translate-x-14:hover{
    --transform-translate-x     : 3.5rem !important;
  }

  .md\:hover\:translate-x-15:hover{
    --transform-translate-x     : 3.75rem !important;
  }

  .md\:hover\:translate-x-16:hover{
    --transform-translate-x     : 4rem !important;
  }

  .md\:hover\:translate-x-20:hover{
    --transform-translate-x     : 5rem !important;
  }

  .md\:hover\:translate-x-24:hover{
    --transform-translate-x     : 6rem !important;
  }

  .md\:hover\:translate-x-28:hover{
    --transform-translate-x     : 7rem !important;
  }

  .md\:hover\:translate-x-32:hover{
    --transform-translate-x     : 8rem !important;
  }

  .md\:hover\:translate-x-36:hover{
    --transform-translate-x     : 9rem !important;
  }

  .md\:hover\:translate-x-40:hover{
    --transform-translate-x     : 10rem !important;
  }

  .md\:hover\:translate-x-44:hover{
    --transform-translate-x     : 11rem !important;
  }

  .md\:hover\:translate-x-48:hover{
    --transform-translate-x     : 12rem !important;
  }

  .md\:hover\:translate-x-52:hover{
    --transform-translate-x     : 13rem !important;
  }

  .md\:hover\:translate-x-56:hover{
    --transform-translate-x     : 14rem !important;
  }

  .md\:hover\:translate-x-60:hover{
    --transform-translate-x     : 15rem !important;
  }

  .md\:hover\:translate-x-64:hover{
    --transform-translate-x     : 16rem !important;
  }

  .md\:hover\:translate-x-72:hover{
    --transform-translate-x     : 18rem !important;
  }

  .md\:hover\:translate-x-80:hover{
    --transform-translate-x     : 20rem !important;
  }

  .md\:hover\:translate-x-96:hover{
    --transform-translate-x     : 24rem !important;
  }

  .md\:hover\:translate-x-px:hover{
    --transform-translate-x     : 1px !important;
  }

  .md\:hover\:translate-x-0\.5:hover{
    --transform-translate-x     : 0.125rem !important;
  }

  .md\:hover\:translate-x-1\.5:hover{
    --transform-translate-x     : 0.375rem !important;
  }

  .md\:hover\:translate-x-2\.5:hover{
    --transform-translate-x     : 0.625rem !important;
  }

  .md\:hover\:translate-x-3\.5:hover{
    --transform-translate-x     : 0.875rem !important;
  }

  .md\:hover\:translate-x-1\/2:hover{
    --transform-translate-x     : 50% !important;
  }

  .md\:hover\:translate-x-1\/3:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:hover\:translate-x-2\/3:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:hover\:translate-x-1\/4:hover{
    --transform-translate-x     : 25% !important;
  }

  .md\:hover\:translate-x-2\/4:hover{
    --transform-translate-x     : 50% !important;
  }

  .md\:hover\:translate-x-3\/4:hover{
    --transform-translate-x     : 75% !important;
  }

  .md\:hover\:translate-x-1\/5:hover{
    --transform-translate-x     : 20% !important;
  }

  .md\:hover\:translate-x-2\/5:hover{
    --transform-translate-x     : 40% !important;
  }

  .md\:hover\:translate-x-3\/5:hover{
    --transform-translate-x     : 60% !important;
  }

  .md\:hover\:translate-x-4\/5:hover{
    --transform-translate-x     : 80% !important;
  }

  .md\:hover\:translate-x-1\/6:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:hover\:translate-x-2\/6:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:hover\:translate-x-3\/6:hover{
    --transform-translate-x     : 50% !important;
  }

  .md\:hover\:translate-x-4\/6:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:hover\:translate-x-5\/6:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:hover\:translate-x-1\/12:hover{
    --transform-translate-x     : 8.333333% !important;
  }

  .md\:hover\:translate-x-2\/12:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:hover\:translate-x-3\/12:hover{
    --transform-translate-x     : 25% !important;
  }

  .md\:hover\:translate-x-4\/12:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:hover\:translate-x-5\/12:hover{
    --transform-translate-x     : 41.666667% !important;
  }

  .md\:hover\:translate-x-6\/12:hover{
    --transform-translate-x     : 50% !important;
  }

  .md\:hover\:translate-x-7\/12:hover{
    --transform-translate-x     : 58.333333% !important;
  }

  .md\:hover\:translate-x-8\/12:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:hover\:translate-x-9\/12:hover{
    --transform-translate-x     : 75% !important;
  }

  .md\:hover\:translate-x-10\/12:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:hover\:translate-x-11\/12:hover{
    --transform-translate-x     : 91.666667% !important;
  }

  .md\:hover\:translate-x-full:hover{
    --transform-translate-x     : 100% !important;
  }

  .md\:hover\:-translate-x-1:hover{
    --transform-translate-x     : -0.25rem !important;
  }

  .md\:hover\:-translate-x-2:hover{
    --transform-translate-x     : -0.5rem !important;
  }

  .md\:hover\:-translate-x-3:hover{
    --transform-translate-x     : -0.75rem !important;
  }

  .md\:hover\:-translate-x-4:hover{
    --transform-translate-x     : -1rem !important;
  }

  .md\:hover\:-translate-x-5:hover{
    --transform-translate-x     : -1.25rem !important;
  }

  .md\:hover\:-translate-x-6:hover{
    --transform-translate-x     : -1.5rem !important;
  }

  .md\:hover\:-translate-x-7:hover{
    --transform-translate-x     : -1.75rem !important;
  }

  .md\:hover\:-translate-x-8:hover{
    --transform-translate-x     : -2rem !important;
  }

  .md\:hover\:-translate-x-9:hover{
    --transform-translate-x     : -2.25rem !important;
  }

  .md\:hover\:-translate-x-10:hover{
    --transform-translate-x     : -2.5rem !important;
  }

  .md\:hover\:-translate-x-11:hover{
    --transform-translate-x     : -2.75rem !important;
  }

  .md\:hover\:-translate-x-12:hover{
    --transform-translate-x     : -3rem !important;
  }

  .md\:hover\:-translate-x-13:hover{
    --transform-translate-x     : -3.25rem !important;
  }

  .md\:hover\:-translate-x-14:hover{
    --transform-translate-x     : -3.5rem !important;
  }

  .md\:hover\:-translate-x-15:hover{
    --transform-translate-x     : -3.75rem !important;
  }

  .md\:hover\:-translate-x-16:hover{
    --transform-translate-x     : -4rem !important;
  }

  .md\:hover\:-translate-x-20:hover{
    --transform-translate-x     : -5rem !important;
  }

  .md\:hover\:-translate-x-24:hover{
    --transform-translate-x     : -6rem !important;
  }

  .md\:hover\:-translate-x-28:hover{
    --transform-translate-x     : -7rem !important;
  }

  .md\:hover\:-translate-x-32:hover{
    --transform-translate-x     : -8rem !important;
  }

  .md\:hover\:-translate-x-36:hover{
    --transform-translate-x     : -9rem !important;
  }

  .md\:hover\:-translate-x-40:hover{
    --transform-translate-x     : -10rem !important;
  }

  .md\:hover\:-translate-x-44:hover{
    --transform-translate-x     : -11rem !important;
  }

  .md\:hover\:-translate-x-48:hover{
    --transform-translate-x     : -12rem !important;
  }

  .md\:hover\:-translate-x-52:hover{
    --transform-translate-x     : -13rem !important;
  }

  .md\:hover\:-translate-x-56:hover{
    --transform-translate-x     : -14rem !important;
  }

  .md\:hover\:-translate-x-60:hover{
    --transform-translate-x     : -15rem !important;
  }

  .md\:hover\:-translate-x-64:hover{
    --transform-translate-x     : -16rem !important;
  }

  .md\:hover\:-translate-x-72:hover{
    --transform-translate-x     : -18rem !important;
  }

  .md\:hover\:-translate-x-80:hover{
    --transform-translate-x     : -20rem !important;
  }

  .md\:hover\:-translate-x-96:hover{
    --transform-translate-x     : -24rem !important;
  }

  .md\:hover\:-translate-x-px:hover{
    --transform-translate-x     : -1px !important;
  }

  .md\:hover\:-translate-x-0\.5:hover{
    --transform-translate-x     : -0.125rem !important;
  }

  .md\:hover\:-translate-x-1\.5:hover{
    --transform-translate-x     : -0.375rem !important;
  }

  .md\:hover\:-translate-x-2\.5:hover{
    --transform-translate-x     : -0.625rem !important;
  }

  .md\:hover\:-translate-x-3\.5:hover{
    --transform-translate-x     : -0.875rem !important;
  }

  .md\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x     : -50% !important;
  }

  .md\:hover\:-translate-x-1\/3:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:hover\:-translate-x-2\/3:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:hover\:-translate-x-1\/4:hover{
    --transform-translate-x     : -25% !important;
  }

  .md\:hover\:-translate-x-2\/4:hover{
    --transform-translate-x     : -50% !important;
  }

  .md\:hover\:-translate-x-3\/4:hover{
    --transform-translate-x     : -75% !important;
  }

  .md\:hover\:-translate-x-1\/5:hover{
    --transform-translate-x     : -20% !important;
  }

  .md\:hover\:-translate-x-2\/5:hover{
    --transform-translate-x     : -40% !important;
  }

  .md\:hover\:-translate-x-3\/5:hover{
    --transform-translate-x     : -60% !important;
  }

  .md\:hover\:-translate-x-4\/5:hover{
    --transform-translate-x     : -80% !important;
  }

  .md\:hover\:-translate-x-1\/6:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:hover\:-translate-x-2\/6:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:hover\:-translate-x-3\/6:hover{
    --transform-translate-x     : -50% !important;
  }

  .md\:hover\:-translate-x-4\/6:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:hover\:-translate-x-5\/6:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:hover\:-translate-x-1\/12:hover{
    --transform-translate-x     : -8.33333% !important;
  }

  .md\:hover\:-translate-x-2\/12:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:hover\:-translate-x-3\/12:hover{
    --transform-translate-x     : -25% !important;
  }

  .md\:hover\:-translate-x-4\/12:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:hover\:-translate-x-5\/12:hover{
    --transform-translate-x     : -41.66667% !important;
  }

  .md\:hover\:-translate-x-6\/12:hover{
    --transform-translate-x     : -50% !important;
  }

  .md\:hover\:-translate-x-7\/12:hover{
    --transform-translate-x     : -58.33333% !important;
  }

  .md\:hover\:-translate-x-8\/12:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:hover\:-translate-x-9\/12:hover{
    --transform-translate-x     : -75% !important;
  }

  .md\:hover\:-translate-x-10\/12:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:hover\:-translate-x-11\/12:hover{
    --transform-translate-x     : -91.66667% !important;
  }

  .md\:hover\:-translate-x-full:hover{
    --transform-translate-x     : -100% !important;
  }

  .md\:hover\:translate-y-0:hover{
    --transform-translate-y     : 0 !important;
  }

  .md\:hover\:translate-y-1:hover{
    --transform-translate-y     : 0.25rem !important;
  }

  .md\:hover\:translate-y-2:hover{
    --transform-translate-y     : 0.5rem !important;
  }

  .md\:hover\:translate-y-3:hover{
    --transform-translate-y     : 0.75rem !important;
  }

  .md\:hover\:translate-y-4:hover{
    --transform-translate-y     : 1rem !important;
  }

  .md\:hover\:translate-y-5:hover{
    --transform-translate-y     : 1.25rem !important;
  }

  .md\:hover\:translate-y-6:hover{
    --transform-translate-y     : 1.5rem !important;
  }

  .md\:hover\:translate-y-7:hover{
    --transform-translate-y     : 1.75rem !important;
  }

  .md\:hover\:translate-y-8:hover{
    --transform-translate-y     : 2rem !important;
  }

  .md\:hover\:translate-y-9:hover{
    --transform-translate-y     : 2.25rem !important;
  }

  .md\:hover\:translate-y-10:hover{
    --transform-translate-y     : 2.5rem !important;
  }

  .md\:hover\:translate-y-11:hover{
    --transform-translate-y     : 2.75rem !important;
  }

  .md\:hover\:translate-y-12:hover{
    --transform-translate-y     : 3rem !important;
  }

  .md\:hover\:translate-y-13:hover{
    --transform-translate-y     : 3.25rem !important;
  }

  .md\:hover\:translate-y-14:hover{
    --transform-translate-y     : 3.5rem !important;
  }

  .md\:hover\:translate-y-15:hover{
    --transform-translate-y     : 3.75rem !important;
  }

  .md\:hover\:translate-y-16:hover{
    --transform-translate-y     : 4rem !important;
  }

  .md\:hover\:translate-y-20:hover{
    --transform-translate-y     : 5rem !important;
  }

  .md\:hover\:translate-y-24:hover{
    --transform-translate-y     : 6rem !important;
  }

  .md\:hover\:translate-y-28:hover{
    --transform-translate-y     : 7rem !important;
  }

  .md\:hover\:translate-y-32:hover{
    --transform-translate-y     : 8rem !important;
  }

  .md\:hover\:translate-y-36:hover{
    --transform-translate-y     : 9rem !important;
  }

  .md\:hover\:translate-y-40:hover{
    --transform-translate-y     : 10rem !important;
  }

  .md\:hover\:translate-y-44:hover{
    --transform-translate-y     : 11rem !important;
  }

  .md\:hover\:translate-y-48:hover{
    --transform-translate-y     : 12rem !important;
  }

  .md\:hover\:translate-y-52:hover{
    --transform-translate-y     : 13rem !important;
  }

  .md\:hover\:translate-y-56:hover{
    --transform-translate-y     : 14rem !important;
  }

  .md\:hover\:translate-y-60:hover{
    --transform-translate-y     : 15rem !important;
  }

  .md\:hover\:translate-y-64:hover{
    --transform-translate-y     : 16rem !important;
  }

  .md\:hover\:translate-y-72:hover{
    --transform-translate-y     : 18rem !important;
  }

  .md\:hover\:translate-y-80:hover{
    --transform-translate-y     : 20rem !important;
  }

  .md\:hover\:translate-y-96:hover{
    --transform-translate-y     : 24rem !important;
  }

  .md\:hover\:translate-y-px:hover{
    --transform-translate-y     : 1px !important;
  }

  .md\:hover\:translate-y-0\.5:hover{
    --transform-translate-y     : 0.125rem !important;
  }

  .md\:hover\:translate-y-1\.5:hover{
    --transform-translate-y     : 0.375rem !important;
  }

  .md\:hover\:translate-y-2\.5:hover{
    --transform-translate-y     : 0.625rem !important;
  }

  .md\:hover\:translate-y-3\.5:hover{
    --transform-translate-y     : 0.875rem !important;
  }

  .md\:hover\:translate-y-1\/2:hover{
    --transform-translate-y     : 50% !important;
  }

  .md\:hover\:translate-y-1\/3:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:hover\:translate-y-2\/3:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:hover\:translate-y-1\/4:hover{
    --transform-translate-y     : 25% !important;
  }

  .md\:hover\:translate-y-2\/4:hover{
    --transform-translate-y     : 50% !important;
  }

  .md\:hover\:translate-y-3\/4:hover{
    --transform-translate-y     : 75% !important;
  }

  .md\:hover\:translate-y-1\/5:hover{
    --transform-translate-y     : 20% !important;
  }

  .md\:hover\:translate-y-2\/5:hover{
    --transform-translate-y     : 40% !important;
  }

  .md\:hover\:translate-y-3\/5:hover{
    --transform-translate-y     : 60% !important;
  }

  .md\:hover\:translate-y-4\/5:hover{
    --transform-translate-y     : 80% !important;
  }

  .md\:hover\:translate-y-1\/6:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:hover\:translate-y-2\/6:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:hover\:translate-y-3\/6:hover{
    --transform-translate-y     : 50% !important;
  }

  .md\:hover\:translate-y-4\/6:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:hover\:translate-y-5\/6:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:hover\:translate-y-1\/12:hover{
    --transform-translate-y     : 8.333333% !important;
  }

  .md\:hover\:translate-y-2\/12:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:hover\:translate-y-3\/12:hover{
    --transform-translate-y     : 25% !important;
  }

  .md\:hover\:translate-y-4\/12:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:hover\:translate-y-5\/12:hover{
    --transform-translate-y     : 41.666667% !important;
  }

  .md\:hover\:translate-y-6\/12:hover{
    --transform-translate-y     : 50% !important;
  }

  .md\:hover\:translate-y-7\/12:hover{
    --transform-translate-y     : 58.333333% !important;
  }

  .md\:hover\:translate-y-8\/12:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:hover\:translate-y-9\/12:hover{
    --transform-translate-y     : 75% !important;
  }

  .md\:hover\:translate-y-10\/12:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:hover\:translate-y-11\/12:hover{
    --transform-translate-y     : 91.666667% !important;
  }

  .md\:hover\:translate-y-full:hover{
    --transform-translate-y     : 100% !important;
  }

  .md\:hover\:-translate-y-1:hover{
    --transform-translate-y     : -0.25rem !important;
  }

  .md\:hover\:-translate-y-2:hover{
    --transform-translate-y     : -0.5rem !important;
  }

  .md\:hover\:-translate-y-3:hover{
    --transform-translate-y     : -0.75rem !important;
  }

  .md\:hover\:-translate-y-4:hover{
    --transform-translate-y     : -1rem !important;
  }

  .md\:hover\:-translate-y-5:hover{
    --transform-translate-y     : -1.25rem !important;
  }

  .md\:hover\:-translate-y-6:hover{
    --transform-translate-y     : -1.5rem !important;
  }

  .md\:hover\:-translate-y-7:hover{
    --transform-translate-y     : -1.75rem !important;
  }

  .md\:hover\:-translate-y-8:hover{
    --transform-translate-y     : -2rem !important;
  }

  .md\:hover\:-translate-y-9:hover{
    --transform-translate-y     : -2.25rem !important;
  }

  .md\:hover\:-translate-y-10:hover{
    --transform-translate-y     : -2.5rem !important;
  }

  .md\:hover\:-translate-y-11:hover{
    --transform-translate-y     : -2.75rem !important;
  }

  .md\:hover\:-translate-y-12:hover{
    --transform-translate-y     : -3rem !important;
  }

  .md\:hover\:-translate-y-13:hover{
    --transform-translate-y     : -3.25rem !important;
  }

  .md\:hover\:-translate-y-14:hover{
    --transform-translate-y     : -3.5rem !important;
  }

  .md\:hover\:-translate-y-15:hover{
    --transform-translate-y     : -3.75rem !important;
  }

  .md\:hover\:-translate-y-16:hover{
    --transform-translate-y     : -4rem !important;
  }

  .md\:hover\:-translate-y-20:hover{
    --transform-translate-y     : -5rem !important;
  }

  .md\:hover\:-translate-y-24:hover{
    --transform-translate-y     : -6rem !important;
  }

  .md\:hover\:-translate-y-28:hover{
    --transform-translate-y     : -7rem !important;
  }

  .md\:hover\:-translate-y-32:hover{
    --transform-translate-y     : -8rem !important;
  }

  .md\:hover\:-translate-y-36:hover{
    --transform-translate-y     : -9rem !important;
  }

  .md\:hover\:-translate-y-40:hover{
    --transform-translate-y     : -10rem !important;
  }

  .md\:hover\:-translate-y-44:hover{
    --transform-translate-y     : -11rem !important;
  }

  .md\:hover\:-translate-y-48:hover{
    --transform-translate-y     : -12rem !important;
  }

  .md\:hover\:-translate-y-52:hover{
    --transform-translate-y     : -13rem !important;
  }

  .md\:hover\:-translate-y-56:hover{
    --transform-translate-y     : -14rem !important;
  }

  .md\:hover\:-translate-y-60:hover{
    --transform-translate-y     : -15rem !important;
  }

  .md\:hover\:-translate-y-64:hover{
    --transform-translate-y     : -16rem !important;
  }

  .md\:hover\:-translate-y-72:hover{
    --transform-translate-y     : -18rem !important;
  }

  .md\:hover\:-translate-y-80:hover{
    --transform-translate-y     : -20rem !important;
  }

  .md\:hover\:-translate-y-96:hover{
    --transform-translate-y     : -24rem !important;
  }

  .md\:hover\:-translate-y-px:hover{
    --transform-translate-y     : -1px !important;
  }

  .md\:hover\:-translate-y-0\.5:hover{
    --transform-translate-y     : -0.125rem !important;
  }

  .md\:hover\:-translate-y-1\.5:hover{
    --transform-translate-y     : -0.375rem !important;
  }

  .md\:hover\:-translate-y-2\.5:hover{
    --transform-translate-y     : -0.625rem !important;
  }

  .md\:hover\:-translate-y-3\.5:hover{
    --transform-translate-y     : -0.875rem !important;
  }

  .md\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y     : -50% !important;
  }

  .md\:hover\:-translate-y-1\/3:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:hover\:-translate-y-2\/3:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:hover\:-translate-y-1\/4:hover{
    --transform-translate-y     : -25% !important;
  }

  .md\:hover\:-translate-y-2\/4:hover{
    --transform-translate-y     : -50% !important;
  }

  .md\:hover\:-translate-y-3\/4:hover{
    --transform-translate-y     : -75% !important;
  }

  .md\:hover\:-translate-y-1\/5:hover{
    --transform-translate-y     : -20% !important;
  }

  .md\:hover\:-translate-y-2\/5:hover{
    --transform-translate-y     : -40% !important;
  }

  .md\:hover\:-translate-y-3\/5:hover{
    --transform-translate-y     : -60% !important;
  }

  .md\:hover\:-translate-y-4\/5:hover{
    --transform-translate-y     : -80% !important;
  }

  .md\:hover\:-translate-y-1\/6:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:hover\:-translate-y-2\/6:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:hover\:-translate-y-3\/6:hover{
    --transform-translate-y     : -50% !important;
  }

  .md\:hover\:-translate-y-4\/6:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:hover\:-translate-y-5\/6:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:hover\:-translate-y-1\/12:hover{
    --transform-translate-y     : -8.33333% !important;
  }

  .md\:hover\:-translate-y-2\/12:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:hover\:-translate-y-3\/12:hover{
    --transform-translate-y     : -25% !important;
  }

  .md\:hover\:-translate-y-4\/12:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:hover\:-translate-y-5\/12:hover{
    --transform-translate-y     : -41.66667% !important;
  }

  .md\:hover\:-translate-y-6\/12:hover{
    --transform-translate-y     : -50% !important;
  }

  .md\:hover\:-translate-y-7\/12:hover{
    --transform-translate-y     : -58.33333% !important;
  }

  .md\:hover\:-translate-y-8\/12:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:hover\:-translate-y-9\/12:hover{
    --transform-translate-y     : -75% !important;
  }

  .md\:hover\:-translate-y-10\/12:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:hover\:-translate-y-11\/12:hover{
    --transform-translate-y     : -91.66667% !important;
  }

  .md\:hover\:-translate-y-full:hover{
    --transform-translate-y     : -100% !important;
  }

  .md\:focus\:translate-x-0:focus{
    --transform-translate-x     : 0 !important;
  }

  .md\:focus\:translate-x-1:focus{
    --transform-translate-x     : 0.25rem !important;
  }

  .md\:focus\:translate-x-2:focus{
    --transform-translate-x     : 0.5rem !important;
  }

  .md\:focus\:translate-x-3:focus{
    --transform-translate-x     : 0.75rem !important;
  }

  .md\:focus\:translate-x-4:focus{
    --transform-translate-x     : 1rem !important;
  }

  .md\:focus\:translate-x-5:focus{
    --transform-translate-x     : 1.25rem !important;
  }

  .md\:focus\:translate-x-6:focus{
    --transform-translate-x     : 1.5rem !important;
  }

  .md\:focus\:translate-x-7:focus{
    --transform-translate-x     : 1.75rem !important;
  }

  .md\:focus\:translate-x-8:focus{
    --transform-translate-x     : 2rem !important;
  }

  .md\:focus\:translate-x-9:focus{
    --transform-translate-x     : 2.25rem !important;
  }

  .md\:focus\:translate-x-10:focus{
    --transform-translate-x     : 2.5rem !important;
  }

  .md\:focus\:translate-x-11:focus{
    --transform-translate-x     : 2.75rem !important;
  }

  .md\:focus\:translate-x-12:focus{
    --transform-translate-x     : 3rem !important;
  }

  .md\:focus\:translate-x-13:focus{
    --transform-translate-x     : 3.25rem !important;
  }

  .md\:focus\:translate-x-14:focus{
    --transform-translate-x     : 3.5rem !important;
  }

  .md\:focus\:translate-x-15:focus{
    --transform-translate-x     : 3.75rem !important;
  }

  .md\:focus\:translate-x-16:focus{
    --transform-translate-x     : 4rem !important;
  }

  .md\:focus\:translate-x-20:focus{
    --transform-translate-x     : 5rem !important;
  }

  .md\:focus\:translate-x-24:focus{
    --transform-translate-x     : 6rem !important;
  }

  .md\:focus\:translate-x-28:focus{
    --transform-translate-x     : 7rem !important;
  }

  .md\:focus\:translate-x-32:focus{
    --transform-translate-x     : 8rem !important;
  }

  .md\:focus\:translate-x-36:focus{
    --transform-translate-x     : 9rem !important;
  }

  .md\:focus\:translate-x-40:focus{
    --transform-translate-x     : 10rem !important;
  }

  .md\:focus\:translate-x-44:focus{
    --transform-translate-x     : 11rem !important;
  }

  .md\:focus\:translate-x-48:focus{
    --transform-translate-x     : 12rem !important;
  }

  .md\:focus\:translate-x-52:focus{
    --transform-translate-x     : 13rem !important;
  }

  .md\:focus\:translate-x-56:focus{
    --transform-translate-x     : 14rem !important;
  }

  .md\:focus\:translate-x-60:focus{
    --transform-translate-x     : 15rem !important;
  }

  .md\:focus\:translate-x-64:focus{
    --transform-translate-x     : 16rem !important;
  }

  .md\:focus\:translate-x-72:focus{
    --transform-translate-x     : 18rem !important;
  }

  .md\:focus\:translate-x-80:focus{
    --transform-translate-x     : 20rem !important;
  }

  .md\:focus\:translate-x-96:focus{
    --transform-translate-x     : 24rem !important;
  }

  .md\:focus\:translate-x-px:focus{
    --transform-translate-x     : 1px !important;
  }

  .md\:focus\:translate-x-0\.5:focus{
    --transform-translate-x     : 0.125rem !important;
  }

  .md\:focus\:translate-x-1\.5:focus{
    --transform-translate-x     : 0.375rem !important;
  }

  .md\:focus\:translate-x-2\.5:focus{
    --transform-translate-x     : 0.625rem !important;
  }

  .md\:focus\:translate-x-3\.5:focus{
    --transform-translate-x     : 0.875rem !important;
  }

  .md\:focus\:translate-x-1\/2:focus{
    --transform-translate-x     : 50% !important;
  }

  .md\:focus\:translate-x-1\/3:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:focus\:translate-x-2\/3:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:focus\:translate-x-1\/4:focus{
    --transform-translate-x     : 25% !important;
  }

  .md\:focus\:translate-x-2\/4:focus{
    --transform-translate-x     : 50% !important;
  }

  .md\:focus\:translate-x-3\/4:focus{
    --transform-translate-x     : 75% !important;
  }

  .md\:focus\:translate-x-1\/5:focus{
    --transform-translate-x     : 20% !important;
  }

  .md\:focus\:translate-x-2\/5:focus{
    --transform-translate-x     : 40% !important;
  }

  .md\:focus\:translate-x-3\/5:focus{
    --transform-translate-x     : 60% !important;
  }

  .md\:focus\:translate-x-4\/5:focus{
    --transform-translate-x     : 80% !important;
  }

  .md\:focus\:translate-x-1\/6:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:focus\:translate-x-2\/6:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:focus\:translate-x-3\/6:focus{
    --transform-translate-x     : 50% !important;
  }

  .md\:focus\:translate-x-4\/6:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:focus\:translate-x-5\/6:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:focus\:translate-x-1\/12:focus{
    --transform-translate-x     : 8.333333% !important;
  }

  .md\:focus\:translate-x-2\/12:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .md\:focus\:translate-x-3\/12:focus{
    --transform-translate-x     : 25% !important;
  }

  .md\:focus\:translate-x-4\/12:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .md\:focus\:translate-x-5\/12:focus{
    --transform-translate-x     : 41.666667% !important;
  }

  .md\:focus\:translate-x-6\/12:focus{
    --transform-translate-x     : 50% !important;
  }

  .md\:focus\:translate-x-7\/12:focus{
    --transform-translate-x     : 58.333333% !important;
  }

  .md\:focus\:translate-x-8\/12:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .md\:focus\:translate-x-9\/12:focus{
    --transform-translate-x     : 75% !important;
  }

  .md\:focus\:translate-x-10\/12:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .md\:focus\:translate-x-11\/12:focus{
    --transform-translate-x     : 91.666667% !important;
  }

  .md\:focus\:translate-x-full:focus{
    --transform-translate-x     : 100% !important;
  }

  .md\:focus\:-translate-x-1:focus{
    --transform-translate-x     : -0.25rem !important;
  }

  .md\:focus\:-translate-x-2:focus{
    --transform-translate-x     : -0.5rem !important;
  }

  .md\:focus\:-translate-x-3:focus{
    --transform-translate-x     : -0.75rem !important;
  }

  .md\:focus\:-translate-x-4:focus{
    --transform-translate-x     : -1rem !important;
  }

  .md\:focus\:-translate-x-5:focus{
    --transform-translate-x     : -1.25rem !important;
  }

  .md\:focus\:-translate-x-6:focus{
    --transform-translate-x     : -1.5rem !important;
  }

  .md\:focus\:-translate-x-7:focus{
    --transform-translate-x     : -1.75rem !important;
  }

  .md\:focus\:-translate-x-8:focus{
    --transform-translate-x     : -2rem !important;
  }

  .md\:focus\:-translate-x-9:focus{
    --transform-translate-x     : -2.25rem !important;
  }

  .md\:focus\:-translate-x-10:focus{
    --transform-translate-x     : -2.5rem !important;
  }

  .md\:focus\:-translate-x-11:focus{
    --transform-translate-x     : -2.75rem !important;
  }

  .md\:focus\:-translate-x-12:focus{
    --transform-translate-x     : -3rem !important;
  }

  .md\:focus\:-translate-x-13:focus{
    --transform-translate-x     : -3.25rem !important;
  }

  .md\:focus\:-translate-x-14:focus{
    --transform-translate-x     : -3.5rem !important;
  }

  .md\:focus\:-translate-x-15:focus{
    --transform-translate-x     : -3.75rem !important;
  }

  .md\:focus\:-translate-x-16:focus{
    --transform-translate-x     : -4rem !important;
  }

  .md\:focus\:-translate-x-20:focus{
    --transform-translate-x     : -5rem !important;
  }

  .md\:focus\:-translate-x-24:focus{
    --transform-translate-x     : -6rem !important;
  }

  .md\:focus\:-translate-x-28:focus{
    --transform-translate-x     : -7rem !important;
  }

  .md\:focus\:-translate-x-32:focus{
    --transform-translate-x     : -8rem !important;
  }

  .md\:focus\:-translate-x-36:focus{
    --transform-translate-x     : -9rem !important;
  }

  .md\:focus\:-translate-x-40:focus{
    --transform-translate-x     : -10rem !important;
  }

  .md\:focus\:-translate-x-44:focus{
    --transform-translate-x     : -11rem !important;
  }

  .md\:focus\:-translate-x-48:focus{
    --transform-translate-x     : -12rem !important;
  }

  .md\:focus\:-translate-x-52:focus{
    --transform-translate-x     : -13rem !important;
  }

  .md\:focus\:-translate-x-56:focus{
    --transform-translate-x     : -14rem !important;
  }

  .md\:focus\:-translate-x-60:focus{
    --transform-translate-x     : -15rem !important;
  }

  .md\:focus\:-translate-x-64:focus{
    --transform-translate-x     : -16rem !important;
  }

  .md\:focus\:-translate-x-72:focus{
    --transform-translate-x     : -18rem !important;
  }

  .md\:focus\:-translate-x-80:focus{
    --transform-translate-x     : -20rem !important;
  }

  .md\:focus\:-translate-x-96:focus{
    --transform-translate-x     : -24rem !important;
  }

  .md\:focus\:-translate-x-px:focus{
    --transform-translate-x     : -1px !important;
  }

  .md\:focus\:-translate-x-0\.5:focus{
    --transform-translate-x     : -0.125rem !important;
  }

  .md\:focus\:-translate-x-1\.5:focus{
    --transform-translate-x     : -0.375rem !important;
  }

  .md\:focus\:-translate-x-2\.5:focus{
    --transform-translate-x     : -0.625rem !important;
  }

  .md\:focus\:-translate-x-3\.5:focus{
    --transform-translate-x     : -0.875rem !important;
  }

  .md\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x     : -50% !important;
  }

  .md\:focus\:-translate-x-1\/3:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:focus\:-translate-x-2\/3:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:focus\:-translate-x-1\/4:focus{
    --transform-translate-x     : -25% !important;
  }

  .md\:focus\:-translate-x-2\/4:focus{
    --transform-translate-x     : -50% !important;
  }

  .md\:focus\:-translate-x-3\/4:focus{
    --transform-translate-x     : -75% !important;
  }

  .md\:focus\:-translate-x-1\/5:focus{
    --transform-translate-x     : -20% !important;
  }

  .md\:focus\:-translate-x-2\/5:focus{
    --transform-translate-x     : -40% !important;
  }

  .md\:focus\:-translate-x-3\/5:focus{
    --transform-translate-x     : -60% !important;
  }

  .md\:focus\:-translate-x-4\/5:focus{
    --transform-translate-x     : -80% !important;
  }

  .md\:focus\:-translate-x-1\/6:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:focus\:-translate-x-2\/6:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:focus\:-translate-x-3\/6:focus{
    --transform-translate-x     : -50% !important;
  }

  .md\:focus\:-translate-x-4\/6:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:focus\:-translate-x-5\/6:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:focus\:-translate-x-1\/12:focus{
    --transform-translate-x     : -8.33333% !important;
  }

  .md\:focus\:-translate-x-2\/12:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .md\:focus\:-translate-x-3\/12:focus{
    --transform-translate-x     : -25% !important;
  }

  .md\:focus\:-translate-x-4\/12:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .md\:focus\:-translate-x-5\/12:focus{
    --transform-translate-x     : -41.66667% !important;
  }

  .md\:focus\:-translate-x-6\/12:focus{
    --transform-translate-x     : -50% !important;
  }

  .md\:focus\:-translate-x-7\/12:focus{
    --transform-translate-x     : -58.33333% !important;
  }

  .md\:focus\:-translate-x-8\/12:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .md\:focus\:-translate-x-9\/12:focus{
    --transform-translate-x     : -75% !important;
  }

  .md\:focus\:-translate-x-10\/12:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .md\:focus\:-translate-x-11\/12:focus{
    --transform-translate-x     : -91.66667% !important;
  }

  .md\:focus\:-translate-x-full:focus{
    --transform-translate-x     : -100% !important;
  }

  .md\:focus\:translate-y-0:focus{
    --transform-translate-y     : 0 !important;
  }

  .md\:focus\:translate-y-1:focus{
    --transform-translate-y     : 0.25rem !important;
  }

  .md\:focus\:translate-y-2:focus{
    --transform-translate-y     : 0.5rem !important;
  }

  .md\:focus\:translate-y-3:focus{
    --transform-translate-y     : 0.75rem !important;
  }

  .md\:focus\:translate-y-4:focus{
    --transform-translate-y     : 1rem !important;
  }

  .md\:focus\:translate-y-5:focus{
    --transform-translate-y     : 1.25rem !important;
  }

  .md\:focus\:translate-y-6:focus{
    --transform-translate-y     : 1.5rem !important;
  }

  .md\:focus\:translate-y-7:focus{
    --transform-translate-y     : 1.75rem !important;
  }

  .md\:focus\:translate-y-8:focus{
    --transform-translate-y     : 2rem !important;
  }

  .md\:focus\:translate-y-9:focus{
    --transform-translate-y     : 2.25rem !important;
  }

  .md\:focus\:translate-y-10:focus{
    --transform-translate-y     : 2.5rem !important;
  }

  .md\:focus\:translate-y-11:focus{
    --transform-translate-y     : 2.75rem !important;
  }

  .md\:focus\:translate-y-12:focus{
    --transform-translate-y     : 3rem !important;
  }

  .md\:focus\:translate-y-13:focus{
    --transform-translate-y     : 3.25rem !important;
  }

  .md\:focus\:translate-y-14:focus{
    --transform-translate-y     : 3.5rem !important;
  }

  .md\:focus\:translate-y-15:focus{
    --transform-translate-y     : 3.75rem !important;
  }

  .md\:focus\:translate-y-16:focus{
    --transform-translate-y     : 4rem !important;
  }

  .md\:focus\:translate-y-20:focus{
    --transform-translate-y     : 5rem !important;
  }

  .md\:focus\:translate-y-24:focus{
    --transform-translate-y     : 6rem !important;
  }

  .md\:focus\:translate-y-28:focus{
    --transform-translate-y     : 7rem !important;
  }

  .md\:focus\:translate-y-32:focus{
    --transform-translate-y     : 8rem !important;
  }

  .md\:focus\:translate-y-36:focus{
    --transform-translate-y     : 9rem !important;
  }

  .md\:focus\:translate-y-40:focus{
    --transform-translate-y     : 10rem !important;
  }

  .md\:focus\:translate-y-44:focus{
    --transform-translate-y     : 11rem !important;
  }

  .md\:focus\:translate-y-48:focus{
    --transform-translate-y     : 12rem !important;
  }

  .md\:focus\:translate-y-52:focus{
    --transform-translate-y     : 13rem !important;
  }

  .md\:focus\:translate-y-56:focus{
    --transform-translate-y     : 14rem !important;
  }

  .md\:focus\:translate-y-60:focus{
    --transform-translate-y     : 15rem !important;
  }

  .md\:focus\:translate-y-64:focus{
    --transform-translate-y     : 16rem !important;
  }

  .md\:focus\:translate-y-72:focus{
    --transform-translate-y     : 18rem !important;
  }

  .md\:focus\:translate-y-80:focus{
    --transform-translate-y     : 20rem !important;
  }

  .md\:focus\:translate-y-96:focus{
    --transform-translate-y     : 24rem !important;
  }

  .md\:focus\:translate-y-px:focus{
    --transform-translate-y     : 1px !important;
  }

  .md\:focus\:translate-y-0\.5:focus{
    --transform-translate-y     : 0.125rem !important;
  }

  .md\:focus\:translate-y-1\.5:focus{
    --transform-translate-y     : 0.375rem !important;
  }

  .md\:focus\:translate-y-2\.5:focus{
    --transform-translate-y     : 0.625rem !important;
  }

  .md\:focus\:translate-y-3\.5:focus{
    --transform-translate-y     : 0.875rem !important;
  }

  .md\:focus\:translate-y-1\/2:focus{
    --transform-translate-y     : 50% !important;
  }

  .md\:focus\:translate-y-1\/3:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:focus\:translate-y-2\/3:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:focus\:translate-y-1\/4:focus{
    --transform-translate-y     : 25% !important;
  }

  .md\:focus\:translate-y-2\/4:focus{
    --transform-translate-y     : 50% !important;
  }

  .md\:focus\:translate-y-3\/4:focus{
    --transform-translate-y     : 75% !important;
  }

  .md\:focus\:translate-y-1\/5:focus{
    --transform-translate-y     : 20% !important;
  }

  .md\:focus\:translate-y-2\/5:focus{
    --transform-translate-y     : 40% !important;
  }

  .md\:focus\:translate-y-3\/5:focus{
    --transform-translate-y     : 60% !important;
  }

  .md\:focus\:translate-y-4\/5:focus{
    --transform-translate-y     : 80% !important;
  }

  .md\:focus\:translate-y-1\/6:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:focus\:translate-y-2\/6:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:focus\:translate-y-3\/6:focus{
    --transform-translate-y     : 50% !important;
  }

  .md\:focus\:translate-y-4\/6:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:focus\:translate-y-5\/6:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:focus\:translate-y-1\/12:focus{
    --transform-translate-y     : 8.333333% !important;
  }

  .md\:focus\:translate-y-2\/12:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .md\:focus\:translate-y-3\/12:focus{
    --transform-translate-y     : 25% !important;
  }

  .md\:focus\:translate-y-4\/12:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .md\:focus\:translate-y-5\/12:focus{
    --transform-translate-y     : 41.666667% !important;
  }

  .md\:focus\:translate-y-6\/12:focus{
    --transform-translate-y     : 50% !important;
  }

  .md\:focus\:translate-y-7\/12:focus{
    --transform-translate-y     : 58.333333% !important;
  }

  .md\:focus\:translate-y-8\/12:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .md\:focus\:translate-y-9\/12:focus{
    --transform-translate-y     : 75% !important;
  }

  .md\:focus\:translate-y-10\/12:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .md\:focus\:translate-y-11\/12:focus{
    --transform-translate-y     : 91.666667% !important;
  }

  .md\:focus\:translate-y-full:focus{
    --transform-translate-y     : 100% !important;
  }

  .md\:focus\:-translate-y-1:focus{
    --transform-translate-y     : -0.25rem !important;
  }

  .md\:focus\:-translate-y-2:focus{
    --transform-translate-y     : -0.5rem !important;
  }

  .md\:focus\:-translate-y-3:focus{
    --transform-translate-y     : -0.75rem !important;
  }

  .md\:focus\:-translate-y-4:focus{
    --transform-translate-y     : -1rem !important;
  }

  .md\:focus\:-translate-y-5:focus{
    --transform-translate-y     : -1.25rem !important;
  }

  .md\:focus\:-translate-y-6:focus{
    --transform-translate-y     : -1.5rem !important;
  }

  .md\:focus\:-translate-y-7:focus{
    --transform-translate-y     : -1.75rem !important;
  }

  .md\:focus\:-translate-y-8:focus{
    --transform-translate-y     : -2rem !important;
  }

  .md\:focus\:-translate-y-9:focus{
    --transform-translate-y     : -2.25rem !important;
  }

  .md\:focus\:-translate-y-10:focus{
    --transform-translate-y     : -2.5rem !important;
  }

  .md\:focus\:-translate-y-11:focus{
    --transform-translate-y     : -2.75rem !important;
  }

  .md\:focus\:-translate-y-12:focus{
    --transform-translate-y     : -3rem !important;
  }

  .md\:focus\:-translate-y-13:focus{
    --transform-translate-y     : -3.25rem !important;
  }

  .md\:focus\:-translate-y-14:focus{
    --transform-translate-y     : -3.5rem !important;
  }

  .md\:focus\:-translate-y-15:focus{
    --transform-translate-y     : -3.75rem !important;
  }

  .md\:focus\:-translate-y-16:focus{
    --transform-translate-y     : -4rem !important;
  }

  .md\:focus\:-translate-y-20:focus{
    --transform-translate-y     : -5rem !important;
  }

  .md\:focus\:-translate-y-24:focus{
    --transform-translate-y     : -6rem !important;
  }

  .md\:focus\:-translate-y-28:focus{
    --transform-translate-y     : -7rem !important;
  }

  .md\:focus\:-translate-y-32:focus{
    --transform-translate-y     : -8rem !important;
  }

  .md\:focus\:-translate-y-36:focus{
    --transform-translate-y     : -9rem !important;
  }

  .md\:focus\:-translate-y-40:focus{
    --transform-translate-y     : -10rem !important;
  }

  .md\:focus\:-translate-y-44:focus{
    --transform-translate-y     : -11rem !important;
  }

  .md\:focus\:-translate-y-48:focus{
    --transform-translate-y     : -12rem !important;
  }

  .md\:focus\:-translate-y-52:focus{
    --transform-translate-y     : -13rem !important;
  }

  .md\:focus\:-translate-y-56:focus{
    --transform-translate-y     : -14rem !important;
  }

  .md\:focus\:-translate-y-60:focus{
    --transform-translate-y     : -15rem !important;
  }

  .md\:focus\:-translate-y-64:focus{
    --transform-translate-y     : -16rem !important;
  }

  .md\:focus\:-translate-y-72:focus{
    --transform-translate-y     : -18rem !important;
  }

  .md\:focus\:-translate-y-80:focus{
    --transform-translate-y     : -20rem !important;
  }

  .md\:focus\:-translate-y-96:focus{
    --transform-translate-y     : -24rem !important;
  }

  .md\:focus\:-translate-y-px:focus{
    --transform-translate-y     : -1px !important;
  }

  .md\:focus\:-translate-y-0\.5:focus{
    --transform-translate-y     : -0.125rem !important;
  }

  .md\:focus\:-translate-y-1\.5:focus{
    --transform-translate-y     : -0.375rem !important;
  }

  .md\:focus\:-translate-y-2\.5:focus{
    --transform-translate-y     : -0.625rem !important;
  }

  .md\:focus\:-translate-y-3\.5:focus{
    --transform-translate-y     : -0.875rem !important;
  }

  .md\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y     : -50% !important;
  }

  .md\:focus\:-translate-y-1\/3:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:focus\:-translate-y-2\/3:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:focus\:-translate-y-1\/4:focus{
    --transform-translate-y     : -25% !important;
  }

  .md\:focus\:-translate-y-2\/4:focus{
    --transform-translate-y     : -50% !important;
  }

  .md\:focus\:-translate-y-3\/4:focus{
    --transform-translate-y     : -75% !important;
  }

  .md\:focus\:-translate-y-1\/5:focus{
    --transform-translate-y     : -20% !important;
  }

  .md\:focus\:-translate-y-2\/5:focus{
    --transform-translate-y     : -40% !important;
  }

  .md\:focus\:-translate-y-3\/5:focus{
    --transform-translate-y     : -60% !important;
  }

  .md\:focus\:-translate-y-4\/5:focus{
    --transform-translate-y     : -80% !important;
  }

  .md\:focus\:-translate-y-1\/6:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:focus\:-translate-y-2\/6:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:focus\:-translate-y-3\/6:focus{
    --transform-translate-y     : -50% !important;
  }

  .md\:focus\:-translate-y-4\/6:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:focus\:-translate-y-5\/6:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:focus\:-translate-y-1\/12:focus{
    --transform-translate-y     : -8.33333% !important;
  }

  .md\:focus\:-translate-y-2\/12:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .md\:focus\:-translate-y-3\/12:focus{
    --transform-translate-y     : -25% !important;
  }

  .md\:focus\:-translate-y-4\/12:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .md\:focus\:-translate-y-5\/12:focus{
    --transform-translate-y     : -41.66667% !important;
  }

  .md\:focus\:-translate-y-6\/12:focus{
    --transform-translate-y     : -50% !important;
  }

  .md\:focus\:-translate-y-7\/12:focus{
    --transform-translate-y     : -58.33333% !important;
  }

  .md\:focus\:-translate-y-8\/12:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .md\:focus\:-translate-y-9\/12:focus{
    --transform-translate-y     : -75% !important;
  }

  .md\:focus\:-translate-y-10\/12:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .md\:focus\:-translate-y-11\/12:focus{
    --transform-translate-y     : -91.66667% !important;
  }

  .md\:focus\:-translate-y-full:focus{
    --transform-translate-y     : -100% !important;
  }

  .md\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .md\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .md\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .md\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .md\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .md\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .md\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .md\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .md\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .md\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .md\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .md\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .md\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .md\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .group:hover .md\:group-hover\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .group:hover .md\:group-hover\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .group:hover .md\:group-hover\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .group:hover .md\:group-hover\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .group:hover .md\:group-hover\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .group:hover .md\:group-hover\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .group:hover .md\:group-hover\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .group:hover .md\:group-hover\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .group:hover .md\:group-hover\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .group:hover .md\:group-hover\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .group:hover .md\:group-hover\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .group:hover .md\:group-hover\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .group:hover .md\:group-hover\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .group:hover .md\:group-hover\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .md\:hover\:skew-x-0:hover{
    --transform-skew-x     : 0 !important;
  }

  .md\:hover\:skew-x-3:hover{
    --transform-skew-x     : 3deg !important;
  }

  .md\:hover\:skew-x-6:hover{
    --transform-skew-x     : 6deg !important;
  }

  .md\:hover\:skew-x-12:hover{
    --transform-skew-x     : 12deg !important;
  }

  .md\:hover\:-skew-x-12:hover{
    --transform-skew-x     : -12deg !important;
  }

  .md\:hover\:-skew-x-6:hover{
    --transform-skew-x     : -6deg !important;
  }

  .md\:hover\:-skew-x-3:hover{
    --transform-skew-x     : -3deg !important;
  }

  .md\:hover\:skew-y-0:hover{
    --transform-skew-y     : 0 !important;
  }

  .md\:hover\:skew-y-3:hover{
    --transform-skew-y     : 3deg !important;
  }

  .md\:hover\:skew-y-6:hover{
    --transform-skew-y     : 6deg !important;
  }

  .md\:hover\:skew-y-12:hover{
    --transform-skew-y     : 12deg !important;
  }

  .md\:hover\:-skew-y-12:hover{
    --transform-skew-y     : -12deg !important;
  }

  .md\:hover\:-skew-y-6:hover{
    --transform-skew-y     : -6deg !important;
  }

  .md\:hover\:-skew-y-3:hover{
    --transform-skew-y     : -3deg !important;
  }

  .md\:focus\:skew-x-0:focus{
    --transform-skew-x     : 0 !important;
  }

  .md\:focus\:skew-x-3:focus{
    --transform-skew-x     : 3deg !important;
  }

  .md\:focus\:skew-x-6:focus{
    --transform-skew-x     : 6deg !important;
  }

  .md\:focus\:skew-x-12:focus{
    --transform-skew-x     : 12deg !important;
  }

  .md\:focus\:-skew-x-12:focus{
    --transform-skew-x     : -12deg !important;
  }

  .md\:focus\:-skew-x-6:focus{
    --transform-skew-x     : -6deg !important;
  }

  .md\:focus\:-skew-x-3:focus{
    --transform-skew-x     : -3deg !important;
  }

  .md\:focus\:skew-y-0:focus{
    --transform-skew-y     : 0 !important;
  }

  .md\:focus\:skew-y-3:focus{
    --transform-skew-y     : 3deg !important;
  }

  .md\:focus\:skew-y-6:focus{
    --transform-skew-y     : 6deg !important;
  }

  .md\:focus\:skew-y-12:focus{
    --transform-skew-y     : 12deg !important;
  }

  .md\:focus\:-skew-y-12:focus{
    --transform-skew-y     : -12deg !important;
  }

  .md\:focus\:-skew-y-6:focus{
    --transform-skew-y     : -6deg !important;
  }

  .md\:focus\:-skew-y-3:focus{
    --transform-skew-y     : -3deg !important;
  }

  .md\:transition-none{
    transition-property     : none !important;
  }

  .md\:transition-all{
    transition-property     : all !important;
  }

  .md\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .md\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .md\:transition-opacity{
    transition-property     : opacity !important;
  }

  .md\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .md\:transition-transform{
    transition-property     : transform !important;
  }

  .group:hover .md\:group-hover\:transition-none{
    transition-property     : none !important;
  }

  .group:hover .md\:group-hover\:transition-all{
    transition-property     : all !important;
  }

  .group:hover .md\:group-hover\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .group:hover .md\:group-hover\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .group:hover .md\:group-hover\:transition-opacity{
    transition-property     : opacity !important;
  }

  .group:hover .md\:group-hover\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .group:hover .md\:group-hover\:transition-transform{
    transition-property     : transform !important;
  }

  .md\:hover\:transition-none:hover{
    transition-property     : none !important;
  }

  .md\:hover\:transition-all:hover{
    transition-property     : all !important;
  }

  .md\:hover\:transition:hover{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .md\:hover\:transition-colors:hover{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .md\:hover\:transition-opacity:hover{
    transition-property     : opacity !important;
  }

  .md\:hover\:transition-shadow:hover{
    transition-property     : box-shadow !important;
  }

  .md\:hover\:transition-transform:hover{
    transition-property     : transform !important;
  }

  .md\:focus\:transition-none:focus{
    transition-property     : none !important;
  }

  .md\:focus\:transition-all:focus{
    transition-property     : all !important;
  }

  .md\:focus\:transition:focus{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .md\:focus\:transition-colors:focus{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .md\:focus\:transition-opacity:focus{
    transition-property     : opacity !important;
  }

  .md\:focus\:transition-shadow:focus{
    transition-property     : box-shadow !important;
  }

  .md\:focus\:transition-transform:focus{
    transition-property     : transform !important;
  }

  .md\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .md\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .md\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .md\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .group:hover .md\:group-hover\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .group:hover .md\:group-hover\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .group:hover .md\:group-hover\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .group:hover .md\:group-hover\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .md\:hover\:ease-linear:hover{
    transition-timing-function     : linear !important;
  }

  .md\:hover\:ease-in:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .md\:hover\:ease-out:hover{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .md\:hover\:ease-in-out:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .md\:focus\:ease-linear:focus{
    transition-timing-function     : linear !important;
  }

  .md\:focus\:ease-in:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .md\:focus\:ease-out:focus{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .md\:focus\:ease-in-out:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .md\:duration-75{
    transition-duration     : 75ms !important;
  }

  .md\:duration-100{
    transition-duration     : 100ms !important;
  }

  .md\:duration-150{
    transition-duration     : 150ms !important;
  }

  .md\:duration-200{
    transition-duration     : 200ms !important;
  }

  .md\:duration-300{
    transition-duration     : 300ms !important;
  }

  .md\:duration-500{
    transition-duration     : 500ms !important;
  }

  .md\:duration-700{
    transition-duration     : 700ms !important;
  }

  .md\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .group:hover .md\:group-hover\:duration-75{
    transition-duration     : 75ms !important;
  }

  .group:hover .md\:group-hover\:duration-100{
    transition-duration     : 100ms !important;
  }

  .group:hover .md\:group-hover\:duration-150{
    transition-duration     : 150ms !important;
  }

  .group:hover .md\:group-hover\:duration-200{
    transition-duration     : 200ms !important;
  }

  .group:hover .md\:group-hover\:duration-300{
    transition-duration     : 300ms !important;
  }

  .group:hover .md\:group-hover\:duration-500{
    transition-duration     : 500ms !important;
  }

  .group:hover .md\:group-hover\:duration-700{
    transition-duration     : 700ms !important;
  }

  .group:hover .md\:group-hover\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .md\:hover\:duration-75:hover{
    transition-duration     : 75ms !important;
  }

  .md\:hover\:duration-100:hover{
    transition-duration     : 100ms !important;
  }

  .md\:hover\:duration-150:hover{
    transition-duration     : 150ms !important;
  }

  .md\:hover\:duration-200:hover{
    transition-duration     : 200ms !important;
  }

  .md\:hover\:duration-300:hover{
    transition-duration     : 300ms !important;
  }

  .md\:hover\:duration-500:hover{
    transition-duration     : 500ms !important;
  }

  .md\:hover\:duration-700:hover{
    transition-duration     : 700ms !important;
  }

  .md\:hover\:duration-1000:hover{
    transition-duration     : 1000ms !important;
  }

  .md\:focus\:duration-75:focus{
    transition-duration     : 75ms !important;
  }

  .md\:focus\:duration-100:focus{
    transition-duration     : 100ms !important;
  }

  .md\:focus\:duration-150:focus{
    transition-duration     : 150ms !important;
  }

  .md\:focus\:duration-200:focus{
    transition-duration     : 200ms !important;
  }

  .md\:focus\:duration-300:focus{
    transition-duration     : 300ms !important;
  }

  .md\:focus\:duration-500:focus{
    transition-duration     : 500ms !important;
  }

  .md\:focus\:duration-700:focus{
    transition-duration     : 700ms !important;
  }

  .md\:focus\:duration-1000:focus{
    transition-duration     : 1000ms !important;
  }

  .md\:delay-75{
    transition-delay     : 75ms !important;
  }

  .md\:delay-100{
    transition-delay     : 100ms !important;
  }

  .md\:delay-150{
    transition-delay     : 150ms !important;
  }

  .md\:delay-200{
    transition-delay     : 200ms !important;
  }

  .md\:delay-300{
    transition-delay     : 300ms !important;
  }

  .md\:delay-500{
    transition-delay     : 500ms !important;
  }

  .md\:delay-700{
    transition-delay     : 700ms !important;
  }

  .md\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .group:hover .md\:group-hover\:delay-75{
    transition-delay     : 75ms !important;
  }

  .group:hover .md\:group-hover\:delay-100{
    transition-delay     : 100ms !important;
  }

  .group:hover .md\:group-hover\:delay-150{
    transition-delay     : 150ms !important;
  }

  .group:hover .md\:group-hover\:delay-200{
    transition-delay     : 200ms !important;
  }

  .group:hover .md\:group-hover\:delay-300{
    transition-delay     : 300ms !important;
  }

  .group:hover .md\:group-hover\:delay-500{
    transition-delay     : 500ms !important;
  }

  .group:hover .md\:group-hover\:delay-700{
    transition-delay     : 700ms !important;
  }

  .group:hover .md\:group-hover\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .md\:hover\:delay-75:hover{
    transition-delay     : 75ms !important;
  }

  .md\:hover\:delay-100:hover{
    transition-delay     : 100ms !important;
  }

  .md\:hover\:delay-150:hover{
    transition-delay     : 150ms !important;
  }

  .md\:hover\:delay-200:hover{
    transition-delay     : 200ms !important;
  }

  .md\:hover\:delay-300:hover{
    transition-delay     : 300ms !important;
  }

  .md\:hover\:delay-500:hover{
    transition-delay     : 500ms !important;
  }

  .md\:hover\:delay-700:hover{
    transition-delay     : 700ms !important;
  }

  .md\:hover\:delay-1000:hover{
    transition-delay     : 1000ms !important;
  }

  .md\:focus\:delay-75:focus{
    transition-delay     : 75ms !important;
  }

  .md\:focus\:delay-100:focus{
    transition-delay     : 100ms !important;
  }

  .md\:focus\:delay-150:focus{
    transition-delay     : 150ms !important;
  }

  .md\:focus\:delay-200:focus{
    transition-delay     : 200ms !important;
  }

  .md\:focus\:delay-300:focus{
    transition-delay     : 300ms !important;
  }

  .md\:focus\:delay-500:focus{
    transition-delay     : 500ms !important;
  }

  .md\:focus\:delay-700:focus{
    transition-delay     : 700ms !important;
  }

  .md\:focus\:delay-1000:focus{
    transition-delay     : 1000ms !important;
  }

  .md\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .md\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .md\: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;
  }

  .md\: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;
  }

  .md\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .group:hover .md\:group-hover\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .group:hover .md\:group-hover\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\: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;
  }

  .group:hover .md\:group-hover\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .md\:hover\:animate-none:hover{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .md\:hover\:animate-spin:hover{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .md\:hover\:animate-ping:hover{
    -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;
  }

  .md\:hover\:animate-pulse:hover{
    -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;
  }

  .md\:hover\:animate-bounce:hover{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .md\:focus\:animate-none:focus{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .md\:focus\:animate-spin:focus{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .md\:focus\:animate-ping:focus{
    -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;
  }

  .md\:focus\:animate-pulse:focus{
    -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;
  }

  .md\:focus\:animate-bounce:focus{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }
}

@media (min-width: 1024px){
  .lg\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .lg\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .lg\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .lg\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .lg\:container{
      max-width     : 1280px;
    }
  }

  .group:hover .lg\:group-hover\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .lg\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .lg\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .lg\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .lg\:container{
      max-width     : 1280px;
    }
  }

  .lg\:hover\:container:hover{
    width     : 100%;
  }

  @media (min-width: 640px){
    .lg\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .lg\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .lg\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .lg\:container{
      max-width     : 1280px;
    }
  }

  .lg\:focus\:container:focus{
    width     : 100%;
  }

  @media (min-width: 640px){
    .lg\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .lg\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .lg\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .lg\:container{
      max-width     : 1280px;
    }
  }

  .lg\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .lg\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .lg\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .lg\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .lg\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .lg\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .lg\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .lg\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .lg\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .lg\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .lg\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .lg\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .lg\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .lg\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .lg\:prose code::before{
    content     : "`";
  }

  .lg\:prose code::after{
    content     : "`";
  }

  .lg\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .lg\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .lg\:prose pre code::before{
    content     : "";
  }

  .lg\:prose pre code::after{
    content     : "";
  }

  .lg\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .lg\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .lg\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .lg\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .lg\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .lg\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:prose h2 code{
    font-size     : 0.875em;
  }

  .lg\:prose h3 code{
    font-size     : 0.9em;
  }

  .lg\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:prose ol > li:before{
    left     : 0;
  }

  .lg\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:prose ul ul, .lg\:prose ul ol, .lg\:prose ol ul, .lg\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:prose hr + *{
    margin-top     : 0;
  }

  .lg\:prose h2 + *{
    margin-top     : 0;
  }

  .lg\:prose h3 + *{
    margin-top     : 0;
  }

  .lg\:prose h4 + *{
    margin-top     : 0;
  }

  .lg\:prose thead th:first-child{
    padding-left     : 0;
  }

  .lg\:prose thead th:last-child{
    padding-right     : 0;
  }

  .lg\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:prose > :first-child{
    margin-top     : 0;
  }

  .lg\:prose > :last-child{
    margin-bottom     : 0;
  }

  .lg\:prose h1, .lg\:prose h2, .lg\:prose h3, .lg\:prose h4{
    color     : #161e2e;
  }

  .lg\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .lg\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .lg\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .lg\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .lg\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .lg\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .lg\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .lg\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .lg\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .lg\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .lg\:prose-sm ol > li:before{
    left     : 0;
  }

  .lg\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .lg\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .lg\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:prose-sm ul ul, .lg\:prose-sm ul ol, .lg\:prose-sm ol ul, .lg\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .lg\:prose-sm hr + *{
    margin-top     : 0;
  }

  .lg\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .lg\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .lg\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .lg\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .lg\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .lg\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .lg\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .lg\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .lg\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .lg\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .lg\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .lg\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .lg\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .lg\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .lg\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .lg\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .lg\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .lg\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .lg\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:prose-lg ol > li:before{
    left     : 0;
  }

  .lg\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .lg\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .lg\:prose-lg hr + *{
    margin-top     : 0;
  }

  .lg\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .lg\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .lg\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .lg\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .lg\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .lg\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .lg\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .lg\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .lg\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .lg\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .lg\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .lg\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .lg\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .lg\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .lg\:prose-xl code{
    font-size     : 0.9em;
  }

  .lg\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .lg\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .lg\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .lg\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .lg\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .lg\:prose-xl ol > li:before{
    left     : 0;
  }

  .lg\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .lg\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .lg\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:prose-xl ul ul, .lg\:prose-xl ul ol, .lg\:prose-xl ol ul, .lg\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .lg\:prose-xl hr + *{
    margin-top     : 0;
  }

  .lg\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .lg\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .lg\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .lg\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .lg\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .lg\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .lg\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .lg\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .lg\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .lg\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .lg\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .lg\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .lg\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .lg\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .lg\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .lg\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .lg\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .lg\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .lg\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:prose-2xl ol > li:before{
    left     : 0;
  }

  .lg\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .lg\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .lg\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:prose-2xl ul ul, .lg\:prose-2xl ul ol, .lg\:prose-2xl ol ul, .lg\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .lg\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .lg\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .lg\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .lg\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .lg\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .lg\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .lg\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .lg\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .group:hover .lg\:group-hover\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .group:hover .lg\:group-hover\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .group:hover .lg\:group-hover\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .group:hover .lg\:group-hover\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .group:hover .lg\:group-hover\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .group:hover .lg\:group-hover\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .group:hover .lg\:group-hover\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .lg\:group-hover\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .group:hover .lg\:group-hover\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .group:hover .lg\:group-hover\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .group:hover .lg\:group-hover\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .lg\:group-hover\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .group:hover .lg\:group-hover\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .lg\:group-hover\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .group:hover .lg\:group-hover\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .group:hover .lg\:group-hover\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .group:hover .lg\:group-hover\:prose code::before{
    content     : "`";
  }

  .group:hover .lg\:group-hover\:prose code::after{
    content     : "`";
  }

  .group:hover .lg\:group-hover\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .group:hover .lg\:group-hover\:prose pre code::before{
    content     : "";
  }

  .group:hover .lg\:group-hover\:prose pre code::after{
    content     : "";
  }

  .group:hover .lg\:group-hover\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .group:hover .lg\:group-hover\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .group:hover .lg\:group-hover\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .lg\:group-hover\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .group:hover .lg\:group-hover\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .group:hover .lg\:group-hover\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .lg\:group-hover\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .group:hover .lg\:group-hover\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose h2 code{
    font-size     : 0.875em;
  }

  .group:hover .lg\:group-hover\:prose h3 code{
    font-size     : 0.9em;
  }

  .group:hover .lg\:group-hover\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .lg\:group-hover\:prose ol > li:before{
    left     : 0;
  }

  .group:hover .lg\:group-hover\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .lg\:group-hover\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .lg\:group-hover\:prose ul ul, .group:hover .lg\:group-hover\:prose ul ol, .group:hover .lg\:group-hover\:prose ol ul, .group:hover .lg\:group-hover\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .lg\:group-hover\:prose hr + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose h2 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose h3 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose h4 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose > :first-child{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose h1, .group:hover .lg\:group-hover\:prose h2, .group:hover .lg\:group-hover\:prose h3, .group:hover .lg\:group-hover\:prose h4{
    color     : #161e2e;
  }

  .group:hover .lg\:group-hover\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .group:hover .lg\:group-hover\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .group:hover .lg\:group-hover\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .group:hover .lg\:group-hover\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .group:hover .lg\:group-hover\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .lg\:group-hover\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .group:hover .lg\:group-hover\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .lg\:group-hover\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .lg\:group-hover\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .lg\:group-hover\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .group:hover .lg\:group-hover\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .group:hover .lg\:group-hover\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .group:hover .lg\:group-hover\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .lg\:group-hover\:prose-sm ol > li:before{
    left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .lg\:group-hover\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .group:hover .lg\:group-hover\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .lg\:group-hover\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .lg\:group-hover\:prose-sm ul ul, .group:hover .lg\:group-hover\:prose-sm ul ol, .group:hover .lg\:group-hover\:prose-sm ol ul, .group:hover .lg\:group-hover\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .lg\:group-hover\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .group:hover .lg\:group-hover\:prose-sm hr + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .group:hover .lg\:group-hover\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .group:hover .lg\:group-hover\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .group:hover .lg\:group-hover\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .group:hover .lg\:group-hover\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .group:hover .lg\:group-hover\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .lg\:group-hover\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .lg\:group-hover\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .lg\:group-hover\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .lg\:group-hover\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .lg\:group-hover\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .group:hover .lg\:group-hover\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .group:hover .lg\:group-hover\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .group:hover .lg\:group-hover\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-lg ol > li:before{
    left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .group:hover .lg\:group-hover\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-lg ul ul, .group:hover .lg\:group-hover\:prose-lg ul ol, .group:hover .lg\:group-hover\:prose-lg ol ul, .group:hover .lg\:group-hover\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .group:hover .lg\:group-hover\:prose-lg hr + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .group:hover .lg\:group-hover\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .lg\:group-hover\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .lg\:group-hover\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .group:hover .lg\:group-hover\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .group:hover .lg\:group-hover\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .group:hover .lg\:group-hover\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .lg\:group-hover\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .group:hover .lg\:group-hover\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .lg\:group-hover\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-xl code{
    font-size     : 0.9em;
  }

  .group:hover .lg\:group-hover\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .group:hover .lg\:group-hover\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .group:hover .lg\:group-hover\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .group:hover .lg\:group-hover\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .group:hover .lg\:group-hover\:prose-xl ol > li:before{
    left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .group:hover .lg\:group-hover\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .group:hover .lg\:group-hover\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .lg\:group-hover\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .lg\:group-hover\:prose-xl ul ul, .group:hover .lg\:group-hover\:prose-xl ul ol, .group:hover .lg\:group-hover\:prose-xl ol ul, .group:hover .lg\:group-hover\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .lg\:group-hover\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .group:hover .lg\:group-hover\:prose-xl hr + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .group:hover .lg\:group-hover\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .group:hover .lg\:group-hover\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .group:hover .lg\:group-hover\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .group:hover .lg\:group-hover\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .group:hover .lg\:group-hover\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .group:hover .lg\:group-hover\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .group:hover .lg\:group-hover\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .lg\:group-hover\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .lg\:group-hover\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .group:hover .lg\:group-hover\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .group:hover .lg\:group-hover\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .lg\:group-hover\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ol > li:before{
    left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .group:hover .lg\:group-hover\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .lg\:group-hover\:prose-2xl ul ul, .group:hover .lg\:group-hover\:prose-2xl ul ol, .group:hover .lg\:group-hover\:prose-2xl ol ul, .group:hover .lg\:group-hover\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .lg\:group-hover\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .lg\:group-hover\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .group:hover .lg\:group-hover\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .lg\:group-hover\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .lg\:group-hover\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .lg\:group-hover\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .lg\:hover\:prose:hover{
    color     : #374151;
    max-width     : 65ch;
  }

  .lg\:hover\:prose:hover [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose:hover a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .lg\:hover\:prose:hover strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .lg\:hover\:prose:hover ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:hover\:prose:hover ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .lg\:hover\:prose:hover ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .lg\:hover\:prose:hover ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .lg\:hover\:prose:hover ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .lg\:hover\:prose:hover hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:hover\:prose:hover blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .lg\:hover\:prose:hover blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .lg\:hover\:prose:hover blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .lg\:hover\:prose:hover h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:hover\:prose:hover h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .lg\:hover\:prose:hover h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:hover\:prose:hover h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .lg\:hover\:prose:hover figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .lg\:hover\:prose:hover code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .lg\:hover\:prose:hover code::before{
    content     : "`";
  }

  .lg\:hover\:prose:hover code::after{
    content     : "`";
  }

  .lg\:hover\:prose:hover pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .lg\:hover\:prose:hover pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .lg\:hover\:prose:hover pre code::before{
    content     : "";
  }

  .lg\:hover\:prose:hover pre code::after{
    content     : "";
  }

  .lg\:hover\:prose:hover table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .lg\:hover\:prose:hover thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .lg\:hover\:prose:hover thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:hover\:prose:hover tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .lg\:hover\:prose:hover tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .lg\:hover\:prose:hover tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:hover\:prose:hover{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .lg\:hover\:prose:hover p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:hover\:prose:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:hover\:prose:hover h2 code{
    font-size     : 0.875em;
  }

  .lg\:hover\:prose:hover h3 code{
    font-size     : 0.9em;
  }

  .lg\:hover\:prose:hover ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:hover\:prose:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:hover\:prose:hover ol > li:before{
    left     : 0;
  }

  .lg\:hover\:prose:hover > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:hover\:prose:hover > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:hover\:prose:hover > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:hover\:prose:hover > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:hover\:prose:hover > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:hover\:prose:hover ul ul, .lg\:hover\:prose:hover ul ol, .lg\:hover\:prose:hover ol ul, .lg\:hover\:prose:hover ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:hover\:prose:hover hr + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose:hover h2 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose:hover h3 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose:hover h4 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose:hover thead th:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose:hover thead th:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose:hover tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose:hover tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose:hover > :first-child{
    margin-top     : 0;
  }

  .lg\:hover\:prose:hover > :last-child{
    margin-bottom     : 0;
  }

  .lg\:hover\:prose:hover h1, .lg\:hover\:prose:hover h2, .lg\:hover\:prose:hover h3, .lg\:hover\:prose:hover h4{
    color     : #161e2e;
  }

  .lg\:hover\:prose-sm:hover{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .lg\:hover\:prose-sm:hover p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:hover\:prose-sm:hover blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .lg\:hover\:prose-sm:hover h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .lg\:hover\:prose-sm:hover h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .lg\:hover\:prose-sm:hover h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:hover\:prose-sm:hover h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .lg\:hover\:prose-sm:hover img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:hover\:prose-sm:hover video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:hover\:prose-sm:hover figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:hover\:prose-sm:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-sm:hover figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .lg\:hover\:prose-sm:hover code{
    font-size     : 0.8571429em;
  }

  .lg\:hover\:prose-sm:hover h2 code{
    font-size     : 0.9em;
  }

  .lg\:hover\:prose-sm:hover h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:hover\:prose-sm:hover pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:hover\:prose-sm:hover ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .lg\:hover\:prose-sm:hover ol > li{
    padding-left     : 1.5714286em;
  }

  .lg\:hover\:prose-sm:hover ol > li:before{
    left     : 0;
  }

  .lg\:hover\:prose-sm:hover ul > li{
    padding-left     : 1.5714286em;
  }

  .lg\:hover\:prose-sm:hover ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .lg\:hover\:prose-sm:hover > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:hover\:prose-sm:hover > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:hover\:prose-sm:hover ul ul, .lg\:hover\:prose-sm:hover ul ol, .lg\:hover\:prose-sm:hover ol ul, .lg\:hover\:prose-sm:hover ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:hover\:prose-sm:hover hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .lg\:hover\:prose-sm:hover hr + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-sm:hover h2 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-sm:hover h3 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-sm:hover h4 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-sm:hover table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .lg\:hover\:prose-sm:hover thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:hover\:prose-sm:hover thead th:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-sm:hover thead th:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-sm:hover tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:hover\:prose-sm:hover tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-sm:hover tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-sm:hover > :first-child{
    margin-top     : 0;
  }

  .lg\:hover\:prose-sm:hover > :last-child{
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-lg:hover{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .lg\:hover\:prose-lg:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .lg\:hover\:prose-lg:hover blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .lg\:hover\:prose-lg:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .lg\:hover\:prose-lg:hover h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .lg\:hover\:prose-lg:hover h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:hover\:prose-lg:hover h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:hover\:prose-lg:hover img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:hover\:prose-lg:hover video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:hover\:prose-lg:hover figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:hover\:prose-lg:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-lg:hover figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .lg\:hover\:prose-lg:hover code{
    font-size     : 0.8888889em;
  }

  .lg\:hover\:prose-lg:hover h2 code{
    font-size     : 0.8666667em;
  }

  .lg\:hover\:prose-lg:hover h3 code{
    font-size     : 0.875em;
  }

  .lg\:hover\:prose-lg:hover pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .lg\:hover\:prose-lg:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:hover\:prose-lg:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:hover\:prose-lg:hover ol > li:before{
    left     : 0;
  }

  .lg\:hover\:prose-lg:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:hover\:prose-lg:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .lg\:hover\:prose-lg:hover > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:hover\:prose-lg:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-lg:hover ul ul, .lg\:hover\:prose-lg:hover ul ol, .lg\:hover\:prose-lg:hover ol ul, .lg\:hover\:prose-lg:hover ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:hover\:prose-lg:hover hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .lg\:hover\:prose-lg:hover hr + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-lg:hover h2 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-lg:hover h3 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-lg:hover h4 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-lg:hover table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .lg\:hover\:prose-lg:hover thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:hover\:prose-lg:hover thead th:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-lg:hover thead th:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-lg:hover tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:hover\:prose-lg:hover tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-lg:hover tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-lg:hover > :first-child{
    margin-top     : 0;
  }

  .lg\:hover\:prose-lg:hover > :last-child{
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-xl:hover{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .lg\:hover\:prose-xl:hover p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .lg\:hover\:prose-xl:hover blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .lg\:hover\:prose-xl:hover h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .lg\:hover\:prose-xl:hover h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:hover\:prose-xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .lg\:hover\:prose-xl:hover h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:hover\:prose-xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-xl:hover figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .lg\:hover\:prose-xl:hover code{
    font-size     : 0.9em;
  }

  .lg\:hover\:prose-xl:hover h2 code{
    font-size     : 0.8611111em;
  }

  .lg\:hover\:prose-xl:hover h3 code{
    font-size     : 0.9em;
  }

  .lg\:hover\:prose-xl:hover pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .lg\:hover\:prose-xl:hover ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .lg\:hover\:prose-xl:hover ol > li{
    padding-left     : 1.8em;
  }

  .lg\:hover\:prose-xl:hover ol > li:before{
    left     : 0;
  }

  .lg\:hover\:prose-xl:hover ul > li{
    padding-left     : 1.8em;
  }

  .lg\:hover\:prose-xl:hover ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .lg\:hover\:prose-xl:hover > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:hover\:prose-xl:hover > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:hover\:prose-xl:hover ul ul, .lg\:hover\:prose-xl:hover ul ol, .lg\:hover\:prose-xl:hover ol ul, .lg\:hover\:prose-xl:hover ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:hover\:prose-xl:hover hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .lg\:hover\:prose-xl:hover hr + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-xl:hover h2 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-xl:hover h3 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-xl:hover h4 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-xl:hover table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .lg\:hover\:prose-xl:hover thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:hover\:prose-xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-xl:hover tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:hover\:prose-xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-xl:hover > :first-child{
    margin-top     : 0;
  }

  .lg\:hover\:prose-xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-2xl:hover{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .lg\:hover\:prose-2xl:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .lg\:hover\:prose-2xl:hover blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .lg\:hover\:prose-2xl:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .lg\:hover\:prose-2xl:hover h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .lg\:hover\:prose-2xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .lg\:hover\:prose-2xl:hover h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:hover\:prose-2xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-2xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-2xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:hover\:prose-2xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:hover\:prose-2xl:hover figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .lg\:hover\:prose-2xl:hover code{
    font-size     : 0.8333333em;
  }

  .lg\:hover\:prose-2xl:hover h2 code{
    font-size     : 0.875em;
  }

  .lg\:hover\:prose-2xl:hover h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:hover\:prose-2xl:hover pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .lg\:hover\:prose-2xl:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:hover\:prose-2xl:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:hover\:prose-2xl:hover ol > li:before{
    left     : 0;
  }

  .lg\:hover\:prose-2xl:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:hover\:prose-2xl:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .lg\:hover\:prose-2xl:hover > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .lg\:hover\:prose-2xl:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:hover\:prose-2xl:hover ul ul, .lg\:hover\:prose-2xl:hover ul ol, .lg\:hover\:prose-2xl:hover ol ul, .lg\:hover\:prose-2xl:hover ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:hover\:prose-2xl:hover hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:hover\:prose-2xl:hover hr + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-2xl:hover h2 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-2xl:hover h3 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-2xl:hover h4 + *{
    margin-top     : 0;
  }

  .lg\:hover\:prose-2xl:hover table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .lg\:hover\:prose-2xl:hover thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:hover\:prose-2xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-2xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-2xl:hover tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:hover\:prose-2xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:hover\:prose-2xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:hover\:prose-2xl:hover > :first-child{
    margin-top     : 0;
  }

  .lg\:hover\:prose-2xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .lg\:focus\:prose:focus{
    color     : #374151;
    max-width     : 65ch;
  }

  .lg\:focus\:prose:focus [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose:focus a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .lg\:focus\:prose:focus strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .lg\:focus\:prose:focus ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:focus\:prose:focus ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .lg\:focus\:prose:focus ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .lg\:focus\:prose:focus ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .lg\:focus\:prose:focus ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .lg\:focus\:prose:focus hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:focus\:prose:focus blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .lg\:focus\:prose:focus blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .lg\:focus\:prose:focus blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .lg\:focus\:prose:focus h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:focus\:prose:focus h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .lg\:focus\:prose:focus h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:focus\:prose:focus h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .lg\:focus\:prose:focus figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .lg\:focus\:prose:focus code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .lg\:focus\:prose:focus code::before{
    content     : "`";
  }

  .lg\:focus\:prose:focus code::after{
    content     : "`";
  }

  .lg\:focus\:prose:focus pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .lg\:focus\:prose:focus pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .lg\:focus\:prose:focus pre code::before{
    content     : "";
  }

  .lg\:focus\:prose:focus pre code::after{
    content     : "";
  }

  .lg\:focus\:prose:focus table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .lg\:focus\:prose:focus thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .lg\:focus\:prose:focus thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:focus\:prose:focus tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .lg\:focus\:prose:focus tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .lg\:focus\:prose:focus tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .lg\:focus\:prose:focus{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .lg\:focus\:prose:focus p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:focus\:prose:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:focus\:prose:focus h2 code{
    font-size     : 0.875em;
  }

  .lg\:focus\:prose:focus h3 code{
    font-size     : 0.9em;
  }

  .lg\:focus\:prose:focus ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .lg\:focus\:prose:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:focus\:prose:focus ol > li:before{
    left     : 0;
  }

  .lg\:focus\:prose:focus > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:focus\:prose:focus > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:focus\:prose:focus > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:focus\:prose:focus > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .lg\:focus\:prose:focus > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .lg\:focus\:prose:focus ul ul, .lg\:focus\:prose:focus ul ol, .lg\:focus\:prose:focus ol ul, .lg\:focus\:prose:focus ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .lg\:focus\:prose:focus hr + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose:focus h2 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose:focus h3 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose:focus h4 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose:focus thead th:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose:focus thead th:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose:focus tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose:focus tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose:focus > :first-child{
    margin-top     : 0;
  }

  .lg\:focus\:prose:focus > :last-child{
    margin-bottom     : 0;
  }

  .lg\:focus\:prose:focus h1, .lg\:focus\:prose:focus h2, .lg\:focus\:prose:focus h3, .lg\:focus\:prose:focus h4{
    color     : #161e2e;
  }

  .lg\:focus\:prose-sm:focus{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .lg\:focus\:prose-sm:focus p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:focus\:prose-sm:focus blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .lg\:focus\:prose-sm:focus h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .lg\:focus\:prose-sm:focus h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .lg\:focus\:prose-sm:focus h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:focus\:prose-sm:focus h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .lg\:focus\:prose-sm:focus img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:focus\:prose-sm:focus video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:focus\:prose-sm:focus figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .lg\:focus\:prose-sm:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-sm:focus figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .lg\:focus\:prose-sm:focus code{
    font-size     : 0.8571429em;
  }

  .lg\:focus\:prose-sm:focus h2 code{
    font-size     : 0.9em;
  }

  .lg\:focus\:prose-sm:focus h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:focus\:prose-sm:focus pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:focus\:prose-sm:focus ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .lg\:focus\:prose-sm:focus ol > li{
    padding-left     : 1.5714286em;
  }

  .lg\:focus\:prose-sm:focus ol > li:before{
    left     : 0;
  }

  .lg\:focus\:prose-sm:focus ul > li{
    padding-left     : 1.5714286em;
  }

  .lg\:focus\:prose-sm:focus ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .lg\:focus\:prose-sm:focus > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:focus\:prose-sm:focus > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .lg\:focus\:prose-sm:focus ul ul, .lg\:focus\:prose-sm:focus ul ol, .lg\:focus\:prose-sm:focus ol ul, .lg\:focus\:prose-sm:focus ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .lg\:focus\:prose-sm:focus hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .lg\:focus\:prose-sm:focus hr + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-sm:focus h2 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-sm:focus h3 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-sm:focus h4 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-sm:focus table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .lg\:focus\:prose-sm:focus thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:focus\:prose-sm:focus thead th:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-sm:focus thead th:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-sm:focus tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .lg\:focus\:prose-sm:focus tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-sm:focus tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-sm:focus > :first-child{
    margin-top     : 0;
  }

  .lg\:focus\:prose-sm:focus > :last-child{
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-lg:focus{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .lg\:focus\:prose-lg:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .lg\:focus\:prose-lg:focus blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .lg\:focus\:prose-lg:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .lg\:focus\:prose-lg:focus h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .lg\:focus\:prose-lg:focus h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:focus\:prose-lg:focus h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .lg\:focus\:prose-lg:focus img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:focus\:prose-lg:focus video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:focus\:prose-lg:focus figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .lg\:focus\:prose-lg:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-lg:focus figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .lg\:focus\:prose-lg:focus code{
    font-size     : 0.8888889em;
  }

  .lg\:focus\:prose-lg:focus h2 code{
    font-size     : 0.8666667em;
  }

  .lg\:focus\:prose-lg:focus h3 code{
    font-size     : 0.875em;
  }

  .lg\:focus\:prose-lg:focus pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .lg\:focus\:prose-lg:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:focus\:prose-lg:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:focus\:prose-lg:focus ol > li:before{
    left     : 0;
  }

  .lg\:focus\:prose-lg:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:focus\:prose-lg:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .lg\:focus\:prose-lg:focus > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:focus\:prose-lg:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-lg:focus ul ul, .lg\:focus\:prose-lg:focus ul ol, .lg\:focus\:prose-lg:focus ol ul, .lg\:focus\:prose-lg:focus ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .lg\:focus\:prose-lg:focus hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .lg\:focus\:prose-lg:focus hr + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-lg:focus h2 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-lg:focus h3 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-lg:focus h4 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-lg:focus table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .lg\:focus\:prose-lg:focus thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:focus\:prose-lg:focus thead th:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-lg:focus thead th:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-lg:focus tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .lg\:focus\:prose-lg:focus tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-lg:focus tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-lg:focus > :first-child{
    margin-top     : 0;
  }

  .lg\:focus\:prose-lg:focus > :last-child{
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-xl:focus{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .lg\:focus\:prose-xl:focus p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .lg\:focus\:prose-xl:focus blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .lg\:focus\:prose-xl:focus h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .lg\:focus\:prose-xl:focus h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .lg\:focus\:prose-xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .lg\:focus\:prose-xl:focus h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .lg\:focus\:prose-xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-xl:focus figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .lg\:focus\:prose-xl:focus code{
    font-size     : 0.9em;
  }

  .lg\:focus\:prose-xl:focus h2 code{
    font-size     : 0.8611111em;
  }

  .lg\:focus\:prose-xl:focus h3 code{
    font-size     : 0.9em;
  }

  .lg\:focus\:prose-xl:focus pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .lg\:focus\:prose-xl:focus ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .lg\:focus\:prose-xl:focus ol > li{
    padding-left     : 1.8em;
  }

  .lg\:focus\:prose-xl:focus ol > li:before{
    left     : 0;
  }

  .lg\:focus\:prose-xl:focus ul > li{
    padding-left     : 1.8em;
  }

  .lg\:focus\:prose-xl:focus ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .lg\:focus\:prose-xl:focus > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:focus\:prose-xl:focus > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .lg\:focus\:prose-xl:focus ul ul, .lg\:focus\:prose-xl:focus ul ol, .lg\:focus\:prose-xl:focus ol ul, .lg\:focus\:prose-xl:focus ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .lg\:focus\:prose-xl:focus hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .lg\:focus\:prose-xl:focus hr + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-xl:focus h2 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-xl:focus h3 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-xl:focus h4 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-xl:focus table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .lg\:focus\:prose-xl:focus thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:focus\:prose-xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-xl:focus tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .lg\:focus\:prose-xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-xl:focus > :first-child{
    margin-top     : 0;
  }

  .lg\:focus\:prose-xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-2xl:focus{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .lg\:focus\:prose-2xl:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .lg\:focus\:prose-2xl:focus blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .lg\:focus\:prose-2xl:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .lg\:focus\:prose-2xl:focus h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .lg\:focus\:prose-2xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .lg\:focus\:prose-2xl:focus h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .lg\:focus\:prose-2xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-2xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-2xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .lg\:focus\:prose-2xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .lg\:focus\:prose-2xl:focus figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .lg\:focus\:prose-2xl:focus code{
    font-size     : 0.8333333em;
  }

  .lg\:focus\:prose-2xl:focus h2 code{
    font-size     : 0.875em;
  }

  .lg\:focus\:prose-2xl:focus h3 code{
    font-size     : 0.8888889em;
  }

  .lg\:focus\:prose-2xl:focus pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .lg\:focus\:prose-2xl:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .lg\:focus\:prose-2xl:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .lg\:focus\:prose-2xl:focus ol > li:before{
    left     : 0;
  }

  .lg\:focus\:prose-2xl:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .lg\:focus\:prose-2xl:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .lg\:focus\:prose-2xl:focus > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .lg\:focus\:prose-2xl:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .lg\:focus\:prose-2xl:focus ul ul, .lg\:focus\:prose-2xl:focus ul ol, .lg\:focus\:prose-2xl:focus ol ul, .lg\:focus\:prose-2xl:focus ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .lg\:focus\:prose-2xl:focus hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .lg\:focus\:prose-2xl:focus hr + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-2xl:focus h2 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-2xl:focus h3 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-2xl:focus h4 + *{
    margin-top     : 0;
  }

  .lg\:focus\:prose-2xl:focus table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .lg\:focus\:prose-2xl:focus thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:focus\:prose-2xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-2xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-2xl:focus tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .lg\:focus\:prose-2xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .lg\:focus\:prose-2xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .lg\:focus\:prose-2xl:focus > :first-child{
    margin-top     : 0;
  }

  .lg\:focus\:prose-2xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .lg\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:-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;
  }

  .group:hover .lg\:group-hover\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .group:hover .lg\:group-hover\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .lg\:hover\:space-y-0:hover > :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\:hover\:space-x-0:hover > :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\:hover\:space-y-1:hover > :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\:hover\:space-x-1:hover > :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\:hover\:space-y-2:hover > :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\:hover\:space-x-2:hover > :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\:hover\:space-y-3:hover > :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\:hover\:space-x-3:hover > :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\:hover\:space-y-4:hover > :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\:hover\:space-x-4:hover > :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\:hover\:space-y-5:hover > :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\:hover\:space-x-5:hover > :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\:hover\:space-y-6:hover > :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\:hover\:space-x-6:hover > :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\:hover\:space-y-7:hover > :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\:hover\:space-x-7:hover > :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\:hover\:space-y-8:hover > :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\:hover\:space-x-8:hover > :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\:hover\:space-y-9:hover > :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\:hover\:space-x-9:hover > :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\:hover\:space-y-10:hover > :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\:hover\:space-x-10:hover > :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\:hover\:space-y-11:hover > :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\:hover\:space-x-11:hover > :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\:hover\:space-y-12:hover > :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\:hover\:space-x-12:hover > :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\:hover\:space-y-13:hover > :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\:hover\:space-x-13:hover > :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\:hover\:space-y-14:hover > :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\:hover\:space-x-14:hover > :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\:hover\:space-y-15:hover > :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\:hover\:space-x-15:hover > :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\:hover\:space-y-16:hover > :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\:hover\:space-x-16:hover > :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\:hover\:space-y-20:hover > :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\:hover\:space-x-20:hover > :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\:hover\:space-y-24:hover > :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\:hover\:space-x-24:hover > :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\:hover\:space-y-28:hover > :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\:hover\:space-x-28:hover > :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\:hover\:space-y-32:hover > :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\:hover\:space-x-32:hover > :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\:hover\:space-y-36:hover > :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\:hover\:space-x-36:hover > :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\:hover\:space-y-40:hover > :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\:hover\:space-x-40:hover > :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\:hover\:space-y-44:hover > :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\:hover\:space-x-44:hover > :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\:hover\:space-y-48:hover > :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\:hover\:space-x-48:hover > :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\:hover\:space-y-52:hover > :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\:hover\:space-x-52:hover > :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\:hover\:space-y-56:hover > :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\:hover\:space-x-56:hover > :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\:hover\:space-y-60:hover > :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\:hover\:space-x-60:hover > :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\:hover\:space-y-64:hover > :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\:hover\:space-x-64:hover > :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\:hover\:space-y-72:hover > :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\:hover\:space-x-72:hover > :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\:hover\:space-y-80:hover > :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\:hover\:space-x-80:hover > :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\:hover\:space-y-96:hover > :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\:hover\:space-x-96:hover > :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\:hover\:space-y-px:hover > :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\:hover\:space-x-px:hover > :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\:hover\:space-y-0\.5:hover > :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\:hover\:space-x-0\.5:hover > :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\:hover\:space-y-1\.5:hover > :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\:hover\:space-x-1\.5:hover > :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\:hover\:space-y-2\.5:hover > :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\:hover\:space-x-2\.5:hover > :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\:hover\:space-y-3\.5:hover > :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\:hover\:space-x-3\.5:hover > :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\:hover\:space-y-1\/2:hover > :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\:hover\:space-x-1\/2:hover > :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\:hover\:space-y-1\/3:hover > :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\:hover\:space-x-1\/3:hover > :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\:hover\:space-y-2\/3:hover > :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\:hover\:space-x-2\/3:hover > :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\:hover\:space-y-1\/4:hover > :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\:hover\:space-x-1\/4:hover > :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\:hover\:space-y-2\/4:hover > :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\:hover\:space-x-2\/4:hover > :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\:hover\:space-y-3\/4:hover > :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\:hover\:space-x-3\/4:hover > :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\:hover\:space-y-1\/5:hover > :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\:hover\:space-x-1\/5:hover > :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\:hover\:space-y-2\/5:hover > :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\:hover\:space-x-2\/5:hover > :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\:hover\:space-y-3\/5:hover > :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\:hover\:space-x-3\/5:hover > :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\:hover\:space-y-4\/5:hover > :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\:hover\:space-x-4\/5:hover > :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\:hover\:space-y-1\/6:hover > :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\:hover\:space-x-1\/6:hover > :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\:hover\:space-y-2\/6:hover > :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\:hover\:space-x-2\/6:hover > :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\:hover\:space-y-3\/6:hover > :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\:hover\:space-x-3\/6:hover > :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\:hover\:space-y-4\/6:hover > :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\:hover\:space-x-4\/6:hover > :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\:hover\:space-y-5\/6:hover > :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\:hover\:space-x-5\/6:hover > :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\:hover\:space-y-1\/12:hover > :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\:hover\:space-x-1\/12:hover > :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\:hover\:space-y-2\/12:hover > :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\:hover\:space-x-2\/12:hover > :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\:hover\:space-y-3\/12:hover > :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\:hover\:space-x-3\/12:hover > :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\:hover\:space-y-4\/12:hover > :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\:hover\:space-x-4\/12:hover > :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\:hover\:space-y-5\/12:hover > :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\:hover\:space-x-5\/12:hover > :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\:hover\:space-y-6\/12:hover > :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\:hover\:space-x-6\/12:hover > :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\:hover\:space-y-7\/12:hover > :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\:hover\:space-x-7\/12:hover > :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\:hover\:space-y-8\/12:hover > :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\:hover\:space-x-8\/12:hover > :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\:hover\:space-y-9\/12:hover > :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\:hover\:space-x-9\/12:hover > :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\:hover\:space-y-10\/12:hover > :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\:hover\:space-x-10\/12:hover > :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\:hover\:space-y-11\/12:hover > :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\:hover\:space-x-11\/12:hover > :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\:hover\:space-y-full:hover > :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\:hover\:space-x-full:hover > :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\:hover\:-space-y-1:hover > :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\:hover\:-space-x-1:hover > :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\:hover\:-space-y-2:hover > :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\:hover\:-space-x-2:hover > :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\:hover\:-space-y-3:hover > :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\:hover\:-space-x-3:hover > :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\:hover\:-space-y-4:hover > :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\:hover\:-space-x-4:hover > :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\:hover\:-space-y-5:hover > :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\:hover\:-space-x-5:hover > :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\:hover\:-space-y-6:hover > :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\:hover\:-space-x-6:hover > :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\:hover\:-space-y-7:hover > :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\:hover\:-space-x-7:hover > :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\:hover\:-space-y-8:hover > :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\:hover\:-space-x-8:hover > :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\:hover\:-space-y-9:hover > :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\:hover\:-space-x-9:hover > :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\:hover\:-space-y-10:hover > :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\:hover\:-space-x-10:hover > :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\:hover\:-space-y-11:hover > :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\:hover\:-space-x-11:hover > :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\:hover\:-space-y-12:hover > :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\:hover\:-space-x-12:hover > :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\:hover\:-space-y-13:hover > :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\:hover\:-space-x-13:hover > :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\:hover\:-space-y-14:hover > :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\:hover\:-space-x-14:hover > :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\:hover\:-space-y-15:hover > :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\:hover\:-space-x-15:hover > :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\:hover\:-space-y-16:hover > :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\:hover\:-space-x-16:hover > :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\:hover\:-space-y-20:hover > :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\:hover\:-space-x-20:hover > :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\:hover\:-space-y-24:hover > :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\:hover\:-space-x-24:hover > :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\:hover\:-space-y-28:hover > :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\:hover\:-space-x-28:hover > :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\:hover\:-space-y-32:hover > :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\:hover\:-space-x-32:hover > :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\:hover\:-space-y-36:hover > :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\:hover\:-space-x-36:hover > :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\:hover\:-space-y-40:hover > :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\:hover\:-space-x-40:hover > :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\:hover\:-space-y-44:hover > :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\:hover\:-space-x-44:hover > :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\:hover\:-space-y-48:hover > :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\:hover\:-space-x-48:hover > :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\:hover\:-space-y-52:hover > :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\:hover\:-space-x-52:hover > :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\:hover\:-space-y-56:hover > :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\:hover\:-space-x-56:hover > :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\:hover\:-space-y-60:hover > :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\:hover\:-space-x-60:hover > :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\:hover\:-space-y-64:hover > :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\:hover\:-space-x-64:hover > :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\:hover\:-space-y-72:hover > :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\:hover\:-space-x-72:hover > :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\:hover\:-space-y-80:hover > :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\:hover\:-space-x-80:hover > :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\:hover\:-space-y-96:hover > :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\:hover\:-space-x-96:hover > :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\:hover\:-space-y-px:hover > :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\:hover\:-space-x-px:hover > :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\:hover\:-space-y-0\.5:hover > :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\:hover\:-space-x-0\.5:hover > :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\:hover\:-space-y-1\.5:hover > :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\:hover\:-space-x-1\.5:hover > :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\:hover\:-space-y-2\.5:hover > :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\:hover\:-space-x-2\.5:hover > :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\:hover\:-space-y-3\.5:hover > :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\:hover\:-space-x-3\.5:hover > :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\:hover\:-space-y-1\/2:hover > :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\:hover\:-space-x-1\/2:hover > :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\:hover\:-space-y-1\/3:hover > :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\:hover\:-space-x-1\/3:hover > :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\:hover\:-space-y-2\/3:hover > :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\:hover\:-space-x-2\/3:hover > :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\:hover\:-space-y-1\/4:hover > :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\:hover\:-space-x-1\/4:hover > :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\:hover\:-space-y-2\/4:hover > :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\:hover\:-space-x-2\/4:hover > :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\:hover\:-space-y-3\/4:hover > :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\:hover\:-space-x-3\/4:hover > :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\:hover\:-space-y-1\/5:hover > :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\:hover\:-space-x-1\/5:hover > :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\:hover\:-space-y-2\/5:hover > :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\:hover\:-space-x-2\/5:hover > :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\:hover\:-space-y-3\/5:hover > :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\:hover\:-space-x-3\/5:hover > :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\:hover\:-space-y-4\/5:hover > :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\:hover\:-space-x-4\/5:hover > :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\:hover\:-space-y-1\/6:hover > :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\:hover\:-space-x-1\/6:hover > :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\:hover\:-space-y-2\/6:hover > :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\:hover\:-space-x-2\/6:hover > :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\:hover\:-space-y-3\/6:hover > :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\:hover\:-space-x-3\/6:hover > :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\:hover\:-space-y-4\/6:hover > :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\:hover\:-space-x-4\/6:hover > :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\:hover\:-space-y-5\/6:hover > :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\:hover\:-space-x-5\/6:hover > :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\:hover\:-space-y-1\/12:hover > :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\:hover\:-space-x-1\/12:hover > :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\:hover\:-space-y-2\/12:hover > :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\:hover\:-space-x-2\/12:hover > :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\:hover\:-space-y-3\/12:hover > :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\:hover\:-space-x-3\/12:hover > :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\:hover\:-space-y-4\/12:hover > :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\:hover\:-space-x-4\/12:hover > :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\:hover\:-space-y-5\/12:hover > :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\:hover\:-space-x-5\/12:hover > :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\:hover\:-space-y-6\/12:hover > :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\:hover\:-space-x-6\/12:hover > :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\:hover\:-space-y-7\/12:hover > :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\:hover\:-space-x-7\/12:hover > :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\:hover\:-space-y-8\/12:hover > :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\:hover\:-space-x-8\/12:hover > :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\:hover\:-space-y-9\/12:hover > :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\:hover\:-space-x-9\/12:hover > :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\:hover\:-space-y-10\/12:hover > :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\:hover\:-space-x-10\/12:hover > :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\:hover\:-space-y-11\/12:hover > :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\:hover\:-space-x-11\/12:hover > :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\:hover\:-space-y-full:hover > :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\:hover\:-space-x-full:hover > :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\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .lg\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .lg\:focus\:space-y-0:focus > :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\:focus\:space-x-0:focus > :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\:focus\:space-y-1:focus > :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\:focus\:space-x-1:focus > :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\:focus\:space-y-2:focus > :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\:focus\:space-x-2:focus > :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\:focus\:space-y-3:focus > :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\:focus\:space-x-3:focus > :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\:focus\:space-y-4:focus > :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\:focus\:space-x-4:focus > :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\:focus\:space-y-5:focus > :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\:focus\:space-x-5:focus > :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\:focus\:space-y-6:focus > :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\:focus\:space-x-6:focus > :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\:focus\:space-y-7:focus > :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\:focus\:space-x-7:focus > :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\:focus\:space-y-8:focus > :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\:focus\:space-x-8:focus > :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\:focus\:space-y-9:focus > :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\:focus\:space-x-9:focus > :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\:focus\:space-y-10:focus > :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\:focus\:space-x-10:focus > :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\:focus\:space-y-11:focus > :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\:focus\:space-x-11:focus > :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\:focus\:space-y-12:focus > :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\:focus\:space-x-12:focus > :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\:focus\:space-y-13:focus > :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\:focus\:space-x-13:focus > :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\:focus\:space-y-14:focus > :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\:focus\:space-x-14:focus > :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\:focus\:space-y-15:focus > :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\:focus\:space-x-15:focus > :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\:focus\:space-y-16:focus > :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\:focus\:space-x-16:focus > :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\:focus\:space-y-20:focus > :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\:focus\:space-x-20:focus > :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\:focus\:space-y-24:focus > :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\:focus\:space-x-24:focus > :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\:focus\:space-y-28:focus > :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\:focus\:space-x-28:focus > :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\:focus\:space-y-32:focus > :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\:focus\:space-x-32:focus > :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\:focus\:space-y-36:focus > :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\:focus\:space-x-36:focus > :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\:focus\:space-y-40:focus > :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\:focus\:space-x-40:focus > :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\:focus\:space-y-44:focus > :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\:focus\:space-x-44:focus > :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\:focus\:space-y-48:focus > :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\:focus\:space-x-48:focus > :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\:focus\:space-y-52:focus > :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\:focus\:space-x-52:focus > :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\:focus\:space-y-56:focus > :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\:focus\:space-x-56:focus > :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\:focus\:space-y-60:focus > :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\:focus\:space-x-60:focus > :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\:focus\:space-y-64:focus > :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\:focus\:space-x-64:focus > :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\:focus\:space-y-72:focus > :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\:focus\:space-x-72:focus > :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\:focus\:space-y-80:focus > :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\:focus\:space-x-80:focus > :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\:focus\:space-y-96:focus > :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\:focus\:space-x-96:focus > :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\:focus\:space-y-px:focus > :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\:focus\:space-x-px:focus > :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\:focus\:space-y-0\.5:focus > :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\:focus\:space-x-0\.5:focus > :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\:focus\:space-y-1\.5:focus > :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\:focus\:space-x-1\.5:focus > :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\:focus\:space-y-2\.5:focus > :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\:focus\:space-x-2\.5:focus > :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\:focus\:space-y-3\.5:focus > :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\:focus\:space-x-3\.5:focus > :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\:focus\:space-y-1\/2:focus > :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\:focus\:space-x-1\/2:focus > :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\:focus\:space-y-1\/3:focus > :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\:focus\:space-x-1\/3:focus > :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\:focus\:space-y-2\/3:focus > :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\:focus\:space-x-2\/3:focus > :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\:focus\:space-y-1\/4:focus > :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\:focus\:space-x-1\/4:focus > :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\:focus\:space-y-2\/4:focus > :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\:focus\:space-x-2\/4:focus > :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\:focus\:space-y-3\/4:focus > :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\:focus\:space-x-3\/4:focus > :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\:focus\:space-y-1\/5:focus > :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\:focus\:space-x-1\/5:focus > :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\:focus\:space-y-2\/5:focus > :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\:focus\:space-x-2\/5:focus > :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\:focus\:space-y-3\/5:focus > :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\:focus\:space-x-3\/5:focus > :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\:focus\:space-y-4\/5:focus > :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\:focus\:space-x-4\/5:focus > :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\:focus\:space-y-1\/6:focus > :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\:focus\:space-x-1\/6:focus > :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\:focus\:space-y-2\/6:focus > :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\:focus\:space-x-2\/6:focus > :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\:focus\:space-y-3\/6:focus > :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\:focus\:space-x-3\/6:focus > :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\:focus\:space-y-4\/6:focus > :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\:focus\:space-x-4\/6:focus > :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\:focus\:space-y-5\/6:focus > :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\:focus\:space-x-5\/6:focus > :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\:focus\:space-y-1\/12:focus > :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\:focus\:space-x-1\/12:focus > :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\:focus\:space-y-2\/12:focus > :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\:focus\:space-x-2\/12:focus > :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\:focus\:space-y-3\/12:focus > :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\:focus\:space-x-3\/12:focus > :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\:focus\:space-y-4\/12:focus > :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\:focus\:space-x-4\/12:focus > :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\:focus\:space-y-5\/12:focus > :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\:focus\:space-x-5\/12:focus > :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\:focus\:space-y-6\/12:focus > :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\:focus\:space-x-6\/12:focus > :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\:focus\:space-y-7\/12:focus > :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\:focus\:space-x-7\/12:focus > :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\:focus\:space-y-8\/12:focus > :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\:focus\:space-x-8\/12:focus > :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\:focus\:space-y-9\/12:focus > :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\:focus\:space-x-9\/12:focus > :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\:focus\:space-y-10\/12:focus > :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\:focus\:space-x-10\/12:focus > :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\:focus\:space-y-11\/12:focus > :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\:focus\:space-x-11\/12:focus > :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\:focus\:space-y-full:focus > :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\:focus\:space-x-full:focus > :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\:focus\:-space-y-1:focus > :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\:focus\:-space-x-1:focus > :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\:focus\:-space-y-2:focus > :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\:focus\:-space-x-2:focus > :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\:focus\:-space-y-3:focus > :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\:focus\:-space-x-3:focus > :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\:focus\:-space-y-4:focus > :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\:focus\:-space-x-4:focus > :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\:focus\:-space-y-5:focus > :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\:focus\:-space-x-5:focus > :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\:focus\:-space-y-6:focus > :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\:focus\:-space-x-6:focus > :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\:focus\:-space-y-7:focus > :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\:focus\:-space-x-7:focus > :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\:focus\:-space-y-8:focus > :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\:focus\:-space-x-8:focus > :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\:focus\:-space-y-9:focus > :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\:focus\:-space-x-9:focus > :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\:focus\:-space-y-10:focus > :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\:focus\:-space-x-10:focus > :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\:focus\:-space-y-11:focus > :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\:focus\:-space-x-11:focus > :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\:focus\:-space-y-12:focus > :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\:focus\:-space-x-12:focus > :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\:focus\:-space-y-13:focus > :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\:focus\:-space-x-13:focus > :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\:focus\:-space-y-14:focus > :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\:focus\:-space-x-14:focus > :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\:focus\:-space-y-15:focus > :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\:focus\:-space-x-15:focus > :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\:focus\:-space-y-16:focus > :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\:focus\:-space-x-16:focus > :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\:focus\:-space-y-20:focus > :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\:focus\:-space-x-20:focus > :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\:focus\:-space-y-24:focus > :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\:focus\:-space-x-24:focus > :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\:focus\:-space-y-28:focus > :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\:focus\:-space-x-28:focus > :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\:focus\:-space-y-32:focus > :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\:focus\:-space-x-32:focus > :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\:focus\:-space-y-36:focus > :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\:focus\:-space-x-36:focus > :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\:focus\:-space-y-40:focus > :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\:focus\:-space-x-40:focus > :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\:focus\:-space-y-44:focus > :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\:focus\:-space-x-44:focus > :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\:focus\:-space-y-48:focus > :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\:focus\:-space-x-48:focus > :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\:focus\:-space-y-52:focus > :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\:focus\:-space-x-52:focus > :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\:focus\:-space-y-56:focus > :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\:focus\:-space-x-56:focus > :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\:focus\:-space-y-60:focus > :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\:focus\:-space-x-60:focus > :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\:focus\:-space-y-64:focus > :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\:focus\:-space-x-64:focus > :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\:focus\:-space-y-72:focus > :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\:focus\:-space-x-72:focus > :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\:focus\:-space-y-80:focus > :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\:focus\:-space-x-80:focus > :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\:focus\:-space-y-96:focus > :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\:focus\:-space-x-96:focus > :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\:focus\:-space-y-px:focus > :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\:focus\:-space-x-px:focus > :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\:focus\:-space-y-0\.5:focus > :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\:focus\:-space-x-0\.5:focus > :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\:focus\:-space-y-1\.5:focus > :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\:focus\:-space-x-1\.5:focus > :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\:focus\:-space-y-2\.5:focus > :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\:focus\:-space-x-2\.5:focus > :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\:focus\:-space-y-3\.5:focus > :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\:focus\:-space-x-3\.5:focus > :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\:focus\:-space-y-1\/2:focus > :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\:focus\:-space-x-1\/2:focus > :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\:focus\:-space-y-1\/3:focus > :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\:focus\:-space-x-1\/3:focus > :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\:focus\:-space-y-2\/3:focus > :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\:focus\:-space-x-2\/3:focus > :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\:focus\:-space-y-1\/4:focus > :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\:focus\:-space-x-1\/4:focus > :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\:focus\:-space-y-2\/4:focus > :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\:focus\:-space-x-2\/4:focus > :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\:focus\:-space-y-3\/4:focus > :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\:focus\:-space-x-3\/4:focus > :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\:focus\:-space-y-1\/5:focus > :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\:focus\:-space-x-1\/5:focus > :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\:focus\:-space-y-2\/5:focus > :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\:focus\:-space-x-2\/5:focus > :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\:focus\:-space-y-3\/5:focus > :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\:focus\:-space-x-3\/5:focus > :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\:focus\:-space-y-4\/5:focus > :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\:focus\:-space-x-4\/5:focus > :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\:focus\:-space-y-1\/6:focus > :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\:focus\:-space-x-1\/6:focus > :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\:focus\:-space-y-2\/6:focus > :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\:focus\:-space-x-2\/6:focus > :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\:focus\:-space-y-3\/6:focus > :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\:focus\:-space-x-3\/6:focus > :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\:focus\:-space-y-4\/6:focus > :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\:focus\:-space-x-4\/6:focus > :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\:focus\:-space-y-5\/6:focus > :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\:focus\:-space-x-5\/6:focus > :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\:focus\:-space-y-1\/12:focus > :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\:focus\:-space-x-1\/12:focus > :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\:focus\:-space-y-2\/12:focus > :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\:focus\:-space-x-2\/12:focus > :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\:focus\:-space-y-3\/12:focus > :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\:focus\:-space-x-3\/12:focus > :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\:focus\:-space-y-4\/12:focus > :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\:focus\:-space-x-4\/12:focus > :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\:focus\:-space-y-5\/12:focus > :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\:focus\:-space-x-5\/12:focus > :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\:focus\:-space-y-6\/12:focus > :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\:focus\:-space-x-6\/12:focus > :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\:focus\:-space-y-7\/12:focus > :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\:focus\:-space-x-7\/12:focus > :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\:focus\:-space-y-8\/12:focus > :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\:focus\:-space-x-8\/12:focus > :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\:focus\:-space-y-9\/12:focus > :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\:focus\:-space-x-9\/12:focus > :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\:focus\:-space-y-10\/12:focus > :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\:focus\:-space-x-10\/12:focus > :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\:focus\:-space-y-11\/12:focus > :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\:focus\:-space-x-11\/12:focus > :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\:focus\:-space-y-full:focus > :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\:focus\:-space-x-full:focus > :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\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .lg\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .lg\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .group:hover .lg\:group-hover\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .lg\:hover\:divide-y-0:hover > :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;
  }

  .lg\:hover\:divide-x-0:hover > :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;
  }

  .lg\:hover\:divide-y-2:hover > :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;
  }

  .lg\:hover\:divide-x-2:hover > :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;
  }

  .lg\:hover\:divide-y-4:hover > :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;
  }

  .lg\:hover\:divide-x-4:hover > :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;
  }

  .lg\:hover\:divide-y-8:hover > :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;
  }

  .lg\:hover\:divide-x-8:hover > :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;
  }

  .lg\:hover\:divide-y:hover > :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;
  }

  .lg\:hover\:divide-x:hover > :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;
  }

  .lg\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .lg\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .lg\:focus\:divide-y-0:focus > :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;
  }

  .lg\:focus\:divide-x-0:focus > :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;
  }

  .lg\:focus\:divide-y-2:focus > :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;
  }

  .lg\:focus\:divide-x-2:focus > :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;
  }

  .lg\:focus\:divide-y-4:focus > :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;
  }

  .lg\:focus\:divide-x-4:focus > :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;
  }

  .lg\:focus\:divide-y-8:focus > :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;
  }

  .lg\:focus\:divide-x-8:focus > :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;
  }

  .lg\:focus\:divide-y:focus > :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;
  }

  .lg\:focus\:divide-x:focus > :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;
  }

  .lg\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .lg\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .lg\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .lg\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .lg\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .lg\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-cool-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-red-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-orange-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-yellow-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-green-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-teal-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-indigo-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-purple-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-pink-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .lg\:hover\:divide-blue-brand:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .lg\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-cool-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-red-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-orange-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-yellow-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-green-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-teal-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-indigo-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-purple-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-pink-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .lg\:focus\:divide-blue-brand:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .lg\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .lg\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .lg\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .lg\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .lg\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .lg\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .lg\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .lg\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .lg\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .lg\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .lg\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .lg\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .lg\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .lg\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .lg\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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\:hover\:sr-only:hover{
    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\:hover\:not-sr-only:hover{
    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\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .group:hover .lg\:group-hover\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .lg\:hover\:appearance-none:hover{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .lg\:focus\:appearance-none:focus{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .lg\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .lg\:bg-local{
    background-attachment     : local !important;
  }

  .lg\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .group:hover .lg\:group-hover\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .group:hover .lg\:group-hover\:bg-local{
    background-attachment     : local !important;
  }

  .group:hover .lg\:group-hover\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .lg\:hover\:bg-fixed:hover{
    background-attachment     : fixed !important;
  }

  .lg\:hover\:bg-local:hover{
    background-attachment     : local !important;
  }

  .lg\:hover\:bg-scroll:hover{
    background-attachment     : scroll !important;
  }

  .lg\:focus\:bg-fixed:focus{
    background-attachment     : fixed !important;
  }

  .lg\:focus\:bg-local:focus{
    background-attachment     : local !important;
  }

  .lg\:focus\:bg-scroll:focus{
    background-attachment     : scroll !important;
  }

  .lg\:bg-transparent{
    background-color     : transparent !important;
  }

  .lg\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .lg\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .lg\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .lg\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .lg\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .lg\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .lg\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .lg\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .lg\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .lg\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .lg\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .lg\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-transparent{
    background-color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-transparent:hover{
    background-color     : transparent !important;
  }

  .lg\:hover\:bg-white:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-black:hover{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-cool-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-red-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-orange-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-yellow-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-green-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-teal-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-indigo-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-purple-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-pink-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .lg\:hover\:bg-blue-brand:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-transparent:focus{
    background-color     : transparent !important;
  }

  .lg\:focus\:bg-white:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-black:focus{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-cool-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-red-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-orange-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-yellow-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-green-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-teal-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-indigo-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-purple-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-pink-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .lg\:focus\:bg-blue-brand:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .lg\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .lg\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .lg\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .lg\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .lg\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .lg\:hover\:bg-opacity-0:hover{
    --bg-opacity     : 0 !important;
  }

  .lg\:hover\:bg-opacity-25:hover{
    --bg-opacity     : 0.25 !important;
  }

  .lg\:hover\:bg-opacity-50:hover{
    --bg-opacity     : 0.5 !important;
  }

  .lg\:hover\:bg-opacity-75:hover{
    --bg-opacity     : 0.75 !important;
  }

  .lg\:hover\:bg-opacity-100:hover{
    --bg-opacity     : 1 !important;
  }

  .lg\:focus\:bg-opacity-0:focus{
    --bg-opacity     : 0 !important;
  }

  .lg\:focus\:bg-opacity-25:focus{
    --bg-opacity     : 0.25 !important;
  }

  .lg\:focus\:bg-opacity-50:focus{
    --bg-opacity     : 0.5 !important;
  }

  .lg\:focus\:bg-opacity-75:focus{
    --bg-opacity     : 0.75 !important;
  }

  .lg\:focus\:bg-opacity-100:focus{
    --bg-opacity     : 1 !important;
  }

  .lg\:bg-bottom{
    background-position     : bottom !important;
  }

  .lg\:bg-center{
    background-position     : center !important;
  }

  .lg\:bg-left{
    background-position     : left !important;
  }

  .lg\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .lg\:bg-left-top{
    background-position     : left top !important;
  }

  .lg\:bg-right{
    background-position     : right !important;
  }

  .lg\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .lg\:bg-right-top{
    background-position     : right top !important;
  }

  .lg\:bg-top{
    background-position     : top !important;
  }

  .group:hover .lg\:group-hover\:bg-bottom{
    background-position     : bottom !important;
  }

  .group:hover .lg\:group-hover\:bg-center{
    background-position     : center !important;
  }

  .group:hover .lg\:group-hover\:bg-left{
    background-position     : left !important;
  }

  .group:hover .lg\:group-hover\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .group:hover .lg\:group-hover\:bg-left-top{
    background-position     : left top !important;
  }

  .group:hover .lg\:group-hover\:bg-right{
    background-position     : right !important;
  }

  .group:hover .lg\:group-hover\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .group:hover .lg\:group-hover\:bg-right-top{
    background-position     : right top !important;
  }

  .group:hover .lg\:group-hover\:bg-top{
    background-position     : top !important;
  }

  .lg\:hover\:bg-bottom:hover{
    background-position     : bottom !important;
  }

  .lg\:hover\:bg-center:hover{
    background-position     : center !important;
  }

  .lg\:hover\:bg-left:hover{
    background-position     : left !important;
  }

  .lg\:hover\:bg-left-bottom:hover{
    background-position     : left bottom !important;
  }

  .lg\:hover\:bg-left-top:hover{
    background-position     : left top !important;
  }

  .lg\:hover\:bg-right:hover{
    background-position     : right !important;
  }

  .lg\:hover\:bg-right-bottom:hover{
    background-position     : right bottom !important;
  }

  .lg\:hover\:bg-right-top:hover{
    background-position     : right top !important;
  }

  .lg\:hover\:bg-top:hover{
    background-position     : top !important;
  }

  .lg\:focus\:bg-bottom:focus{
    background-position     : bottom !important;
  }

  .lg\:focus\:bg-center:focus{
    background-position     : center !important;
  }

  .lg\:focus\:bg-left:focus{
    background-position     : left !important;
  }

  .lg\:focus\:bg-left-bottom:focus{
    background-position     : left bottom !important;
  }

  .lg\:focus\:bg-left-top:focus{
    background-position     : left top !important;
  }

  .lg\:focus\:bg-right:focus{
    background-position     : right !important;
  }

  .lg\:focus\:bg-right-bottom:focus{
    background-position     : right bottom !important;
  }

  .lg\:focus\:bg-right-top:focus{
    background-position     : right top !important;
  }

  .lg\:focus\:bg-top:focus{
    background-position     : top !important;
  }

  .lg\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .lg\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .lg\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .lg\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .lg\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .lg\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .group:hover .lg\:group-hover\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .group:hover .lg\:group-hover\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .group:hover .lg\:group-hover\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .group:hover .lg\:group-hover\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .group:hover .lg\:group-hover\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .group:hover .lg\:group-hover\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .lg\:hover\:bg-repeat:hover{
    background-repeat     : repeat !important;
  }

  .lg\:hover\:bg-no-repeat:hover{
    background-repeat     : no-repeat !important;
  }

  .lg\:hover\:bg-repeat-x:hover{
    background-repeat     : repeat-x !important;
  }

  .lg\:hover\:bg-repeat-y:hover{
    background-repeat     : repeat-y !important;
  }

  .lg\:hover\:bg-repeat-round:hover{
    background-repeat     : round !important;
  }

  .lg\:hover\:bg-repeat-space:hover{
    background-repeat     : space !important;
  }

  .lg\:focus\:bg-repeat:focus{
    background-repeat     : repeat !important;
  }

  .lg\:focus\:bg-no-repeat:focus{
    background-repeat     : no-repeat !important;
  }

  .lg\:focus\:bg-repeat-x:focus{
    background-repeat     : repeat-x !important;
  }

  .lg\:focus\:bg-repeat-y:focus{
    background-repeat     : repeat-y !important;
  }

  .lg\:focus\:bg-repeat-round:focus{
    background-repeat     : round !important;
  }

  .lg\:focus\:bg-repeat-space:focus{
    background-repeat     : space !important;
  }

  .lg\:bg-auto{
    background-size     : auto !important;
  }

  .lg\:bg-cover{
    background-size     : cover !important;
  }

  .lg\:bg-contain{
    background-size     : contain !important;
  }

  .group:hover .lg\:group-hover\:bg-auto{
    background-size     : auto !important;
  }

  .group:hover .lg\:group-hover\:bg-cover{
    background-size     : cover !important;
  }

  .group:hover .lg\:group-hover\:bg-contain{
    background-size     : contain !important;
  }

  .lg\:hover\:bg-auto:hover{
    background-size     : auto !important;
  }

  .lg\:hover\:bg-cover:hover{
    background-size     : cover !important;
  }

  .lg\:hover\:bg-contain:hover{
    background-size     : contain !important;
  }

  .lg\:focus\:bg-auto:focus{
    background-size     : auto !important;
  }

  .lg\:focus\:bg-cover:focus{
    background-size     : cover !important;
  }

  .lg\:focus\:bg-contain:focus{
    background-size     : contain !important;
  }

  .lg\:border-collapse{
    border-collapse     : collapse !important;
  }

  .lg\:border-separate{
    border-collapse     : separate !important;
  }

  .group:hover .lg\:group-hover\:border-collapse{
    border-collapse     : collapse !important;
  }

  .group:hover .lg\:group-hover\:border-separate{
    border-collapse     : separate !important;
  }

  .lg\:hover\:border-collapse:hover{
    border-collapse     : collapse !important;
  }

  .lg\:hover\:border-separate:hover{
    border-collapse     : separate !important;
  }

  .lg\:focus\:border-collapse:focus{
    border-collapse     : collapse !important;
  }

  .lg\:focus\:border-separate:focus{
    border-collapse     : separate !important;
  }

  .lg\:border-transparent{
    border-color     : transparent !important;
  }

  .lg\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .lg\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .lg\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .lg\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .lg\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .lg\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .lg\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .lg\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .lg\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .lg\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .lg\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .lg\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .lg\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .lg\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .lg\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .lg\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .lg\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .lg\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .lg\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .lg\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .lg\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .lg\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .lg\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .lg\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .lg\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .lg\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .lg\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .lg\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .lg\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .lg\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .lg\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .lg\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .lg\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .lg\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .lg\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .lg\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .lg\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .lg\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .lg\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .lg\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .lg\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .lg\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .lg\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .lg\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .lg\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .lg\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .lg\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .lg\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .lg\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .lg\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .lg\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .lg\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .lg\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .lg\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .lg\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .lg\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .lg\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .lg\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .lg\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .lg\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .lg\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .lg\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .lg\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .lg\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .lg\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .lg\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .lg\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .lg\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .lg\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .lg\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .lg\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .lg\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .lg\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .lg\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .lg\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .lg\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .lg\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .lg\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .lg\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .lg\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-transparent{
    border-color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-transparent:hover{
    border-color     : transparent !important;
  }

  .lg\:hover\:border-white:hover{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-black:hover{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-cool-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-red-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-orange-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-yellow-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-green-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-teal-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-indigo-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-purple-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-pink-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .lg\:hover\:border-blue-brand:hover{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-transparent:focus{
    border-color     : transparent !important;
  }

  .lg\:focus\:border-white:focus{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-black:focus{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-cool-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-red-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-orange-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-yellow-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-green-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-teal-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-indigo-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-purple-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-pink-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .lg\:focus\:border-blue-brand:focus{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .lg\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .lg\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .lg\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .lg\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .lg\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .lg\:hover\:border-opacity-0:hover{
    --border-opacity     : 0 !important;
  }

  .lg\:hover\:border-opacity-25:hover{
    --border-opacity     : 0.25 !important;
  }

  .lg\:hover\:border-opacity-50:hover{
    --border-opacity     : 0.5 !important;
  }

  .lg\:hover\:border-opacity-75:hover{
    --border-opacity     : 0.75 !important;
  }

  .lg\:hover\:border-opacity-100:hover{
    --border-opacity     : 1 !important;
  }

  .lg\:focus\:border-opacity-0:focus{
    --border-opacity     : 0 !important;
  }

  .lg\:focus\:border-opacity-25:focus{
    --border-opacity     : 0.25 !important;
  }

  .lg\:focus\:border-opacity-50:focus{
    --border-opacity     : 0.5 !important;
  }

  .lg\:focus\:border-opacity-75:focus{
    --border-opacity     : 0.75 !important;
  }

  .lg\:focus\:border-opacity-100:focus{
    --border-opacity     : 1 !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;
  }

  .group:hover .lg\:group-hover\:rounded-none{
    border-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-sm{
    border-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded{
    border-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-md{
    border-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-lg{
    border-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-full{
    border-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-t-none{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-r-none{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-b-none{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-l-none{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-t-sm{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-r-sm{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-b-sm{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-l-sm{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-t{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-r{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-b{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-l{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-t-md{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-r-md{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-b-md{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-l-md{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-t-lg{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-r-lg{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-b-lg{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-l-lg{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-t-full{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-r-full{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-b-full{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-l-full{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl-none{
    border-top-left-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr-none{
    border-top-right-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-br-none{
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl-none{
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl-sm{
    border-top-left-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr-sm{
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-br-sm{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl-sm{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl{
    border-top-left-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr{
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-br{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl-md{
    border-top-left-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr-md{
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-br-md{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl-md{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl-lg{
    border-top-left-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr-lg{
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-br-lg{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl-lg{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:rounded-tl-full{
    border-top-left-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-tr-full{
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-br-full{
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .lg\:group-hover\:rounded-bl-full{
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-none:hover{
    border-radius     : 0 !important;
  }

  .lg\:hover\:rounded-sm:hover{
    border-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded:hover{
    border-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-md:hover{
    border-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-lg:hover{
    border-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-full:hover{
    border-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-t-none:hover{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .lg\:hover\:rounded-r-none:hover{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .lg\:hover\:rounded-b-none:hover{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:hover\:rounded-l-none:hover{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:hover\:rounded-t-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-r-sm:hover{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-l-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-t:hover{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-r:hover{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-b:hover{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-l:hover{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-t-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-r-md:hover{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-b-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-l-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-t-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-r-lg:hover{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-l-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-t-full:hover{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-r-full:hover{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-b-full:hover{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-l-full:hover{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-tl-none:hover{
    border-top-left-radius     : 0 !important;
  }

  .lg\:hover\:rounded-tr-none:hover{
    border-top-right-radius     : 0 !important;
  }

  .lg\:hover\:rounded-br-none:hover{
    border-bottom-right-radius     : 0 !important;
  }

  .lg\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:hover\:rounded-tl-sm:hover{
    border-top-left-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-tr-sm:hover{
    border-top-right-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:hover\:rounded-tl:hover{
    border-top-left-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-tr:hover{
    border-top-right-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-br:hover{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-bl:hover{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:hover\:rounded-tl-md:hover{
    border-top-left-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-tr-md:hover{
    border-top-right-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-br-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:hover\:rounded-tl-lg:hover{
    border-top-left-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-tr-lg:hover{
    border-top-right-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:hover\:rounded-tl-full:hover{
    border-top-left-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-tr-full:hover{
    border-top-right-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-br-full:hover{
    border-bottom-right-radius     : 9999px !important;
  }

  .lg\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-none:focus{
    border-radius     : 0 !important;
  }

  .lg\:focus\:rounded-sm:focus{
    border-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded:focus{
    border-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-md:focus{
    border-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-lg:focus{
    border-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-full:focus{
    border-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-t-none:focus{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .lg\:focus\:rounded-r-none:focus{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .lg\:focus\:rounded-b-none:focus{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:focus\:rounded-l-none:focus{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:focus\:rounded-t-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-r-sm:focus{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-l-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-t:focus{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-r:focus{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-b:focus{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-l:focus{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-t-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-r-md:focus{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-b-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-l-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-t-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-r-lg:focus{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-l-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-t-full:focus{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-r-full:focus{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-b-full:focus{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-l-full:focus{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-tl-none:focus{
    border-top-left-radius     : 0 !important;
  }

  .lg\:focus\:rounded-tr-none:focus{
    border-top-right-radius     : 0 !important;
  }

  .lg\:focus\:rounded-br-none:focus{
    border-bottom-right-radius     : 0 !important;
  }

  .lg\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius     : 0 !important;
  }

  .lg\:focus\:rounded-tl-sm:focus{
    border-top-left-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-tr-sm:focus{
    border-top-right-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .lg\:focus\:rounded-tl:focus{
    border-top-left-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-tr:focus{
    border-top-right-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-br:focus{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-bl:focus{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .lg\:focus\:rounded-tl-md:focus{
    border-top-left-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-tr-md:focus{
    border-top-right-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-br-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .lg\:focus\:rounded-tl-lg:focus{
    border-top-left-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-tr-lg:focus{
    border-top-right-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .lg\:focus\:rounded-tl-full:focus{
    border-top-left-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-tr-full:focus{
    border-top-right-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-br-full:focus{
    border-bottom-right-radius     : 9999px !important;
  }

  .lg\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius     : 9999px !important;
  }

  .lg\:border-solid{
    border-style     : solid !important;
  }

  .lg\:border-dashed{
    border-style     : dashed !important;
  }

  .lg\:border-dotted{
    border-style     : dotted !important;
  }

  .lg\:border-double{
    border-style     : double !important;
  }

  .lg\:border-none{
    border-style     : none !important;
  }

  .group:hover .lg\:group-hover\:border-solid{
    border-style     : solid !important;
  }

  .group:hover .lg\:group-hover\:border-dashed{
    border-style     : dashed !important;
  }

  .group:hover .lg\:group-hover\:border-dotted{
    border-style     : dotted !important;
  }

  .group:hover .lg\:group-hover\:border-double{
    border-style     : double !important;
  }

  .group:hover .lg\:group-hover\:border-none{
    border-style     : none !important;
  }

  .lg\:hover\:border-solid:hover{
    border-style     : solid !important;
  }

  .lg\:hover\:border-dashed:hover{
    border-style     : dashed !important;
  }

  .lg\:hover\:border-dotted:hover{
    border-style     : dotted !important;
  }

  .lg\:hover\:border-double:hover{
    border-style     : double !important;
  }

  .lg\:hover\:border-none:hover{
    border-style     : none !important;
  }

  .lg\:focus\:border-solid:focus{
    border-style     : solid !important;
  }

  .lg\:focus\:border-dashed:focus{
    border-style     : dashed !important;
  }

  .lg\:focus\:border-dotted:focus{
    border-style     : dotted !important;
  }

  .lg\:focus\:border-double:focus{
    border-style     : double !important;
  }

  .lg\:focus\:border-none:focus{
    border-style     : none !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;
  }

  .group:hover .lg\:group-hover\:border-0{
    border-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-2{
    border-width     : 2px !important;
  }

  .group:hover .lg\:group-hover\:border-4{
    border-width     : 4px !important;
  }

  .group:hover .lg\:group-hover\:border-8{
    border-width     : 8px !important;
  }

  .group:hover .lg\:group-hover\:border{
    border-width     : 1px !important;
  }

  .group:hover .lg\:group-hover\:border-t-0{
    border-top-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-r-0{
    border-right-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-b-0{
    border-bottom-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-l-0{
    border-left-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:border-t-2{
    border-top-width     : 2px !important;
  }

  .group:hover .lg\:group-hover\:border-r-2{
    border-right-width     : 2px !important;
  }

  .group:hover .lg\:group-hover\:border-b-2{
    border-bottom-width     : 2px !important;
  }

  .group:hover .lg\:group-hover\:border-l-2{
    border-left-width     : 2px !important;
  }

  .group:hover .lg\:group-hover\:border-t-4{
    border-top-width     : 4px !important;
  }

  .group:hover .lg\:group-hover\:border-r-4{
    border-right-width     : 4px !important;
  }

  .group:hover .lg\:group-hover\:border-b-4{
    border-bottom-width     : 4px !important;
  }

  .group:hover .lg\:group-hover\:border-l-4{
    border-left-width     : 4px !important;
  }

  .group:hover .lg\:group-hover\:border-t-8{
    border-top-width     : 8px !important;
  }

  .group:hover .lg\:group-hover\:border-r-8{
    border-right-width     : 8px !important;
  }

  .group:hover .lg\:group-hover\:border-b-8{
    border-bottom-width     : 8px !important;
  }

  .group:hover .lg\:group-hover\:border-l-8{
    border-left-width     : 8px !important;
  }

  .group:hover .lg\:group-hover\:border-t{
    border-top-width     : 1px !important;
  }

  .group:hover .lg\:group-hover\:border-r{
    border-right-width     : 1px !important;
  }

  .group:hover .lg\:group-hover\:border-b{
    border-bottom-width     : 1px !important;
  }

  .group:hover .lg\:group-hover\:border-l{
    border-left-width     : 1px !important;
  }

  .lg\:hover\:border-0:hover{
    border-width     : 0 !important;
  }

  .lg\:hover\:border-2:hover{
    border-width     : 2px !important;
  }

  .lg\:hover\:border-4:hover{
    border-width     : 4px !important;
  }

  .lg\:hover\:border-8:hover{
    border-width     : 8px !important;
  }

  .lg\:hover\:border:hover{
    border-width     : 1px !important;
  }

  .lg\:hover\:border-t-0:hover{
    border-top-width     : 0 !important;
  }

  .lg\:hover\:border-r-0:hover{
    border-right-width     : 0 !important;
  }

  .lg\:hover\:border-b-0:hover{
    border-bottom-width     : 0 !important;
  }

  .lg\:hover\:border-l-0:hover{
    border-left-width     : 0 !important;
  }

  .lg\:hover\:border-t-2:hover{
    border-top-width     : 2px !important;
  }

  .lg\:hover\:border-r-2:hover{
    border-right-width     : 2px !important;
  }

  .lg\:hover\:border-b-2:hover{
    border-bottom-width     : 2px !important;
  }

  .lg\:hover\:border-l-2:hover{
    border-left-width     : 2px !important;
  }

  .lg\:hover\:border-t-4:hover{
    border-top-width     : 4px !important;
  }

  .lg\:hover\:border-r-4:hover{
    border-right-width     : 4px !important;
  }

  .lg\:hover\:border-b-4:hover{
    border-bottom-width     : 4px !important;
  }

  .lg\:hover\:border-l-4:hover{
    border-left-width     : 4px !important;
  }

  .lg\:hover\:border-t-8:hover{
    border-top-width     : 8px !important;
  }

  .lg\:hover\:border-r-8:hover{
    border-right-width     : 8px !important;
  }

  .lg\:hover\:border-b-8:hover{
    border-bottom-width     : 8px !important;
  }

  .lg\:hover\:border-l-8:hover{
    border-left-width     : 8px !important;
  }

  .lg\:hover\:border-t:hover{
    border-top-width     : 1px !important;
  }

  .lg\:hover\:border-r:hover{
    border-right-width     : 1px !important;
  }

  .lg\:hover\:border-b:hover{
    border-bottom-width     : 1px !important;
  }

  .lg\:hover\:border-l:hover{
    border-left-width     : 1px !important;
  }

  .lg\:focus\:border-0:focus{
    border-width     : 0 !important;
  }

  .lg\:focus\:border-2:focus{
    border-width     : 2px !important;
  }

  .lg\:focus\:border-4:focus{
    border-width     : 4px !important;
  }

  .lg\:focus\:border-8:focus{
    border-width     : 8px !important;
  }

  .lg\:focus\:border:focus{
    border-width     : 1px !important;
  }

  .lg\:focus\:border-t-0:focus{
    border-top-width     : 0 !important;
  }

  .lg\:focus\:border-r-0:focus{
    border-right-width     : 0 !important;
  }

  .lg\:focus\:border-b-0:focus{
    border-bottom-width     : 0 !important;
  }

  .lg\:focus\:border-l-0:focus{
    border-left-width     : 0 !important;
  }

  .lg\:focus\:border-t-2:focus{
    border-top-width     : 2px !important;
  }

  .lg\:focus\:border-r-2:focus{
    border-right-width     : 2px !important;
  }

  .lg\:focus\:border-b-2:focus{
    border-bottom-width     : 2px !important;
  }

  .lg\:focus\:border-l-2:focus{
    border-left-width     : 2px !important;
  }

  .lg\:focus\:border-t-4:focus{
    border-top-width     : 4px !important;
  }

  .lg\:focus\:border-r-4:focus{
    border-right-width     : 4px !important;
  }

  .lg\:focus\:border-b-4:focus{
    border-bottom-width     : 4px !important;
  }

  .lg\:focus\:border-l-4:focus{
    border-left-width     : 4px !important;
  }

  .lg\:focus\:border-t-8:focus{
    border-top-width     : 8px !important;
  }

  .lg\:focus\:border-r-8:focus{
    border-right-width     : 8px !important;
  }

  .lg\:focus\:border-b-8:focus{
    border-bottom-width     : 8px !important;
  }

  .lg\:focus\:border-l-8:focus{
    border-left-width     : 8px !important;
  }

  .lg\:focus\:border-t:focus{
    border-top-width     : 1px !important;
  }

  .lg\:focus\:border-r:focus{
    border-right-width     : 1px !important;
  }

  .lg\:focus\:border-b:focus{
    border-bottom-width     : 1px !important;
  }

  .lg\:focus\:border-l:focus{
    border-left-width     : 1px !important;
  }

  .lg\:box-border{
    box-sizing     : border-box !important;
  }

  .lg\:box-content{
    box-sizing     : content-box !important;
  }

  .group:hover .lg\:group-hover\:box-border{
    box-sizing     : border-box !important;
  }

  .group:hover .lg\:group-hover\:box-content{
    box-sizing     : content-box !important;
  }

  .lg\:hover\:box-border:hover{
    box-sizing     : border-box !important;
  }

  .lg\:hover\:box-content:hover{
    box-sizing     : content-box !important;
  }

  .lg\:focus\:box-border:focus{
    box-sizing     : border-box !important;
  }

  .lg\:focus\:box-content:focus{
    box-sizing     : content-box !important;
  }

  .lg\:cursor-auto{
    cursor     : auto !important;
  }

  .lg\:cursor-default{
    cursor     : default !important;
  }

  .lg\:cursor-pointer{
    cursor     : pointer !important;
  }

  .lg\:cursor-wait{
    cursor     : wait !important;
  }

  .lg\:cursor-text{
    cursor     : text !important;
  }

  .lg\:cursor-move{
    cursor     : move !important;
  }

  .lg\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .group:hover .lg\:group-hover\:cursor-auto{
    cursor     : auto !important;
  }

  .group:hover .lg\:group-hover\:cursor-default{
    cursor     : default !important;
  }

  .group:hover .lg\:group-hover\:cursor-pointer{
    cursor     : pointer !important;
  }

  .group:hover .lg\:group-hover\:cursor-wait{
    cursor     : wait !important;
  }

  .group:hover .lg\:group-hover\:cursor-text{
    cursor     : text !important;
  }

  .group:hover .lg\:group-hover\:cursor-move{
    cursor     : move !important;
  }

  .group:hover .lg\:group-hover\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .lg\:hover\:cursor-auto:hover{
    cursor     : auto !important;
  }

  .lg\:hover\:cursor-default:hover{
    cursor     : default !important;
  }

  .lg\:hover\:cursor-pointer:hover{
    cursor     : pointer !important;
  }

  .lg\:hover\:cursor-wait:hover{
    cursor     : wait !important;
  }

  .lg\:hover\:cursor-text:hover{
    cursor     : text !important;
  }

  .lg\:hover\:cursor-move:hover{
    cursor     : move !important;
  }

  .lg\:hover\:cursor-not-allowed:hover{
    cursor     : not-allowed !important;
  }

  .lg\:focus\:cursor-auto:focus{
    cursor     : auto !important;
  }

  .lg\:focus\:cursor-default:focus{
    cursor     : default !important;
  }

  .lg\:focus\:cursor-pointer:focus{
    cursor     : pointer !important;
  }

  .lg\:focus\:cursor-wait:focus{
    cursor     : wait !important;
  }

  .lg\:focus\:cursor-text:focus{
    cursor     : text !important;
  }

  .lg\:focus\:cursor-move:focus{
    cursor     : move !important;
  }

  .lg\:focus\:cursor-not-allowed:focus{
    cursor     : not-allowed !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\:hidden{
    display     : none !important;
  }

  .group:hover .lg\:group-hover\:block{
    display     : block !important;
  }

  .group:hover .lg\:group-hover\:inline-block{
    display     : inline-block !important;
  }

  .group:hover .lg\:group-hover\:inline{
    display     : inline !important;
  }

  .group:hover .lg\:group-hover\:flex{
    display     : flex !important;
  }

  .group:hover .lg\:group-hover\:inline-flex{
    display     : inline-flex !important;
  }

  .group:hover .lg\:group-hover\:table{
    display     : table !important;
  }

  .group:hover .lg\:group-hover\:table-caption{
    display     : table-caption !important;
  }

  .group:hover .lg\:group-hover\:table-cell{
    display     : table-cell !important;
  }

  .group:hover .lg\:group-hover\:table-column{
    display     : table-column !important;
  }

  .group:hover .lg\:group-hover\:table-column-group{
    display     : table-column-group !important;
  }

  .group:hover .lg\:group-hover\:table-footer-group{
    display     : table-footer-group !important;
  }

  .group:hover .lg\:group-hover\:table-header-group{
    display     : table-header-group !important;
  }

  .group:hover .lg\:group-hover\:table-row-group{
    display     : table-row-group !important;
  }

  .group:hover .lg\:group-hover\:table-row{
    display     : table-row !important;
  }

  .group:hover .lg\:group-hover\:flow-root{
    display     : flow-root !important;
  }

  .group:hover .lg\:group-hover\:grid{
    display     : grid !important;
  }

  .group:hover .lg\:group-hover\:inline-grid{
    display     : inline-grid !important;
  }

  .group:hover .lg\:group-hover\:hidden{
    display     : none !important;
  }

  .lg\:hover\:block:hover{
    display     : block !important;
  }

  .lg\:hover\:inline-block:hover{
    display     : inline-block !important;
  }

  .lg\:hover\:inline:hover{
    display     : inline !important;
  }

  .lg\:hover\:flex:hover{
    display     : flex !important;
  }

  .lg\:hover\:inline-flex:hover{
    display     : inline-flex !important;
  }

  .lg\:hover\:table:hover{
    display     : table !important;
  }

  .lg\:hover\:table-caption:hover{
    display     : table-caption !important;
  }

  .lg\:hover\:table-cell:hover{
    display     : table-cell !important;
  }

  .lg\:hover\:table-column:hover{
    display     : table-column !important;
  }

  .lg\:hover\:table-column-group:hover{
    display     : table-column-group !important;
  }

  .lg\:hover\:table-footer-group:hover{
    display     : table-footer-group !important;
  }

  .lg\:hover\:table-header-group:hover{
    display     : table-header-group !important;
  }

  .lg\:hover\:table-row-group:hover{
    display     : table-row-group !important;
  }

  .lg\:hover\:table-row:hover{
    display     : table-row !important;
  }

  .lg\:hover\:flow-root:hover{
    display     : flow-root !important;
  }

  .lg\:hover\:grid:hover{
    display     : grid !important;
  }

  .lg\:hover\:inline-grid:hover{
    display     : inline-grid !important;
  }

  .lg\:hover\:hidden:hover{
    display     : none !important;
  }

  .lg\:focus\:block:focus{
    display     : block !important;
  }

  .lg\:focus\:inline-block:focus{
    display     : inline-block !important;
  }

  .lg\:focus\:inline:focus{
    display     : inline !important;
  }

  .lg\:focus\:flex:focus{
    display     : flex !important;
  }

  .lg\:focus\:inline-flex:focus{
    display     : inline-flex !important;
  }

  .lg\:focus\:table:focus{
    display     : table !important;
  }

  .lg\:focus\:table-caption:focus{
    display     : table-caption !important;
  }

  .lg\:focus\:table-cell:focus{
    display     : table-cell !important;
  }

  .lg\:focus\:table-column:focus{
    display     : table-column !important;
  }

  .lg\:focus\:table-column-group:focus{
    display     : table-column-group !important;
  }

  .lg\:focus\:table-footer-group:focus{
    display     : table-footer-group !important;
  }

  .lg\:focus\:table-header-group:focus{
    display     : table-header-group !important;
  }

  .lg\:focus\:table-row-group:focus{
    display     : table-row-group !important;
  }

  .lg\:focus\:table-row:focus{
    display     : table-row !important;
  }

  .lg\:focus\:flow-root:focus{
    display     : flow-root !important;
  }

  .lg\:focus\:grid:focus{
    display     : grid !important;
  }

  .lg\:focus\:inline-grid:focus{
    display     : inline-grid !important;
  }

  .lg\:focus\:hidden:focus{
    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;
  }

  .group:hover .lg\:group-hover\:flex-row{
    flex-direction     : row !important;
  }

  .group:hover .lg\:group-hover\:flex-row-reverse{
    flex-direction     : row-reverse !important;
  }

  .group:hover .lg\:group-hover\:flex-col{
    flex-direction     : column !important;
  }

  .group:hover .lg\:group-hover\:flex-col-reverse{
    flex-direction     : column-reverse !important;
  }

  .lg\:hover\:flex-row:hover{
    flex-direction     : row !important;
  }

  .lg\:hover\:flex-row-reverse:hover{
    flex-direction     : row-reverse !important;
  }

  .lg\:hover\:flex-col:hover{
    flex-direction     : column !important;
  }

  .lg\:hover\:flex-col-reverse:hover{
    flex-direction     : column-reverse !important;
  }

  .lg\:focus\:flex-row:focus{
    flex-direction     : row !important;
  }

  .lg\:focus\:flex-row-reverse:focus{
    flex-direction     : row-reverse !important;
  }

  .lg\:focus\:flex-col:focus{
    flex-direction     : column !important;
  }

  .lg\:focus\:flex-col-reverse:focus{
    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;
  }

  .group:hover .lg\:group-hover\:flex-wrap{
    flex-wrap     : wrap !important;
  }

  .group:hover .lg\:group-hover\:flex-wrap-reverse{
    flex-wrap     : wrap-reverse !important;
  }

  .group:hover .lg\:group-hover\:flex-no-wrap{
    flex-wrap     : nowrap !important;
  }

  .lg\:hover\:flex-wrap:hover{
    flex-wrap     : wrap !important;
  }

  .lg\:hover\:flex-wrap-reverse:hover{
    flex-wrap     : wrap-reverse !important;
  }

  .lg\:hover\:flex-no-wrap:hover{
    flex-wrap     : nowrap !important;
  }

  .lg\:focus\:flex-wrap:focus{
    flex-wrap     : wrap !important;
  }

  .lg\:focus\:flex-wrap-reverse:focus{
    flex-wrap     : wrap-reverse !important;
  }

  .lg\:focus\:flex-no-wrap:focus{
    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;
  }

  .group:hover .lg\:group-hover\:items-start{
    align-items     : flex-start !important;
  }

  .group:hover .lg\:group-hover\:items-end{
    align-items     : flex-end !important;
  }

  .group:hover .lg\:group-hover\:items-center{
    align-items     : center !important;
  }

  .group:hover .lg\:group-hover\:items-baseline{
    align-items     : baseline !important;
  }

  .group:hover .lg\:group-hover\:items-stretch{
    align-items     : stretch !important;
  }

  .lg\:hover\:items-start:hover{
    align-items     : flex-start !important;
  }

  .lg\:hover\:items-end:hover{
    align-items     : flex-end !important;
  }

  .lg\:hover\:items-center:hover{
    align-items     : center !important;
  }

  .lg\:hover\:items-baseline:hover{
    align-items     : baseline !important;
  }

  .lg\:hover\:items-stretch:hover{
    align-items     : stretch !important;
  }

  .lg\:focus\:items-start:focus{
    align-items     : flex-start !important;
  }

  .lg\:focus\:items-end:focus{
    align-items     : flex-end !important;
  }

  .lg\:focus\:items-center:focus{
    align-items     : center !important;
  }

  .lg\:focus\:items-baseline:focus{
    align-items     : baseline !important;
  }

  .lg\:focus\:items-stretch:focus{
    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;
  }

  .group:hover .lg\:group-hover\:self-auto{
    align-self     : auto !important;
  }

  .group:hover .lg\:group-hover\:self-start{
    align-self     : flex-start !important;
  }

  .group:hover .lg\:group-hover\:self-end{
    align-self     : flex-end !important;
  }

  .group:hover .lg\:group-hover\:self-center{
    align-self     : center !important;
  }

  .group:hover .lg\:group-hover\:self-stretch{
    align-self     : stretch !important;
  }

  .lg\:hover\:self-auto:hover{
    align-self     : auto !important;
  }

  .lg\:hover\:self-start:hover{
    align-self     : flex-start !important;
  }

  .lg\:hover\:self-end:hover{
    align-self     : flex-end !important;
  }

  .lg\:hover\:self-center:hover{
    align-self     : center !important;
  }

  .lg\:hover\:self-stretch:hover{
    align-self     : stretch !important;
  }

  .lg\:focus\:self-auto:focus{
    align-self     : auto !important;
  }

  .lg\:focus\:self-start:focus{
    align-self     : flex-start !important;
  }

  .lg\:focus\:self-end:focus{
    align-self     : flex-end !important;
  }

  .lg\:focus\:self-center:focus{
    align-self     : center !important;
  }

  .lg\:focus\:self-stretch:focus{
    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;
  }

  .group:hover .lg\:group-hover\:justify-start{
    justify-content     : flex-start !important;
  }

  .group:hover .lg\:group-hover\:justify-end{
    justify-content     : flex-end !important;
  }

  .group:hover .lg\:group-hover\:justify-center{
    justify-content     : center !important;
  }

  .group:hover .lg\:group-hover\:justify-between{
    justify-content     : space-between !important;
  }

  .group:hover .lg\:group-hover\:justify-around{
    justify-content     : space-around !important;
  }

  .group:hover .lg\:group-hover\:justify-evenly{
    justify-content     : space-evenly !important;
  }

  .lg\:hover\:justify-start:hover{
    justify-content     : flex-start !important;
  }

  .lg\:hover\:justify-end:hover{
    justify-content     : flex-end !important;
  }

  .lg\:hover\:justify-center:hover{
    justify-content     : center !important;
  }

  .lg\:hover\:justify-between:hover{
    justify-content     : space-between !important;
  }

  .lg\:hover\:justify-around:hover{
    justify-content     : space-around !important;
  }

  .lg\:hover\:justify-evenly:hover{
    justify-content     : space-evenly !important;
  }

  .lg\:focus\:justify-start:focus{
    justify-content     : flex-start !important;
  }

  .lg\:focus\:justify-end:focus{
    justify-content     : flex-end !important;
  }

  .lg\:focus\:justify-center:focus{
    justify-content     : center !important;
  }

  .lg\:focus\:justify-between:focus{
    justify-content     : space-between !important;
  }

  .lg\:focus\:justify-around:focus{
    justify-content     : space-around !important;
  }

  .lg\:focus\:justify-evenly:focus{
    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;
  }

  .group:hover .lg\:group-hover\:content-center{
    align-content     : center !important;
  }

  .group:hover .lg\:group-hover\:content-start{
    align-content     : flex-start !important;
  }

  .group:hover .lg\:group-hover\:content-end{
    align-content     : flex-end !important;
  }

  .group:hover .lg\:group-hover\:content-between{
    align-content     : space-between !important;
  }

  .group:hover .lg\:group-hover\:content-around{
    align-content     : space-around !important;
  }

  .lg\:hover\:content-center:hover{
    align-content     : center !important;
  }

  .lg\:hover\:content-start:hover{
    align-content     : flex-start !important;
  }

  .lg\:hover\:content-end:hover{
    align-content     : flex-end !important;
  }

  .lg\:hover\:content-between:hover{
    align-content     : space-between !important;
  }

  .lg\:hover\:content-around:hover{
    align-content     : space-around !important;
  }

  .lg\:focus\:content-center:focus{
    align-content     : center !important;
  }

  .lg\:focus\:content-start:focus{
    align-content     : flex-start !important;
  }

  .lg\:focus\:content-end:focus{
    align-content     : flex-end !important;
  }

  .lg\:focus\:content-between:focus{
    align-content     : space-between !important;
  }

  .lg\:focus\:content-around:focus{
    align-content     : space-around !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;
  }

  .group:hover .lg\:group-hover\:flex-1{
    flex     : 1 1 0% !important;
  }

  .group:hover .lg\:group-hover\:flex-auto{
    flex     : 1 1 auto !important;
  }

  .group:hover .lg\:group-hover\:flex-initial{
    flex     : 0 1 auto !important;
  }

  .group:hover .lg\:group-hover\:flex-none{
    flex     : none !important;
  }

  .lg\:hover\:flex-1:hover{
    flex     : 1 1 0% !important;
  }

  .lg\:hover\:flex-auto:hover{
    flex     : 1 1 auto !important;
  }

  .lg\:hover\:flex-initial:hover{
    flex     : 0 1 auto !important;
  }

  .lg\:hover\:flex-none:hover{
    flex     : none !important;
  }

  .lg\:focus\:flex-1:focus{
    flex     : 1 1 0% !important;
  }

  .lg\:focus\:flex-auto:focus{
    flex     : 1 1 auto !important;
  }

  .lg\:focus\:flex-initial:focus{
    flex     : 0 1 auto !important;
  }

  .lg\:focus\:flex-none:focus{
    flex     : none !important;
  }

  .lg\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .lg\:flex-grow{
    flex-grow     : 1 !important;
  }

  .group:hover .lg\:group-hover\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .group:hover .lg\:group-hover\:flex-grow{
    flex-grow     : 1 !important;
  }

  .lg\:hover\:flex-grow-0:hover{
    flex-grow     : 0 !important;
  }

  .lg\:hover\:flex-grow:hover{
    flex-grow     : 1 !important;
  }

  .lg\:focus\:flex-grow-0:focus{
    flex-grow     : 0 !important;
  }

  .lg\:focus\:flex-grow:focus{
    flex-grow     : 1 !important;
  }

  .lg\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .lg\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .group:hover .lg\:group-hover\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .group:hover .lg\:group-hover\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .lg\:hover\:flex-shrink-0:hover{
    flex-shrink     : 0 !important;
  }

  .lg\:hover\:flex-shrink:hover{
    flex-shrink     : 1 !important;
  }

  .lg\:focus\:flex-shrink-0:focus{
    flex-shrink     : 0 !important;
  }

  .lg\:focus\:flex-shrink:focus{
    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;
  }

  .group:hover .lg\:group-hover\:order-1{
    order     : 1 !important;
  }

  .group:hover .lg\:group-hover\:order-2{
    order     : 2 !important;
  }

  .group:hover .lg\:group-hover\:order-3{
    order     : 3 !important;
  }

  .group:hover .lg\:group-hover\:order-4{
    order     : 4 !important;
  }

  .group:hover .lg\:group-hover\:order-5{
    order     : 5 !important;
  }

  .group:hover .lg\:group-hover\:order-6{
    order     : 6 !important;
  }

  .group:hover .lg\:group-hover\:order-7{
    order     : 7 !important;
  }

  .group:hover .lg\:group-hover\:order-8{
    order     : 8 !important;
  }

  .group:hover .lg\:group-hover\:order-9{
    order     : 9 !important;
  }

  .group:hover .lg\:group-hover\:order-10{
    order     : 10 !important;
  }

  .group:hover .lg\:group-hover\:order-11{
    order     : 11 !important;
  }

  .group:hover .lg\:group-hover\:order-12{
    order     : 12 !important;
  }

  .group:hover .lg\:group-hover\:order-first{
    order     : -9999 !important;
  }

  .group:hover .lg\:group-hover\:order-last{
    order     : 9999 !important;
  }

  .group:hover .lg\:group-hover\:order-none{
    order     : 0 !important;
  }

  .lg\:hover\:order-1:hover{
    order     : 1 !important;
  }

  .lg\:hover\:order-2:hover{
    order     : 2 !important;
  }

  .lg\:hover\:order-3:hover{
    order     : 3 !important;
  }

  .lg\:hover\:order-4:hover{
    order     : 4 !important;
  }

  .lg\:hover\:order-5:hover{
    order     : 5 !important;
  }

  .lg\:hover\:order-6:hover{
    order     : 6 !important;
  }

  .lg\:hover\:order-7:hover{
    order     : 7 !important;
  }

  .lg\:hover\:order-8:hover{
    order     : 8 !important;
  }

  .lg\:hover\:order-9:hover{
    order     : 9 !important;
  }

  .lg\:hover\:order-10:hover{
    order     : 10 !important;
  }

  .lg\:hover\:order-11:hover{
    order     : 11 !important;
  }

  .lg\:hover\:order-12:hover{
    order     : 12 !important;
  }

  .lg\:hover\:order-first:hover{
    order     : -9999 !important;
  }

  .lg\:hover\:order-last:hover{
    order     : 9999 !important;
  }

  .lg\:hover\:order-none:hover{
    order     : 0 !important;
  }

  .lg\:focus\:order-1:focus{
    order     : 1 !important;
  }

  .lg\:focus\:order-2:focus{
    order     : 2 !important;
  }

  .lg\:focus\:order-3:focus{
    order     : 3 !important;
  }

  .lg\:focus\:order-4:focus{
    order     : 4 !important;
  }

  .lg\:focus\:order-5:focus{
    order     : 5 !important;
  }

  .lg\:focus\:order-6:focus{
    order     : 6 !important;
  }

  .lg\:focus\:order-7:focus{
    order     : 7 !important;
  }

  .lg\:focus\:order-8:focus{
    order     : 8 !important;
  }

  .lg\:focus\:order-9:focus{
    order     : 9 !important;
  }

  .lg\:focus\:order-10:focus{
    order     : 10 !important;
  }

  .lg\:focus\:order-11:focus{
    order     : 11 !important;
  }

  .lg\:focus\:order-12:focus{
    order     : 12 !important;
  }

  .lg\:focus\:order-first:focus{
    order     : -9999 !important;
  }

  .lg\:focus\:order-last:focus{
    order     : 9999 !important;
  }

  .lg\:focus\:order-none:focus{
    order     : 0 !important;
  }

  .lg\:float-right{
    float     : right !important;
  }

  .lg\:float-left{
    float     : left !important;
  }

  .lg\:float-none{
    float     : none !important;
  }

  .lg\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .group:hover .lg\:group-hover\:float-right{
    float     : right !important;
  }

  .group:hover .lg\:group-hover\:float-left{
    float     : left !important;
  }

  .group:hover .lg\:group-hover\:float-none{
    float     : none !important;
  }

  .group:hover .lg\:group-hover\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .lg\:hover\:float-right:hover{
    float     : right !important;
  }

  .lg\:hover\:float-left:hover{
    float     : left !important;
  }

  .lg\:hover\:float-none:hover{
    float     : none !important;
  }

  .lg\:hover\:clearfix:hover:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .lg\:focus\:float-right:focus{
    float     : right !important;
  }

  .lg\:focus\:float-left:focus{
    float     : left !important;
  }

  .lg\:focus\:float-none:focus{
    float     : none !important;
  }

  .lg\:focus\:clearfix:focus:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .lg\:clear-left{
    clear     : left !important;
  }

  .lg\:clear-right{
    clear     : right !important;
  }

  .lg\:clear-both{
    clear     : both !important;
  }

  .lg\:clear-none{
    clear     : none !important;
  }

  .group:hover .lg\:group-hover\:clear-left{
    clear     : left !important;
  }

  .group:hover .lg\:group-hover\:clear-right{
    clear     : right !important;
  }

  .group:hover .lg\:group-hover\:clear-both{
    clear     : both !important;
  }

  .group:hover .lg\:group-hover\:clear-none{
    clear     : none !important;
  }

  .lg\:hover\:clear-left:hover{
    clear     : left !important;
  }

  .lg\:hover\:clear-right:hover{
    clear     : right !important;
  }

  .lg\:hover\:clear-both:hover{
    clear     : both !important;
  }

  .lg\:hover\:clear-none:hover{
    clear     : none !important;
  }

  .lg\:focus\:clear-left:focus{
    clear     : left !important;
  }

  .lg\:focus\:clear-right:focus{
    clear     : right !important;
  }

  .lg\:focus\:clear-both:focus{
    clear     : both !important;
  }

  .lg\:focus\:clear-none:focus{
    clear     : none !important;
  }

  .lg\:font-sans{
    font-family     : 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;
  }

  .lg\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .lg\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .group:hover .lg\:group-hover\:font-sans{
    font-family     : 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;
  }

  .group:hover .lg\:group-hover\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .group:hover .lg\:group-hover\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .lg\:hover\:font-sans:hover{
    font-family     : 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;
  }

  .lg\:hover\:font-serif:hover{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .lg\:hover\:font-mono:hover{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .lg\:focus\:font-sans:focus{
    font-family     : 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;
  }

  .lg\:focus\:font-serif:focus{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .lg\:focus\:font-mono:focus{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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;
  }

  .group:hover .lg\:group-hover\:font-hairline{
    font-weight     : 100 !important;
  }

  .group:hover .lg\:group-hover\:font-thin{
    font-weight     : 200 !important;
  }

  .group:hover .lg\:group-hover\:font-light{
    font-weight     : 300 !important;
  }

  .group:hover .lg\:group-hover\:font-normal{
    font-weight     : 400 !important;
  }

  .group:hover .lg\:group-hover\:font-medium{
    font-weight     : 500 !important;
  }

  .group:hover .lg\:group-hover\:font-semibold{
    font-weight     : 600 !important;
  }

  .group:hover .lg\:group-hover\:font-bold{
    font-weight     : 700 !important;
  }

  .group:hover .lg\:group-hover\:font-extrabold{
    font-weight     : 800 !important;
  }

  .group:hover .lg\:group-hover\:font-black{
    font-weight     : 900 !important;
  }

  .lg\:hover\:font-hairline:hover{
    font-weight     : 100 !important;
  }

  .lg\:hover\:font-thin:hover{
    font-weight     : 200 !important;
  }

  .lg\:hover\:font-light:hover{
    font-weight     : 300 !important;
  }

  .lg\:hover\:font-normal:hover{
    font-weight     : 400 !important;
  }

  .lg\:hover\:font-medium:hover{
    font-weight     : 500 !important;
  }

  .lg\:hover\:font-semibold:hover{
    font-weight     : 600 !important;
  }

  .lg\:hover\:font-bold:hover{
    font-weight     : 700 !important;
  }

  .lg\:hover\:font-extrabold:hover{
    font-weight     : 800 !important;
  }

  .lg\:hover\:font-black:hover{
    font-weight     : 900 !important;
  }

  .lg\:focus\:font-hairline:focus{
    font-weight     : 100 !important;
  }

  .lg\:focus\:font-thin:focus{
    font-weight     : 200 !important;
  }

  .lg\:focus\:font-light:focus{
    font-weight     : 300 !important;
  }

  .lg\:focus\:font-normal:focus{
    font-weight     : 400 !important;
  }

  .lg\:focus\:font-medium:focus{
    font-weight     : 500 !important;
  }

  .lg\:focus\:font-semibold:focus{
    font-weight     : 600 !important;
  }

  .lg\:focus\:font-bold:focus{
    font-weight     : 700 !important;
  }

  .lg\:focus\:font-extrabold:focus{
    font-weight     : 800 !important;
  }

  .lg\:focus\:font-black:focus{
    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-20{
    height     : 5rem !important;
  }

  .lg\:h-24{
    height     : 6rem !important;
  }

  .lg\:h-28{
    height     : 7rem !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-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-96{
    height     : 24rem !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-screen{
    height     : 100vh !important;
  }

  .group:hover .lg\:group-hover\:h-0{
    height     : 0 !important;
  }

  .group:hover .lg\:group-hover\:h-1{
    height     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:h-2{
    height     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:h-3{
    height     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:h-4{
    height     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:h-5{
    height     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:h-6{
    height     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:h-7{
    height     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:h-8{
    height     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:h-9{
    height     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:h-10{
    height     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:h-11{
    height     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:h-12{
    height     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:h-13{
    height     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:h-14{
    height     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:h-15{
    height     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:h-16{
    height     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:h-20{
    height     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:h-24{
    height     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:h-28{
    height     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:h-32{
    height     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:h-36{
    height     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:h-40{
    height     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:h-44{
    height     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:h-48{
    height     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:h-52{
    height     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:h-56{
    height     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:h-60{
    height     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:h-64{
    height     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:h-72{
    height     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:h-80{
    height     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:h-96{
    height     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:h-auto{
    height     : auto !important;
  }

  .group:hover .lg\:group-hover\:h-px{
    height     : 1px !important;
  }

  .group:hover .lg\:group-hover\:h-0\.5{
    height     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:h-1\.5{
    height     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:h-2\.5{
    height     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:h-3\.5{
    height     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:h-1\/2{
    height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:h-1\/3{
    height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-2\/3{
    height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-1\/4{
    height     : 25% !important;
  }

  .group:hover .lg\:group-hover\:h-2\/4{
    height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:h-3\/4{
    height     : 75% !important;
  }

  .group:hover .lg\:group-hover\:h-1\/5{
    height     : 20% !important;
  }

  .group:hover .lg\:group-hover\:h-2\/5{
    height     : 40% !important;
  }

  .group:hover .lg\:group-hover\:h-3\/5{
    height     : 60% !important;
  }

  .group:hover .lg\:group-hover\:h-4\/5{
    height     : 80% !important;
  }

  .group:hover .lg\:group-hover\:h-1\/6{
    height     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-2\/6{
    height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-3\/6{
    height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:h-4\/6{
    height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-5\/6{
    height     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-1\/12{
    height     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-2\/12{
    height     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-3\/12{
    height     : 25% !important;
  }

  .group:hover .lg\:group-hover\:h-4\/12{
    height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-5\/12{
    height     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-6\/12{
    height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:h-7\/12{
    height     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-8\/12{
    height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-9\/12{
    height     : 75% !important;
  }

  .group:hover .lg\:group-hover\:h-10\/12{
    height     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:h-11\/12{
    height     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:h-full{
    height     : 100% !important;
  }

  .group:hover .lg\:group-hover\:h-screen{
    height     : 100vh !important;
  }

  .lg\:hover\:h-0:hover{
    height     : 0 !important;
  }

  .lg\:hover\:h-1:hover{
    height     : 0.25rem !important;
  }

  .lg\:hover\:h-2:hover{
    height     : 0.5rem !important;
  }

  .lg\:hover\:h-3:hover{
    height     : 0.75rem !important;
  }

  .lg\:hover\:h-4:hover{
    height     : 1rem !important;
  }

  .lg\:hover\:h-5:hover{
    height     : 1.25rem !important;
  }

  .lg\:hover\:h-6:hover{
    height     : 1.5rem !important;
  }

  .lg\:hover\:h-7:hover{
    height     : 1.75rem !important;
  }

  .lg\:hover\:h-8:hover{
    height     : 2rem !important;
  }

  .lg\:hover\:h-9:hover{
    height     : 2.25rem !important;
  }

  .lg\:hover\:h-10:hover{
    height     : 2.5rem !important;
  }

  .lg\:hover\:h-11:hover{
    height     : 2.75rem !important;
  }

  .lg\:hover\:h-12:hover{
    height     : 3rem !important;
  }

  .lg\:hover\:h-13:hover{
    height     : 3.25rem !important;
  }

  .lg\:hover\:h-14:hover{
    height     : 3.5rem !important;
  }

  .lg\:hover\:h-15:hover{
    height     : 3.75rem !important;
  }

  .lg\:hover\:h-16:hover{
    height     : 4rem !important;
  }

  .lg\:hover\:h-20:hover{
    height     : 5rem !important;
  }

  .lg\:hover\:h-24:hover{
    height     : 6rem !important;
  }

  .lg\:hover\:h-28:hover{
    height     : 7rem !important;
  }

  .lg\:hover\:h-32:hover{
    height     : 8rem !important;
  }

  .lg\:hover\:h-36:hover{
    height     : 9rem !important;
  }

  .lg\:hover\:h-40:hover{
    height     : 10rem !important;
  }

  .lg\:hover\:h-44:hover{
    height     : 11rem !important;
  }

  .lg\:hover\:h-48:hover{
    height     : 12rem !important;
  }

  .lg\:hover\:h-52:hover{
    height     : 13rem !important;
  }

  .lg\:hover\:h-56:hover{
    height     : 14rem !important;
  }

  .lg\:hover\:h-60:hover{
    height     : 15rem !important;
  }

  .lg\:hover\:h-64:hover{
    height     : 16rem !important;
  }

  .lg\:hover\:h-72:hover{
    height     : 18rem !important;
  }

  .lg\:hover\:h-80:hover{
    height     : 20rem !important;
  }

  .lg\:hover\:h-96:hover{
    height     : 24rem !important;
  }

  .lg\:hover\:h-auto:hover{
    height     : auto !important;
  }

  .lg\:hover\:h-px:hover{
    height     : 1px !important;
  }

  .lg\:hover\:h-0\.5:hover{
    height     : 0.125rem !important;
  }

  .lg\:hover\:h-1\.5:hover{
    height     : 0.375rem !important;
  }

  .lg\:hover\:h-2\.5:hover{
    height     : 0.625rem !important;
  }

  .lg\:hover\:h-3\.5:hover{
    height     : 0.875rem !important;
  }

  .lg\:hover\:h-1\/2:hover{
    height     : 50% !important;
  }

  .lg\:hover\:h-1\/3:hover{
    height     : 33.333333% !important;
  }

  .lg\:hover\:h-2\/3:hover{
    height     : 66.666667% !important;
  }

  .lg\:hover\:h-1\/4:hover{
    height     : 25% !important;
  }

  .lg\:hover\:h-2\/4:hover{
    height     : 50% !important;
  }

  .lg\:hover\:h-3\/4:hover{
    height     : 75% !important;
  }

  .lg\:hover\:h-1\/5:hover{
    height     : 20% !important;
  }

  .lg\:hover\:h-2\/5:hover{
    height     : 40% !important;
  }

  .lg\:hover\:h-3\/5:hover{
    height     : 60% !important;
  }

  .lg\:hover\:h-4\/5:hover{
    height     : 80% !important;
  }

  .lg\:hover\:h-1\/6:hover{
    height     : 16.666667% !important;
  }

  .lg\:hover\:h-2\/6:hover{
    height     : 33.333333% !important;
  }

  .lg\:hover\:h-3\/6:hover{
    height     : 50% !important;
  }

  .lg\:hover\:h-4\/6:hover{
    height     : 66.666667% !important;
  }

  .lg\:hover\:h-5\/6:hover{
    height     : 83.333333% !important;
  }

  .lg\:hover\:h-1\/12:hover{
    height     : 8.333333% !important;
  }

  .lg\:hover\:h-2\/12:hover{
    height     : 16.666667% !important;
  }

  .lg\:hover\:h-3\/12:hover{
    height     : 25% !important;
  }

  .lg\:hover\:h-4\/12:hover{
    height     : 33.333333% !important;
  }

  .lg\:hover\:h-5\/12:hover{
    height     : 41.666667% !important;
  }

  .lg\:hover\:h-6\/12:hover{
    height     : 50% !important;
  }

  .lg\:hover\:h-7\/12:hover{
    height     : 58.333333% !important;
  }

  .lg\:hover\:h-8\/12:hover{
    height     : 66.666667% !important;
  }

  .lg\:hover\:h-9\/12:hover{
    height     : 75% !important;
  }

  .lg\:hover\:h-10\/12:hover{
    height     : 83.333333% !important;
  }

  .lg\:hover\:h-11\/12:hover{
    height     : 91.666667% !important;
  }

  .lg\:hover\:h-full:hover{
    height     : 100% !important;
  }

  .lg\:hover\:h-screen:hover{
    height     : 100vh !important;
  }

  .lg\:focus\:h-0:focus{
    height     : 0 !important;
  }

  .lg\:focus\:h-1:focus{
    height     : 0.25rem !important;
  }

  .lg\:focus\:h-2:focus{
    height     : 0.5rem !important;
  }

  .lg\:focus\:h-3:focus{
    height     : 0.75rem !important;
  }

  .lg\:focus\:h-4:focus{
    height     : 1rem !important;
  }

  .lg\:focus\:h-5:focus{
    height     : 1.25rem !important;
  }

  .lg\:focus\:h-6:focus{
    height     : 1.5rem !important;
  }

  .lg\:focus\:h-7:focus{
    height     : 1.75rem !important;
  }

  .lg\:focus\:h-8:focus{
    height     : 2rem !important;
  }

  .lg\:focus\:h-9:focus{
    height     : 2.25rem !important;
  }

  .lg\:focus\:h-10:focus{
    height     : 2.5rem !important;
  }

  .lg\:focus\:h-11:focus{
    height     : 2.75rem !important;
  }

  .lg\:focus\:h-12:focus{
    height     : 3rem !important;
  }

  .lg\:focus\:h-13:focus{
    height     : 3.25rem !important;
  }

  .lg\:focus\:h-14:focus{
    height     : 3.5rem !important;
  }

  .lg\:focus\:h-15:focus{
    height     : 3.75rem !important;
  }

  .lg\:focus\:h-16:focus{
    height     : 4rem !important;
  }

  .lg\:focus\:h-20:focus{
    height     : 5rem !important;
  }

  .lg\:focus\:h-24:focus{
    height     : 6rem !important;
  }

  .lg\:focus\:h-28:focus{
    height     : 7rem !important;
  }

  .lg\:focus\:h-32:focus{
    height     : 8rem !important;
  }

  .lg\:focus\:h-36:focus{
    height     : 9rem !important;
  }

  .lg\:focus\:h-40:focus{
    height     : 10rem !important;
  }

  .lg\:focus\:h-44:focus{
    height     : 11rem !important;
  }

  .lg\:focus\:h-48:focus{
    height     : 12rem !important;
  }

  .lg\:focus\:h-52:focus{
    height     : 13rem !important;
  }

  .lg\:focus\:h-56:focus{
    height     : 14rem !important;
  }

  .lg\:focus\:h-60:focus{
    height     : 15rem !important;
  }

  .lg\:focus\:h-64:focus{
    height     : 16rem !important;
  }

  .lg\:focus\:h-72:focus{
    height     : 18rem !important;
  }

  .lg\:focus\:h-80:focus{
    height     : 20rem !important;
  }

  .lg\:focus\:h-96:focus{
    height     : 24rem !important;
  }

  .lg\:focus\:h-auto:focus{
    height     : auto !important;
  }

  .lg\:focus\:h-px:focus{
    height     : 1px !important;
  }

  .lg\:focus\:h-0\.5:focus{
    height     : 0.125rem !important;
  }

  .lg\:focus\:h-1\.5:focus{
    height     : 0.375rem !important;
  }

  .lg\:focus\:h-2\.5:focus{
    height     : 0.625rem !important;
  }

  .lg\:focus\:h-3\.5:focus{
    height     : 0.875rem !important;
  }

  .lg\:focus\:h-1\/2:focus{
    height     : 50% !important;
  }

  .lg\:focus\:h-1\/3:focus{
    height     : 33.333333% !important;
  }

  .lg\:focus\:h-2\/3:focus{
    height     : 66.666667% !important;
  }

  .lg\:focus\:h-1\/4:focus{
    height     : 25% !important;
  }

  .lg\:focus\:h-2\/4:focus{
    height     : 50% !important;
  }

  .lg\:focus\:h-3\/4:focus{
    height     : 75% !important;
  }

  .lg\:focus\:h-1\/5:focus{
    height     : 20% !important;
  }

  .lg\:focus\:h-2\/5:focus{
    height     : 40% !important;
  }

  .lg\:focus\:h-3\/5:focus{
    height     : 60% !important;
  }

  .lg\:focus\:h-4\/5:focus{
    height     : 80% !important;
  }

  .lg\:focus\:h-1\/6:focus{
    height     : 16.666667% !important;
  }

  .lg\:focus\:h-2\/6:focus{
    height     : 33.333333% !important;
  }

  .lg\:focus\:h-3\/6:focus{
    height     : 50% !important;
  }

  .lg\:focus\:h-4\/6:focus{
    height     : 66.666667% !important;
  }

  .lg\:focus\:h-5\/6:focus{
    height     : 83.333333% !important;
  }

  .lg\:focus\:h-1\/12:focus{
    height     : 8.333333% !important;
  }

  .lg\:focus\:h-2\/12:focus{
    height     : 16.666667% !important;
  }

  .lg\:focus\:h-3\/12:focus{
    height     : 25% !important;
  }

  .lg\:focus\:h-4\/12:focus{
    height     : 33.333333% !important;
  }

  .lg\:focus\:h-5\/12:focus{
    height     : 41.666667% !important;
  }

  .lg\:focus\:h-6\/12:focus{
    height     : 50% !important;
  }

  .lg\:focus\:h-7\/12:focus{
    height     : 58.333333% !important;
  }

  .lg\:focus\:h-8\/12:focus{
    height     : 66.666667% !important;
  }

  .lg\:focus\:h-9\/12:focus{
    height     : 75% !important;
  }

  .lg\:focus\:h-10\/12:focus{
    height     : 83.333333% !important;
  }

  .lg\:focus\:h-11\/12:focus{
    height     : 91.666667% !important;
  }

  .lg\:focus\:h-full:focus{
    height     : 100% !important;
  }

  .lg\:focus\:h-screen:focus{
    height     : 100vh !important;
  }

  .lg\:text-xs{
    font-size     : 0.75rem !important;
  }

  .lg\:text-sm{
    font-size     : 0.875rem !important;
  }

  .lg\:text-base{
    font-size     : 1rem !important;
  }

  .lg\:text-lg{
    font-size     : 1.125rem !important;
  }

  .lg\:text-xl{
    font-size     : 1.25rem !important;
  }

  .lg\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .lg\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .lg\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .lg\:text-5xl{
    font-size     : 3rem !important;
  }

  .lg\:text-6xl{
    font-size     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:text-xs{
    font-size     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:text-sm{
    font-size     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:text-base{
    font-size     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:text-lg{
    font-size     : 1.125rem !important;
  }

  .group:hover .lg\:group-hover\:text-xl{
    font-size     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .group:hover .lg\:group-hover\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:text-5xl{
    font-size     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:text-6xl{
    font-size     : 4rem !important;
  }

  .lg\:hover\:text-xs:hover{
    font-size     : 0.75rem !important;
  }

  .lg\:hover\:text-sm:hover{
    font-size     : 0.875rem !important;
  }

  .lg\:hover\:text-base:hover{
    font-size     : 1rem !important;
  }

  .lg\:hover\:text-lg:hover{
    font-size     : 1.125rem !important;
  }

  .lg\:hover\:text-xl:hover{
    font-size     : 1.25rem !important;
  }

  .lg\:hover\:text-2xl:hover{
    font-size     : 1.5rem !important;
  }

  .lg\:hover\:text-3xl:hover{
    font-size     : 1.875rem !important;
  }

  .lg\:hover\:text-4xl:hover{
    font-size     : 2.25rem !important;
  }

  .lg\:hover\:text-5xl:hover{
    font-size     : 3rem !important;
  }

  .lg\:hover\:text-6xl:hover{
    font-size     : 4rem !important;
  }

  .lg\:focus\:text-xs:focus{
    font-size     : 0.75rem !important;
  }

  .lg\:focus\:text-sm:focus{
    font-size     : 0.875rem !important;
  }

  .lg\:focus\:text-base:focus{
    font-size     : 1rem !important;
  }

  .lg\:focus\:text-lg:focus{
    font-size     : 1.125rem !important;
  }

  .lg\:focus\:text-xl:focus{
    font-size     : 1.25rem !important;
  }

  .lg\:focus\:text-2xl:focus{
    font-size     : 1.5rem !important;
  }

  .lg\:focus\:text-3xl:focus{
    font-size     : 1.875rem !important;
  }

  .lg\:focus\:text-4xl:focus{
    font-size     : 2.25rem !important;
  }

  .lg\:focus\:text-5xl:focus{
    font-size     : 3rem !important;
  }

  .lg\:focus\:text-6xl:focus{
    font-size     : 4rem !important;
  }

  .lg\:leading-3{
    line-height     : .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;
  }

  .group:hover .lg\:group-hover\:leading-3{
    line-height     : .75rem !important;
  }

  .group:hover .lg\:group-hover\:leading-4{
    line-height     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:leading-5{
    line-height     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:leading-6{
    line-height     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:leading-7{
    line-height     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:leading-8{
    line-height     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:leading-9{
    line-height     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:leading-10{
    line-height     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:leading-none{
    line-height     : 1 !important;
  }

  .group:hover .lg\:group-hover\:leading-tight{
    line-height     : 1.25 !important;
  }

  .group:hover .lg\:group-hover\:leading-snug{
    line-height     : 1.375 !important;
  }

  .group:hover .lg\:group-hover\:leading-normal{
    line-height     : 1.5 !important;
  }

  .group:hover .lg\:group-hover\:leading-relaxed{
    line-height     : 1.625 !important;
  }

  .group:hover .lg\:group-hover\:leading-loose{
    line-height     : 2 !important;
  }

  .lg\:hover\:leading-3:hover{
    line-height     : .75rem !important;
  }

  .lg\:hover\:leading-4:hover{
    line-height     : 1rem !important;
  }

  .lg\:hover\:leading-5:hover{
    line-height     : 1.25rem !important;
  }

  .lg\:hover\:leading-6:hover{
    line-height     : 1.5rem !important;
  }

  .lg\:hover\:leading-7:hover{
    line-height     : 1.75rem !important;
  }

  .lg\:hover\:leading-8:hover{
    line-height     : 2rem !important;
  }

  .lg\:hover\:leading-9:hover{
    line-height     : 2.25rem !important;
  }

  .lg\:hover\:leading-10:hover{
    line-height     : 2.5rem !important;
  }

  .lg\:hover\:leading-none:hover{
    line-height     : 1 !important;
  }

  .lg\:hover\:leading-tight:hover{
    line-height     : 1.25 !important;
  }

  .lg\:hover\:leading-snug:hover{
    line-height     : 1.375 !important;
  }

  .lg\:hover\:leading-normal:hover{
    line-height     : 1.5 !important;
  }

  .lg\:hover\:leading-relaxed:hover{
    line-height     : 1.625 !important;
  }

  .lg\:hover\:leading-loose:hover{
    line-height     : 2 !important;
  }

  .lg\:focus\:leading-3:focus{
    line-height     : .75rem !important;
  }

  .lg\:focus\:leading-4:focus{
    line-height     : 1rem !important;
  }

  .lg\:focus\:leading-5:focus{
    line-height     : 1.25rem !important;
  }

  .lg\:focus\:leading-6:focus{
    line-height     : 1.5rem !important;
  }

  .lg\:focus\:leading-7:focus{
    line-height     : 1.75rem !important;
  }

  .lg\:focus\:leading-8:focus{
    line-height     : 2rem !important;
  }

  .lg\:focus\:leading-9:focus{
    line-height     : 2.25rem !important;
  }

  .lg\:focus\:leading-10:focus{
    line-height     : 2.5rem !important;
  }

  .lg\:focus\:leading-none:focus{
    line-height     : 1 !important;
  }

  .lg\:focus\:leading-tight:focus{
    line-height     : 1.25 !important;
  }

  .lg\:focus\:leading-snug:focus{
    line-height     : 1.375 !important;
  }

  .lg\:focus\:leading-normal:focus{
    line-height     : 1.5 !important;
  }

  .lg\:focus\:leading-relaxed:focus{
    line-height     : 1.625 !important;
  }

  .lg\:focus\:leading-loose:focus{
    line-height     : 2 !important;
  }

  .lg\:list-inside{
    list-style-position     : inside !important;
  }

  .lg\:list-outside{
    list-style-position     : outside !important;
  }

  .group:hover .lg\:group-hover\:list-inside{
    list-style-position     : inside !important;
  }

  .group:hover .lg\:group-hover\:list-outside{
    list-style-position     : outside !important;
  }

  .lg\:hover\:list-inside:hover{
    list-style-position     : inside !important;
  }

  .lg\:hover\:list-outside:hover{
    list-style-position     : outside !important;
  }

  .lg\:focus\:list-inside:focus{
    list-style-position     : inside !important;
  }

  .lg\:focus\:list-outside:focus{
    list-style-position     : outside !important;
  }

  .lg\:list-none{
    list-style-type     : none !important;
  }

  .lg\:list-disc{
    list-style-type     : disc !important;
  }

  .lg\:list-decimal{
    list-style-type     : decimal !important;
  }

  .group:hover .lg\:group-hover\:list-none{
    list-style-type     : none !important;
  }

  .group:hover .lg\:group-hover\:list-disc{
    list-style-type     : disc !important;
  }

  .group:hover .lg\:group-hover\:list-decimal{
    list-style-type     : decimal !important;
  }

  .lg\:hover\:list-none:hover{
    list-style-type     : none !important;
  }

  .lg\:hover\:list-disc:hover{
    list-style-type     : disc !important;
  }

  .lg\:hover\:list-decimal:hover{
    list-style-type     : decimal !important;
  }

  .lg\:focus\:list-none:focus{
    list-style-type     : none !important;
  }

  .lg\:focus\:list-disc:focus{
    list-style-type     : disc !important;
  }

  .lg\:focus\:list-decimal:focus{
    list-style-type     : decimal !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-20{
    margin     : 5rem !important;
  }

  .lg\:m-24{
    margin     : 6rem !important;
  }

  .lg\:m-28{
    margin     : 7rem !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-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-96{
    margin     : 24rem !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-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-20{
    margin     : -5rem !important;
  }

  .lg\:-m-24{
    margin     : -6rem !important;
  }

  .lg\:-m-28{
    margin     : -7rem !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-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-96{
    margin     : -24rem !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\: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-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .lg\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 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-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .lg\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !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-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-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .lg\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !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-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-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .lg\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -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-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .lg\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !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-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-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .lg\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !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\: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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }

  .group:hover .lg\:group-hover\:m-0{
    margin     : 0 !important;
  }

  .group:hover .lg\:group-hover\:m-1{
    margin     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:m-2{
    margin     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:m-3{
    margin     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:m-4{
    margin     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:m-5{
    margin     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:m-6{
    margin     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:m-7{
    margin     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:m-8{
    margin     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:m-9{
    margin     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:m-10{
    margin     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:m-11{
    margin     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:m-12{
    margin     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:m-13{
    margin     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:m-14{
    margin     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:m-15{
    margin     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:m-16{
    margin     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:m-20{
    margin     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:m-24{
    margin     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:m-28{
    margin     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:m-32{
    margin     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:m-36{
    margin     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:m-40{
    margin     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:m-44{
    margin     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:m-48{
    margin     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:m-52{
    margin     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:m-56{
    margin     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:m-60{
    margin     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:m-64{
    margin     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:m-72{
    margin     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:m-80{
    margin     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:m-96{
    margin     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:m-auto{
    margin     : auto !important;
  }

  .group:hover .lg\:group-hover\:m-px{
    margin     : 1px !important;
  }

  .group:hover .lg\:group-hover\:m-0\.5{
    margin     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:m-1\.5{
    margin     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:m-2\.5{
    margin     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:m-3\.5{
    margin     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:m-1\/2{
    margin     : 50% !important;
  }

  .group:hover .lg\:group-hover\:m-1\/3{
    margin     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-2\/3{
    margin     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-1\/4{
    margin     : 25% !important;
  }

  .group:hover .lg\:group-hover\:m-2\/4{
    margin     : 50% !important;
  }

  .group:hover .lg\:group-hover\:m-3\/4{
    margin     : 75% !important;
  }

  .group:hover .lg\:group-hover\:m-1\/5{
    margin     : 20% !important;
  }

  .group:hover .lg\:group-hover\:m-2\/5{
    margin     : 40% !important;
  }

  .group:hover .lg\:group-hover\:m-3\/5{
    margin     : 60% !important;
  }

  .group:hover .lg\:group-hover\:m-4\/5{
    margin     : 80% !important;
  }

  .group:hover .lg\:group-hover\:m-1\/6{
    margin     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-2\/6{
    margin     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-3\/6{
    margin     : 50% !important;
  }

  .group:hover .lg\:group-hover\:m-4\/6{
    margin     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-5\/6{
    margin     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-1\/12{
    margin     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-2\/12{
    margin     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-3\/12{
    margin     : 25% !important;
  }

  .group:hover .lg\:group-hover\:m-4\/12{
    margin     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-5\/12{
    margin     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-6\/12{
    margin     : 50% !important;
  }

  .group:hover .lg\:group-hover\:m-7\/12{
    margin     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-8\/12{
    margin     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-9\/12{
    margin     : 75% !important;
  }

  .group:hover .lg\:group-hover\:m-10\/12{
    margin     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:m-11\/12{
    margin     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:m-full{
    margin     : 100% !important;
  }

  .group:hover .lg\:group-hover\:-m-1{
    margin     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-m-2{
    margin     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-m-3{
    margin     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-m-4{
    margin     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-m-5{
    margin     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-m-6{
    margin     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-m-7{
    margin     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-m-8{
    margin     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-m-9{
    margin     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-m-10{
    margin     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-m-11{
    margin     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-m-12{
    margin     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-m-13{
    margin     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-m-14{
    margin     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-m-15{
    margin     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-m-16{
    margin     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-m-20{
    margin     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-m-24{
    margin     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-m-28{
    margin     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-m-32{
    margin     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-m-36{
    margin     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-m-40{
    margin     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-m-44{
    margin     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-m-48{
    margin     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-m-52{
    margin     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-m-56{
    margin     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-m-60{
    margin     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-m-64{
    margin     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-m-72{
    margin     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-m-80{
    margin     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-m-96{
    margin     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-m-px{
    margin     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-m-0\.5{
    margin     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-m-1\.5{
    margin     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-m-2\.5{
    margin     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-m-3\.5{
    margin     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/2{
    margin     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/3{
    margin     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-2\/3{
    margin     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/4{
    margin     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-m-2\/4{
    margin     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-m-3\/4{
    margin     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/5{
    margin     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-m-2\/5{
    margin     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-m-3\/5{
    margin     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-m-4\/5{
    margin     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/6{
    margin     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-2\/6{
    margin     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-3\/6{
    margin     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-m-4\/6{
    margin     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-5\/6{
    margin     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-1\/12{
    margin     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-2\/12{
    margin     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-3\/12{
    margin     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-m-4\/12{
    margin     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-5\/12{
    margin     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-6\/12{
    margin     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-m-7\/12{
    margin     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-8\/12{
    margin     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-9\/12{
    margin     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-m-10\/12{
    margin     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-m-11\/12{
    margin     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-m-full{
    margin     : -100% !important;
  }

  .group:hover .lg\:group-hover\:my-0{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:mx-0{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .group:hover .lg\:group-hover\:my-1{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:mx-1{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:my-2{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:mx-2{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:my-3{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:mx-3{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:my-4{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:mx-4{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:my-5{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:mx-5{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:my-6{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:mx-6{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:my-7{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:mx-7{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:my-8{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:mx-8{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:my-9{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:mx-9{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:my-10{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:mx-10{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:my-11{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:mx-11{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:my-12{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:mx-12{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:my-13{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:mx-13{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:my-14{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:mx-14{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:my-15{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:mx-15{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:my-16{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:mx-16{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:my-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:my-24{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:mx-24{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:my-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:my-32{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:mx-32{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:my-36{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:mx-36{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:my-40{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:mx-40{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:my-44{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:mx-44{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:my-48{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:mx-48{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:my-52{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:mx-52{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:my-56{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:mx-56{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:my-60{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:mx-60{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:my-64{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:mx-64{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:my-72{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:mx-72{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:my-80{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:mx-80{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:my-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:my-auto{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .group:hover .lg\:group-hover\:mx-auto{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .group:hover .lg\:group-hover\:my-px{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:mx-px{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .group:hover .lg\:group-hover\:my-0\.5{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:mx-0\.5{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:my-1\.5{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:mx-1\.5{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:my-2\.5{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:mx-2\.5{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:my-3\.5{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:mx-3\.5{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:my-1\/2{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/2{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:my-1\/3{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/3{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-2\/3{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-2\/3{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-1\/4{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/4{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:my-2\/4{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mx-2\/4{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:my-3\/4{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mx-3\/4{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:my-1\/5{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/5{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .group:hover .lg\:group-hover\:my-2\/5{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:mx-2\/5{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .group:hover .lg\:group-hover\:my-3\/5{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:mx-3\/5{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .group:hover .lg\:group-hover\:my-4\/5{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:mx-4\/5{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .group:hover .lg\:group-hover\:my-1\/6{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/6{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-2\/6{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-2\/6{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-3\/6{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mx-3\/6{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:my-4\/6{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-4\/6{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-5\/6{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-5\/6{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-1\/12{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-1\/12{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-2\/12{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-2\/12{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-3\/12{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mx-3\/12{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:my-4\/12{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-4\/12{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-5\/12{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-5\/12{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-6\/12{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mx-6\/12{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:my-7\/12{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-7\/12{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-8\/12{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-8\/12{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-9\/12{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mx-9\/12{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:my-10\/12{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mx-10\/12{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:my-11\/12{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:mx-11\/12{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:my-full{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:mx-full{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .group:hover .lg\:group-hover\:-my-1{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-1{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-my-2{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-2{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-my-3{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-3{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-my-4{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-4{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-my-5{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-5{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-my-6{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-6{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-my-7{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-7{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-my-8{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-8{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-my-9{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-9{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-my-10{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-10{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-my-11{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-11{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-my-12{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-12{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-my-13{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-13{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-my-14{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-14{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-my-15{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-15{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-my-16{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-16{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-my-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-my-24{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-24{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-my-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-my-32{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-32{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-my-36{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-36{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-my-40{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-40{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-my-44{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-44{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-my-48{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-48{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-my-52{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-52{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-my-56{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-56{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-my-60{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-60{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-my-64{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-64{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-my-72{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-72{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-my-80{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-80{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-my-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-my-px{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-mx-px{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-my-0\.5{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-0\.5{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-my-1\.5{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\.5{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-my-2\.5{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\.5{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-my-3\.5{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-mx-3\.5{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/2{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/2{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/3{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/3{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-2\/3{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\/3{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/4{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/4{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-my-2\/4{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\/4{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-my-3\/4{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mx-3\/4{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/5{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/5{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-my-2\/5{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\/5{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-my-3\/5{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-mx-3\/5{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-my-4\/5{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-mx-4\/5{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/6{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/6{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-2\/6{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\/6{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-3\/6{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mx-3\/6{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-my-4\/6{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-4\/6{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-5\/6{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-5\/6{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-1\/12{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-1\/12{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-2\/12{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-2\/12{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-3\/12{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mx-3\/12{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-my-4\/12{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-4\/12{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-5\/12{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-5\/12{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-6\/12{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mx-6\/12{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-my-7\/12{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-7\/12{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-8\/12{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-8\/12{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-9\/12{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mx-9\/12{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-my-10\/12{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mx-10\/12{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-my-11\/12{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mx-11\/12{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-my-full{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .group:hover .lg\:group-hover\:-mx-full{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .group:hover .lg\:group-hover\:mt-0{
    margin-top     : 0 !important;
  }

  .group:hover .lg\:group-hover\:mr-0{
    margin-right     : 0 !important;
  }

  .group:hover .lg\:group-hover\:mb-0{
    margin-bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:ml-0{
    margin-left     : 0 !important;
  }

  .group:hover .lg\:group-hover\:mt-1{
    margin-top     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:mr-1{
    margin-right     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:mb-1{
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:ml-1{
    margin-left     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:mt-2{
    margin-top     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:mr-2{
    margin-right     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:mb-2{
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:ml-2{
    margin-left     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:mt-3{
    margin-top     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:mr-3{
    margin-right     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:mb-3{
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:ml-3{
    margin-left     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:mt-4{
    margin-top     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:mr-4{
    margin-right     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:mb-4{
    margin-bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:ml-4{
    margin-left     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:mt-5{
    margin-top     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:mr-5{
    margin-right     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:mb-5{
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:ml-5{
    margin-left     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:mt-6{
    margin-top     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:mr-6{
    margin-right     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:mb-6{
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:ml-6{
    margin-left     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:mt-7{
    margin-top     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:mr-7{
    margin-right     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:mb-7{
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:ml-7{
    margin-left     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:mt-8{
    margin-top     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:mr-8{
    margin-right     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:mb-8{
    margin-bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:ml-8{
    margin-left     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:mt-9{
    margin-top     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:mr-9{
    margin-right     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:mb-9{
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:ml-9{
    margin-left     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:mt-10{
    margin-top     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:mr-10{
    margin-right     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:mb-10{
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:ml-10{
    margin-left     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:mt-11{
    margin-top     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:mr-11{
    margin-right     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:mb-11{
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:ml-11{
    margin-left     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:mt-12{
    margin-top     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:mr-12{
    margin-right     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:mb-12{
    margin-bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:ml-12{
    margin-left     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:mt-13{
    margin-top     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:mr-13{
    margin-right     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:mb-13{
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:ml-13{
    margin-left     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:mt-14{
    margin-top     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:mr-14{
    margin-right     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:mb-14{
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:ml-14{
    margin-left     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:mt-15{
    margin-top     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:mr-15{
    margin-right     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:mb-15{
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:ml-15{
    margin-left     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:mt-16{
    margin-top     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:mr-16{
    margin-right     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:mb-16{
    margin-bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:ml-16{
    margin-left     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:mt-20{
    margin-top     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:mr-20{
    margin-right     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:mb-20{
    margin-bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:ml-20{
    margin-left     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:mt-24{
    margin-top     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:mr-24{
    margin-right     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:mb-24{
    margin-bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:ml-24{
    margin-left     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:mt-28{
    margin-top     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:mr-28{
    margin-right     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:mb-28{
    margin-bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:ml-28{
    margin-left     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:mt-32{
    margin-top     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:mr-32{
    margin-right     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:mb-32{
    margin-bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:ml-32{
    margin-left     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:mt-36{
    margin-top     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:mr-36{
    margin-right     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:mb-36{
    margin-bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:ml-36{
    margin-left     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:mt-40{
    margin-top     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:mr-40{
    margin-right     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:mb-40{
    margin-bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:ml-40{
    margin-left     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:mt-44{
    margin-top     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:mr-44{
    margin-right     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:mb-44{
    margin-bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:ml-44{
    margin-left     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:mt-48{
    margin-top     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:mr-48{
    margin-right     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:mb-48{
    margin-bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:ml-48{
    margin-left     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:mt-52{
    margin-top     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:mr-52{
    margin-right     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:mb-52{
    margin-bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:ml-52{
    margin-left     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:mt-56{
    margin-top     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:mr-56{
    margin-right     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:mb-56{
    margin-bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:ml-56{
    margin-left     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:mt-60{
    margin-top     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:mr-60{
    margin-right     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:mb-60{
    margin-bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:ml-60{
    margin-left     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:mt-64{
    margin-top     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:mr-64{
    margin-right     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:mb-64{
    margin-bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:ml-64{
    margin-left     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:mt-72{
    margin-top     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:mr-72{
    margin-right     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:mb-72{
    margin-bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:ml-72{
    margin-left     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:mt-80{
    margin-top     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:mr-80{
    margin-right     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:mb-80{
    margin-bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:ml-80{
    margin-left     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:mt-96{
    margin-top     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:mr-96{
    margin-right     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:mb-96{
    margin-bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:ml-96{
    margin-left     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:mt-auto{
    margin-top     : auto !important;
  }

  .group:hover .lg\:group-hover\:mr-auto{
    margin-right     : auto !important;
  }

  .group:hover .lg\:group-hover\:mb-auto{
    margin-bottom     : auto !important;
  }

  .group:hover .lg\:group-hover\:ml-auto{
    margin-left     : auto !important;
  }

  .group:hover .lg\:group-hover\:mt-px{
    margin-top     : 1px !important;
  }

  .group:hover .lg\:group-hover\:mr-px{
    margin-right     : 1px !important;
  }

  .group:hover .lg\:group-hover\:mb-px{
    margin-bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:ml-px{
    margin-left     : 1px !important;
  }

  .group:hover .lg\:group-hover\:mt-0\.5{
    margin-top     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:mr-0\.5{
    margin-right     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:mb-0\.5{
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:ml-0\.5{
    margin-left     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:mt-1\.5{
    margin-top     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:mr-1\.5{
    margin-right     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:mb-1\.5{
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:ml-1\.5{
    margin-left     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:mt-2\.5{
    margin-top     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:mr-2\.5{
    margin-right     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:mb-2\.5{
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:ml-2\.5{
    margin-left     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:mt-3\.5{
    margin-top     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:mr-3\.5{
    margin-right     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:mb-3\.5{
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:ml-3\.5{
    margin-left     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/2{
    margin-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/2{
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/2{
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/2{
    margin-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/3{
    margin-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/3{
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/3{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/3{
    margin-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-2\/3{
    margin-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-2\/3{
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-2\/3{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-2\/3{
    margin-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/4{
    margin-top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/4{
    margin-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/4{
    margin-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/4{
    margin-left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mt-2\/4{
    margin-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mr-2\/4{
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mb-2\/4{
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:ml-2\/4{
    margin-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mt-3\/4{
    margin-top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mr-3\/4{
    margin-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mb-3\/4{
    margin-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:ml-3\/4{
    margin-left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/5{
    margin-top     : 20% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/5{
    margin-right     : 20% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/5{
    margin-bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/5{
    margin-left     : 20% !important;
  }

  .group:hover .lg\:group-hover\:mt-2\/5{
    margin-top     : 40% !important;
  }

  .group:hover .lg\:group-hover\:mr-2\/5{
    margin-right     : 40% !important;
  }

  .group:hover .lg\:group-hover\:mb-2\/5{
    margin-bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:ml-2\/5{
    margin-left     : 40% !important;
  }

  .group:hover .lg\:group-hover\:mt-3\/5{
    margin-top     : 60% !important;
  }

  .group:hover .lg\:group-hover\:mr-3\/5{
    margin-right     : 60% !important;
  }

  .group:hover .lg\:group-hover\:mb-3\/5{
    margin-bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:ml-3\/5{
    margin-left     : 60% !important;
  }

  .group:hover .lg\:group-hover\:mt-4\/5{
    margin-top     : 80% !important;
  }

  .group:hover .lg\:group-hover\:mr-4\/5{
    margin-right     : 80% !important;
  }

  .group:hover .lg\:group-hover\:mb-4\/5{
    margin-bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:ml-4\/5{
    margin-left     : 80% !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/6{
    margin-top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/6{
    margin-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/6{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/6{
    margin-left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-2\/6{
    margin-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-2\/6{
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-2\/6{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-2\/6{
    margin-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-3\/6{
    margin-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mr-3\/6{
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mb-3\/6{
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:ml-3\/6{
    margin-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mt-4\/6{
    margin-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-4\/6{
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-4\/6{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-4\/6{
    margin-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-5\/6{
    margin-top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-5\/6{
    margin-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-5\/6{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-5\/6{
    margin-left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-1\/12{
    margin-top     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-1\/12{
    margin-right     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-1\/12{
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-1\/12{
    margin-left     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-2\/12{
    margin-top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-2\/12{
    margin-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-2\/12{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-2\/12{
    margin-left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-3\/12{
    margin-top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mr-3\/12{
    margin-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mb-3\/12{
    margin-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:ml-3\/12{
    margin-left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:mt-4\/12{
    margin-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-4\/12{
    margin-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-4\/12{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-4\/12{
    margin-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-5\/12{
    margin-top     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-5\/12{
    margin-right     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-5\/12{
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-5\/12{
    margin-left     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-6\/12{
    margin-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mr-6\/12{
    margin-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mb-6\/12{
    margin-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:ml-6\/12{
    margin-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:mt-7\/12{
    margin-top     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-7\/12{
    margin-right     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-7\/12{
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-7\/12{
    margin-left     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-8\/12{
    margin-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-8\/12{
    margin-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-8\/12{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-8\/12{
    margin-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-9\/12{
    margin-top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mr-9\/12{
    margin-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mb-9\/12{
    margin-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:ml-9\/12{
    margin-left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:mt-10\/12{
    margin-top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mr-10\/12{
    margin-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mb-10\/12{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:ml-10\/12{
    margin-left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:mt-11\/12{
    margin-top     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:mr-11\/12{
    margin-right     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:mb-11\/12{
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:ml-11\/12{
    margin-left     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:mt-full{
    margin-top     : 100% !important;
  }

  .group:hover .lg\:group-hover\:mr-full{
    margin-right     : 100% !important;
  }

  .group:hover .lg\:group-hover\:mb-full{
    margin-bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:ml-full{
    margin-left     : 100% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1{
    margin-top     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-1{
    margin-right     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-1{
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-1{
    margin-left     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-2{
    margin-top     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-2{
    margin-right     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-2{
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-2{
    margin-left     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-3{
    margin-top     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-3{
    margin-right     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-3{
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-3{
    margin-left     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-4{
    margin-top     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-4{
    margin-right     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-4{
    margin-bottom     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-4{
    margin-left     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-5{
    margin-top     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-5{
    margin-right     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-5{
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-5{
    margin-left     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-6{
    margin-top     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-6{
    margin-right     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-6{
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-6{
    margin-left     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-7{
    margin-top     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-7{
    margin-right     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-7{
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-7{
    margin-left     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-8{
    margin-top     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-8{
    margin-right     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-8{
    margin-bottom     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-8{
    margin-left     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-9{
    margin-top     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-9{
    margin-right     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-9{
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-9{
    margin-left     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-10{
    margin-top     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-10{
    margin-right     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-10{
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-10{
    margin-left     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-11{
    margin-top     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-11{
    margin-right     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-11{
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-11{
    margin-left     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-12{
    margin-top     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-12{
    margin-right     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-12{
    margin-bottom     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-12{
    margin-left     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-13{
    margin-top     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-13{
    margin-right     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-13{
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-13{
    margin-left     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-14{
    margin-top     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-14{
    margin-right     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-14{
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-14{
    margin-left     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-15{
    margin-top     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-15{
    margin-right     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-15{
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-15{
    margin-left     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-16{
    margin-top     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-16{
    margin-right     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-16{
    margin-bottom     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-16{
    margin-left     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-20{
    margin-top     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-20{
    margin-right     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-20{
    margin-bottom     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-20{
    margin-left     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-24{
    margin-top     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-24{
    margin-right     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-24{
    margin-bottom     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-24{
    margin-left     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-28{
    margin-top     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-28{
    margin-right     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-28{
    margin-bottom     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-28{
    margin-left     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-32{
    margin-top     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-32{
    margin-right     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-32{
    margin-bottom     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-32{
    margin-left     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-36{
    margin-top     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-36{
    margin-right     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-36{
    margin-bottom     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-36{
    margin-left     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-40{
    margin-top     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-40{
    margin-right     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-40{
    margin-bottom     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-40{
    margin-left     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-44{
    margin-top     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-44{
    margin-right     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-44{
    margin-bottom     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-44{
    margin-left     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-48{
    margin-top     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-48{
    margin-right     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-48{
    margin-bottom     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-48{
    margin-left     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-52{
    margin-top     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-52{
    margin-right     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-52{
    margin-bottom     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-52{
    margin-left     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-56{
    margin-top     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-56{
    margin-right     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-56{
    margin-bottom     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-56{
    margin-left     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-60{
    margin-top     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-60{
    margin-right     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-60{
    margin-bottom     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-60{
    margin-left     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-64{
    margin-top     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-64{
    margin-right     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-64{
    margin-bottom     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-64{
    margin-left     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-72{
    margin-top     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-72{
    margin-right     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-72{
    margin-bottom     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-72{
    margin-left     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-80{
    margin-top     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-80{
    margin-right     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-80{
    margin-bottom     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-80{
    margin-left     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-96{
    margin-top     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-96{
    margin-right     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-96{
    margin-bottom     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-96{
    margin-left     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-px{
    margin-top     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-mr-px{
    margin-right     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-mb-px{
    margin-bottom     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-ml-px{
    margin-left     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-mt-0\.5{
    margin-top     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-0\.5{
    margin-right     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-0\.5{
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-0\.5{
    margin-left     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\.5{
    margin-top     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\.5{
    margin-right     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\.5{
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\.5{
    margin-left     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\.5{
    margin-top     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\.5{
    margin-right     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\.5{
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\.5{
    margin-left     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-3\.5{
    margin-top     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-mr-3\.5{
    margin-right     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-mb-3\.5{
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-ml-3\.5{
    margin-left     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/2{
    margin-top     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/2{
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/2{
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/2{
    margin-left     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/3{
    margin-top     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/3{
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/3{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/3{
    margin-left     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\/3{
    margin-top     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\/3{
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\/3{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\/3{
    margin-left     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/4{
    margin-top     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/4{
    margin-right     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/4{
    margin-bottom     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/4{
    margin-left     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\/4{
    margin-top     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\/4{
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\/4{
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\/4{
    margin-left     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mt-3\/4{
    margin-top     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mr-3\/4{
    margin-right     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mb-3\/4{
    margin-bottom     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-ml-3\/4{
    margin-left     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/5{
    margin-top     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/5{
    margin-right     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/5{
    margin-bottom     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/5{
    margin-left     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\/5{
    margin-top     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\/5{
    margin-right     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\/5{
    margin-bottom     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\/5{
    margin-left     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-mt-3\/5{
    margin-top     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-mr-3\/5{
    margin-right     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-mb-3\/5{
    margin-bottom     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-ml-3\/5{
    margin-left     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-mt-4\/5{
    margin-top     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-mr-4\/5{
    margin-right     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-mb-4\/5{
    margin-bottom     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-ml-4\/5{
    margin-left     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/6{
    margin-top     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/6{
    margin-right     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/6{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/6{
    margin-left     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\/6{
    margin-top     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\/6{
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\/6{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\/6{
    margin-left     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-3\/6{
    margin-top     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mr-3\/6{
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mb-3\/6{
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-ml-3\/6{
    margin-left     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mt-4\/6{
    margin-top     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-4\/6{
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-4\/6{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-4\/6{
    margin-left     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-5\/6{
    margin-top     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-5\/6{
    margin-right     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-5\/6{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-5\/6{
    margin-left     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-1\/12{
    margin-top     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-1\/12{
    margin-right     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-1\/12{
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-1\/12{
    margin-left     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-2\/12{
    margin-top     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-2\/12{
    margin-right     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-2\/12{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-2\/12{
    margin-left     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-3\/12{
    margin-top     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mr-3\/12{
    margin-right     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mb-3\/12{
    margin-bottom     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-ml-3\/12{
    margin-left     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-mt-4\/12{
    margin-top     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-4\/12{
    margin-right     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-4\/12{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-4\/12{
    margin-left     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-5\/12{
    margin-top     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-5\/12{
    margin-right     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-5\/12{
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-5\/12{
    margin-left     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-6\/12{
    margin-top     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mr-6\/12{
    margin-right     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mb-6\/12{
    margin-bottom     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-ml-6\/12{
    margin-left     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-mt-7\/12{
    margin-top     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-7\/12{
    margin-right     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-7\/12{
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-7\/12{
    margin-left     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-8\/12{
    margin-top     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-8\/12{
    margin-right     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-8\/12{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-8\/12{
    margin-left     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-9\/12{
    margin-top     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mr-9\/12{
    margin-right     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mb-9\/12{
    margin-bottom     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-ml-9\/12{
    margin-left     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-mt-10\/12{
    margin-top     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mr-10\/12{
    margin-right     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mb-10\/12{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-ml-10\/12{
    margin-left     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-mt-11\/12{
    margin-top     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mr-11\/12{
    margin-right     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mb-11\/12{
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-ml-11\/12{
    margin-left     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-mt-full{
    margin-top     : -100% !important;
  }

  .group:hover .lg\:group-hover\:-mr-full{
    margin-right     : -100% !important;
  }

  .group:hover .lg\:group-hover\:-mb-full{
    margin-bottom     : -100% !important;
  }

  .group:hover .lg\:group-hover\:-ml-full{
    margin-left     : -100% !important;
  }

  .lg\:hover\:m-0:hover{
    margin     : 0 !important;
  }

  .lg\:hover\:m-1:hover{
    margin     : 0.25rem !important;
  }

  .lg\:hover\:m-2:hover{
    margin     : 0.5rem !important;
  }

  .lg\:hover\:m-3:hover{
    margin     : 0.75rem !important;
  }

  .lg\:hover\:m-4:hover{
    margin     : 1rem !important;
  }

  .lg\:hover\:m-5:hover{
    margin     : 1.25rem !important;
  }

  .lg\:hover\:m-6:hover{
    margin     : 1.5rem !important;
  }

  .lg\:hover\:m-7:hover{
    margin     : 1.75rem !important;
  }

  .lg\:hover\:m-8:hover{
    margin     : 2rem !important;
  }

  .lg\:hover\:m-9:hover{
    margin     : 2.25rem !important;
  }

  .lg\:hover\:m-10:hover{
    margin     : 2.5rem !important;
  }

  .lg\:hover\:m-11:hover{
    margin     : 2.75rem !important;
  }

  .lg\:hover\:m-12:hover{
    margin     : 3rem !important;
  }

  .lg\:hover\:m-13:hover{
    margin     : 3.25rem !important;
  }

  .lg\:hover\:m-14:hover{
    margin     : 3.5rem !important;
  }

  .lg\:hover\:m-15:hover{
    margin     : 3.75rem !important;
  }

  .lg\:hover\:m-16:hover{
    margin     : 4rem !important;
  }

  .lg\:hover\:m-20:hover{
    margin     : 5rem !important;
  }

  .lg\:hover\:m-24:hover{
    margin     : 6rem !important;
  }

  .lg\:hover\:m-28:hover{
    margin     : 7rem !important;
  }

  .lg\:hover\:m-32:hover{
    margin     : 8rem !important;
  }

  .lg\:hover\:m-36:hover{
    margin     : 9rem !important;
  }

  .lg\:hover\:m-40:hover{
    margin     : 10rem !important;
  }

  .lg\:hover\:m-44:hover{
    margin     : 11rem !important;
  }

  .lg\:hover\:m-48:hover{
    margin     : 12rem !important;
  }

  .lg\:hover\:m-52:hover{
    margin     : 13rem !important;
  }

  .lg\:hover\:m-56:hover{
    margin     : 14rem !important;
  }

  .lg\:hover\:m-60:hover{
    margin     : 15rem !important;
  }

  .lg\:hover\:m-64:hover{
    margin     : 16rem !important;
  }

  .lg\:hover\:m-72:hover{
    margin     : 18rem !important;
  }

  .lg\:hover\:m-80:hover{
    margin     : 20rem !important;
  }

  .lg\:hover\:m-96:hover{
    margin     : 24rem !important;
  }

  .lg\:hover\:m-auto:hover{
    margin     : auto !important;
  }

  .lg\:hover\:m-px:hover{
    margin     : 1px !important;
  }

  .lg\:hover\:m-0\.5:hover{
    margin     : 0.125rem !important;
  }

  .lg\:hover\:m-1\.5:hover{
    margin     : 0.375rem !important;
  }

  .lg\:hover\:m-2\.5:hover{
    margin     : 0.625rem !important;
  }

  .lg\:hover\:m-3\.5:hover{
    margin     : 0.875rem !important;
  }

  .lg\:hover\:m-1\/2:hover{
    margin     : 50% !important;
  }

  .lg\:hover\:m-1\/3:hover{
    margin     : 33.333333% !important;
  }

  .lg\:hover\:m-2\/3:hover{
    margin     : 66.666667% !important;
  }

  .lg\:hover\:m-1\/4:hover{
    margin     : 25% !important;
  }

  .lg\:hover\:m-2\/4:hover{
    margin     : 50% !important;
  }

  .lg\:hover\:m-3\/4:hover{
    margin     : 75% !important;
  }

  .lg\:hover\:m-1\/5:hover{
    margin     : 20% !important;
  }

  .lg\:hover\:m-2\/5:hover{
    margin     : 40% !important;
  }

  .lg\:hover\:m-3\/5:hover{
    margin     : 60% !important;
  }

  .lg\:hover\:m-4\/5:hover{
    margin     : 80% !important;
  }

  .lg\:hover\:m-1\/6:hover{
    margin     : 16.666667% !important;
  }

  .lg\:hover\:m-2\/6:hover{
    margin     : 33.333333% !important;
  }

  .lg\:hover\:m-3\/6:hover{
    margin     : 50% !important;
  }

  .lg\:hover\:m-4\/6:hover{
    margin     : 66.666667% !important;
  }

  .lg\:hover\:m-5\/6:hover{
    margin     : 83.333333% !important;
  }

  .lg\:hover\:m-1\/12:hover{
    margin     : 8.333333% !important;
  }

  .lg\:hover\:m-2\/12:hover{
    margin     : 16.666667% !important;
  }

  .lg\:hover\:m-3\/12:hover{
    margin     : 25% !important;
  }

  .lg\:hover\:m-4\/12:hover{
    margin     : 33.333333% !important;
  }

  .lg\:hover\:m-5\/12:hover{
    margin     : 41.666667% !important;
  }

  .lg\:hover\:m-6\/12:hover{
    margin     : 50% !important;
  }

  .lg\:hover\:m-7\/12:hover{
    margin     : 58.333333% !important;
  }

  .lg\:hover\:m-8\/12:hover{
    margin     : 66.666667% !important;
  }

  .lg\:hover\:m-9\/12:hover{
    margin     : 75% !important;
  }

  .lg\:hover\:m-10\/12:hover{
    margin     : 83.333333% !important;
  }

  .lg\:hover\:m-11\/12:hover{
    margin     : 91.666667% !important;
  }

  .lg\:hover\:m-full:hover{
    margin     : 100% !important;
  }

  .lg\:hover\:-m-1:hover{
    margin     : -0.25rem !important;
  }

  .lg\:hover\:-m-2:hover{
    margin     : -0.5rem !important;
  }

  .lg\:hover\:-m-3:hover{
    margin     : -0.75rem !important;
  }

  .lg\:hover\:-m-4:hover{
    margin     : -1rem !important;
  }

  .lg\:hover\:-m-5:hover{
    margin     : -1.25rem !important;
  }

  .lg\:hover\:-m-6:hover{
    margin     : -1.5rem !important;
  }

  .lg\:hover\:-m-7:hover{
    margin     : -1.75rem !important;
  }

  .lg\:hover\:-m-8:hover{
    margin     : -2rem !important;
  }

  .lg\:hover\:-m-9:hover{
    margin     : -2.25rem !important;
  }

  .lg\:hover\:-m-10:hover{
    margin     : -2.5rem !important;
  }

  .lg\:hover\:-m-11:hover{
    margin     : -2.75rem !important;
  }

  .lg\:hover\:-m-12:hover{
    margin     : -3rem !important;
  }

  .lg\:hover\:-m-13:hover{
    margin     : -3.25rem !important;
  }

  .lg\:hover\:-m-14:hover{
    margin     : -3.5rem !important;
  }

  .lg\:hover\:-m-15:hover{
    margin     : -3.75rem !important;
  }

  .lg\:hover\:-m-16:hover{
    margin     : -4rem !important;
  }

  .lg\:hover\:-m-20:hover{
    margin     : -5rem !important;
  }

  .lg\:hover\:-m-24:hover{
    margin     : -6rem !important;
  }

  .lg\:hover\:-m-28:hover{
    margin     : -7rem !important;
  }

  .lg\:hover\:-m-32:hover{
    margin     : -8rem !important;
  }

  .lg\:hover\:-m-36:hover{
    margin     : -9rem !important;
  }

  .lg\:hover\:-m-40:hover{
    margin     : -10rem !important;
  }

  .lg\:hover\:-m-44:hover{
    margin     : -11rem !important;
  }

  .lg\:hover\:-m-48:hover{
    margin     : -12rem !important;
  }

  .lg\:hover\:-m-52:hover{
    margin     : -13rem !important;
  }

  .lg\:hover\:-m-56:hover{
    margin     : -14rem !important;
  }

  .lg\:hover\:-m-60:hover{
    margin     : -15rem !important;
  }

  .lg\:hover\:-m-64:hover{
    margin     : -16rem !important;
  }

  .lg\:hover\:-m-72:hover{
    margin     : -18rem !important;
  }

  .lg\:hover\:-m-80:hover{
    margin     : -20rem !important;
  }

  .lg\:hover\:-m-96:hover{
    margin     : -24rem !important;
  }

  .lg\:hover\:-m-px:hover{
    margin     : -1px !important;
  }

  .lg\:hover\:-m-0\.5:hover{
    margin     : -0.125rem !important;
  }

  .lg\:hover\:-m-1\.5:hover{
    margin     : -0.375rem !important;
  }

  .lg\:hover\:-m-2\.5:hover{
    margin     : -0.625rem !important;
  }

  .lg\:hover\:-m-3\.5:hover{
    margin     : -0.875rem !important;
  }

  .lg\:hover\:-m-1\/2:hover{
    margin     : -50% !important;
  }

  .lg\:hover\:-m-1\/3:hover{
    margin     : -33.33333% !important;
  }

  .lg\:hover\:-m-2\/3:hover{
    margin     : -66.66667% !important;
  }

  .lg\:hover\:-m-1\/4:hover{
    margin     : -25% !important;
  }

  .lg\:hover\:-m-2\/4:hover{
    margin     : -50% !important;
  }

  .lg\:hover\:-m-3\/4:hover{
    margin     : -75% !important;
  }

  .lg\:hover\:-m-1\/5:hover{
    margin     : -20% !important;
  }

  .lg\:hover\:-m-2\/5:hover{
    margin     : -40% !important;
  }

  .lg\:hover\:-m-3\/5:hover{
    margin     : -60% !important;
  }

  .lg\:hover\:-m-4\/5:hover{
    margin     : -80% !important;
  }

  .lg\:hover\:-m-1\/6:hover{
    margin     : -16.66667% !important;
  }

  .lg\:hover\:-m-2\/6:hover{
    margin     : -33.33333% !important;
  }

  .lg\:hover\:-m-3\/6:hover{
    margin     : -50% !important;
  }

  .lg\:hover\:-m-4\/6:hover{
    margin     : -66.66667% !important;
  }

  .lg\:hover\:-m-5\/6:hover{
    margin     : -83.33333% !important;
  }

  .lg\:hover\:-m-1\/12:hover{
    margin     : -8.33333% !important;
  }

  .lg\:hover\:-m-2\/12:hover{
    margin     : -16.66667% !important;
  }

  .lg\:hover\:-m-3\/12:hover{
    margin     : -25% !important;
  }

  .lg\:hover\:-m-4\/12:hover{
    margin     : -33.33333% !important;
  }

  .lg\:hover\:-m-5\/12:hover{
    margin     : -41.66667% !important;
  }

  .lg\:hover\:-m-6\/12:hover{
    margin     : -50% !important;
  }

  .lg\:hover\:-m-7\/12:hover{
    margin     : -58.33333% !important;
  }

  .lg\:hover\:-m-8\/12:hover{
    margin     : -66.66667% !important;
  }

  .lg\:hover\:-m-9\/12:hover{
    margin     : -75% !important;
  }

  .lg\:hover\:-m-10\/12:hover{
    margin     : -83.33333% !important;
  }

  .lg\:hover\:-m-11\/12:hover{
    margin     : -91.66667% !important;
  }

  .lg\:hover\:-m-full:hover{
    margin     : -100% !important;
  }

  .lg\:hover\:my-0:hover{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .lg\:hover\:mx-0:hover{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .lg\:hover\:my-1:hover{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .lg\:hover\:mx-1:hover{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .lg\:hover\:my-2:hover{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .lg\:hover\:mx-2:hover{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .lg\:hover\:my-3:hover{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .lg\:hover\:mx-3:hover{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .lg\:hover\:my-4:hover{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .lg\:hover\:mx-4:hover{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .lg\:hover\:my-5:hover{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .lg\:hover\:mx-5:hover{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .lg\:hover\:my-6:hover{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .lg\:hover\:mx-6:hover{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .lg\:hover\:my-7:hover{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .lg\:hover\:mx-7:hover{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .lg\:hover\:my-8:hover{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .lg\:hover\:mx-8:hover{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .lg\:hover\:my-9:hover{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .lg\:hover\:mx-9:hover{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .lg\:hover\:my-10:hover{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .lg\:hover\:mx-10:hover{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .lg\:hover\:my-11:hover{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .lg\:hover\:mx-11:hover{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .lg\:hover\:my-12:hover{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .lg\:hover\:mx-12:hover{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .lg\:hover\:my-13:hover{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .lg\:hover\:mx-13:hover{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .lg\:hover\:my-14:hover{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .lg\:hover\:mx-14:hover{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .lg\:hover\:my-15:hover{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .lg\:hover\:mx-15:hover{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .lg\:hover\:my-16:hover{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .lg\:hover\:mx-16:hover{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .lg\:hover\:my-20:hover{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .lg\:hover\:mx-20:hover{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .lg\:hover\:my-24:hover{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .lg\:hover\:mx-24:hover{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .lg\:hover\:my-28:hover{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .lg\:hover\:mx-28:hover{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .lg\:hover\:my-32:hover{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .lg\:hover\:mx-32:hover{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .lg\:hover\:my-36:hover{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .lg\:hover\:mx-36:hover{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .lg\:hover\:my-40:hover{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .lg\:hover\:mx-40:hover{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .lg\:hover\:my-44:hover{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .lg\:hover\:mx-44:hover{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .lg\:hover\:my-48:hover{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .lg\:hover\:mx-48:hover{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .lg\:hover\:my-52:hover{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .lg\:hover\:mx-52:hover{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .lg\:hover\:my-56:hover{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .lg\:hover\:mx-56:hover{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .lg\:hover\:my-60:hover{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .lg\:hover\:mx-60:hover{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .lg\:hover\:my-64:hover{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .lg\:hover\:mx-64:hover{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .lg\:hover\:my-72:hover{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .lg\:hover\:mx-72:hover{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .lg\:hover\:my-80:hover{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .lg\:hover\:mx-80:hover{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .lg\:hover\:my-96:hover{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .lg\:hover\:mx-96:hover{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .lg\:hover\:my-auto:hover{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .lg\:hover\:mx-auto:hover{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .lg\:hover\:my-px:hover{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .lg\:hover\:mx-px:hover{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .lg\:hover\:my-0\.5:hover{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .lg\:hover\:mx-0\.5:hover{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .lg\:hover\:my-1\.5:hover{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .lg\:hover\:mx-1\.5:hover{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .lg\:hover\:my-2\.5:hover{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .lg\:hover\:mx-2\.5:hover{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .lg\:hover\:my-3\.5:hover{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .lg\:hover\:mx-3\.5:hover{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .lg\:hover\:my-1\/2:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:mx-1\/2:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:hover\:my-1\/3:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:mx-1\/3:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:my-2\/3:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:mx-2\/3:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:my-1\/4:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .lg\:hover\:mx-1\/4:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .lg\:hover\:my-2\/4:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:mx-2\/4:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:hover\:my-3\/4:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .lg\:hover\:mx-3\/4:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .lg\:hover\:my-1\/5:hover{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .lg\:hover\:mx-1\/5:hover{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .lg\:hover\:my-2\/5:hover{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .lg\:hover\:mx-2\/5:hover{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .lg\:hover\:my-3\/5:hover{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .lg\:hover\:mx-3\/5:hover{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .lg\:hover\:my-4\/5:hover{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .lg\:hover\:mx-4\/5:hover{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .lg\:hover\:my-1\/6:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .lg\:hover\:mx-1\/6:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .lg\:hover\:my-2\/6:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:mx-2\/6:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:my-3\/6:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:mx-3\/6:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:hover\:my-4\/6:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:mx-4\/6:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:my-5\/6:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .lg\:hover\:mx-5\/6:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .lg\:hover\:my-1\/12:hover{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .lg\:hover\:mx-1\/12:hover{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .lg\:hover\:my-2\/12:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .lg\:hover\:mx-2\/12:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .lg\:hover\:my-3\/12:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .lg\:hover\:mx-3\/12:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .lg\:hover\:my-4\/12:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:mx-4\/12:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:my-5\/12:hover{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .lg\:hover\:mx-5\/12:hover{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .lg\:hover\:my-6\/12:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:mx-6\/12:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:hover\:my-7\/12:hover{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .lg\:hover\:mx-7\/12:hover{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .lg\:hover\:my-8\/12:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:mx-8\/12:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:my-9\/12:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .lg\:hover\:mx-9\/12:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .lg\:hover\:my-10\/12:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .lg\:hover\:mx-10\/12:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .lg\:hover\:my-11\/12:hover{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .lg\:hover\:mx-11\/12:hover{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .lg\:hover\:my-full:hover{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .lg\:hover\:mx-full:hover{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .lg\:hover\:-my-1:hover{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .lg\:hover\:-mx-1:hover{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .lg\:hover\:-my-2:hover{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .lg\:hover\:-mx-2:hover{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .lg\:hover\:-my-3:hover{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .lg\:hover\:-mx-3:hover{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .lg\:hover\:-my-4:hover{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .lg\:hover\:-mx-4:hover{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .lg\:hover\:-my-5:hover{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .lg\:hover\:-mx-5:hover{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .lg\:hover\:-my-6:hover{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .lg\:hover\:-mx-6:hover{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .lg\:hover\:-my-7:hover{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .lg\:hover\:-mx-7:hover{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .lg\:hover\:-my-8:hover{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .lg\:hover\:-mx-8:hover{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .lg\:hover\:-my-9:hover{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .lg\:hover\:-mx-9:hover{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .lg\:hover\:-my-10:hover{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .lg\:hover\:-mx-10:hover{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .lg\:hover\:-my-11:hover{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .lg\:hover\:-mx-11:hover{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .lg\:hover\:-my-12:hover{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .lg\:hover\:-mx-12:hover{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .lg\:hover\:-my-13:hover{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .lg\:hover\:-mx-13:hover{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .lg\:hover\:-my-14:hover{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .lg\:hover\:-mx-14:hover{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .lg\:hover\:-my-15:hover{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .lg\:hover\:-mx-15:hover{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .lg\:hover\:-my-16:hover{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .lg\:hover\:-mx-16:hover{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .lg\:hover\:-my-20:hover{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .lg\:hover\:-mx-20:hover{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .lg\:hover\:-my-24:hover{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .lg\:hover\:-mx-24:hover{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .lg\:hover\:-my-28:hover{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .lg\:hover\:-mx-28:hover{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .lg\:hover\:-my-32:hover{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .lg\:hover\:-mx-32:hover{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .lg\:hover\:-my-36:hover{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .lg\:hover\:-mx-36:hover{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .lg\:hover\:-my-40:hover{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .lg\:hover\:-mx-40:hover{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .lg\:hover\:-my-44:hover{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .lg\:hover\:-mx-44:hover{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .lg\:hover\:-my-48:hover{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .lg\:hover\:-mx-48:hover{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .lg\:hover\:-my-52:hover{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .lg\:hover\:-mx-52:hover{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .lg\:hover\:-my-56:hover{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .lg\:hover\:-mx-56:hover{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .lg\:hover\:-my-60:hover{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .lg\:hover\:-mx-60:hover{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .lg\:hover\:-my-64:hover{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .lg\:hover\:-mx-64:hover{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .lg\:hover\:-my-72:hover{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .lg\:hover\:-mx-72:hover{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .lg\:hover\:-my-80:hover{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .lg\:hover\:-mx-80:hover{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .lg\:hover\:-my-96:hover{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .lg\:hover\:-mx-96:hover{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .lg\:hover\:-my-px:hover{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .lg\:hover\:-mx-px:hover{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .lg\:hover\:-my-0\.5:hover{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .lg\:hover\:-mx-0\.5:hover{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .lg\:hover\:-my-1\.5:hover{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .lg\:hover\:-mx-1\.5:hover{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .lg\:hover\:-my-2\.5:hover{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .lg\:hover\:-mx-2\.5:hover{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .lg\:hover\:-my-3\.5:hover{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .lg\:hover\:-mx-3\.5:hover{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .lg\:hover\:-my-1\/2:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-mx-1\/2:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:hover\:-my-1\/3:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-mx-1\/3:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-my-2\/3:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-mx-2\/3:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-my-1\/4:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .lg\:hover\:-mx-1\/4:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .lg\:hover\:-my-2\/4:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-mx-2\/4:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:hover\:-my-3\/4:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .lg\:hover\:-mx-3\/4:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .lg\:hover\:-my-1\/5:hover{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .lg\:hover\:-mx-1\/5:hover{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .lg\:hover\:-my-2\/5:hover{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .lg\:hover\:-mx-2\/5:hover{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .lg\:hover\:-my-3\/5:hover{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .lg\:hover\:-mx-3\/5:hover{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .lg\:hover\:-my-4\/5:hover{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .lg\:hover\:-mx-4\/5:hover{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .lg\:hover\:-my-1\/6:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .lg\:hover\:-mx-1\/6:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .lg\:hover\:-my-2\/6:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-mx-2\/6:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-my-3\/6:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-mx-3\/6:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:hover\:-my-4\/6:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-mx-4\/6:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-my-5\/6:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .lg\:hover\:-mx-5\/6:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .lg\:hover\:-my-1\/12:hover{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .lg\:hover\:-mx-1\/12:hover{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .lg\:hover\:-my-2\/12:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .lg\:hover\:-mx-2\/12:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .lg\:hover\:-my-3\/12:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .lg\:hover\:-mx-3\/12:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .lg\:hover\:-my-4\/12:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-mx-4\/12:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-my-5\/12:hover{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .lg\:hover\:-mx-5\/12:hover{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .lg\:hover\:-my-6\/12:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-mx-6\/12:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:hover\:-my-7\/12:hover{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .lg\:hover\:-mx-7\/12:hover{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .lg\:hover\:-my-8\/12:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-mx-8\/12:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-my-9\/12:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .lg\:hover\:-mx-9\/12:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .lg\:hover\:-my-10\/12:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .lg\:hover\:-mx-10\/12:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .lg\:hover\:-my-11\/12:hover{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .lg\:hover\:-mx-11\/12:hover{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .lg\:hover\:-my-full:hover{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .lg\:hover\:-mx-full:hover{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .lg\:hover\:mt-0:hover{
    margin-top     : 0 !important;
  }

  .lg\:hover\:mr-0:hover{
    margin-right     : 0 !important;
  }

  .lg\:hover\:mb-0:hover{
    margin-bottom     : 0 !important;
  }

  .lg\:hover\:ml-0:hover{
    margin-left     : 0 !important;
  }

  .lg\:hover\:mt-1:hover{
    margin-top     : 0.25rem !important;
  }

  .lg\:hover\:mr-1:hover{
    margin-right     : 0.25rem !important;
  }

  .lg\:hover\:mb-1:hover{
    margin-bottom     : 0.25rem !important;
  }

  .lg\:hover\:ml-1:hover{
    margin-left     : 0.25rem !important;
  }

  .lg\:hover\:mt-2:hover{
    margin-top     : 0.5rem !important;
  }

  .lg\:hover\:mr-2:hover{
    margin-right     : 0.5rem !important;
  }

  .lg\:hover\:mb-2:hover{
    margin-bottom     : 0.5rem !important;
  }

  .lg\:hover\:ml-2:hover{
    margin-left     : 0.5rem !important;
  }

  .lg\:hover\:mt-3:hover{
    margin-top     : 0.75rem !important;
  }

  .lg\:hover\:mr-3:hover{
    margin-right     : 0.75rem !important;
  }

  .lg\:hover\:mb-3:hover{
    margin-bottom     : 0.75rem !important;
  }

  .lg\:hover\:ml-3:hover{
    margin-left     : 0.75rem !important;
  }

  .lg\:hover\:mt-4:hover{
    margin-top     : 1rem !important;
  }

  .lg\:hover\:mr-4:hover{
    margin-right     : 1rem !important;
  }

  .lg\:hover\:mb-4:hover{
    margin-bottom     : 1rem !important;
  }

  .lg\:hover\:ml-4:hover{
    margin-left     : 1rem !important;
  }

  .lg\:hover\:mt-5:hover{
    margin-top     : 1.25rem !important;
  }

  .lg\:hover\:mr-5:hover{
    margin-right     : 1.25rem !important;
  }

  .lg\:hover\:mb-5:hover{
    margin-bottom     : 1.25rem !important;
  }

  .lg\:hover\:ml-5:hover{
    margin-left     : 1.25rem !important;
  }

  .lg\:hover\:mt-6:hover{
    margin-top     : 1.5rem !important;
  }

  .lg\:hover\:mr-6:hover{
    margin-right     : 1.5rem !important;
  }

  .lg\:hover\:mb-6:hover{
    margin-bottom     : 1.5rem !important;
  }

  .lg\:hover\:ml-6:hover{
    margin-left     : 1.5rem !important;
  }

  .lg\:hover\:mt-7:hover{
    margin-top     : 1.75rem !important;
  }

  .lg\:hover\:mr-7:hover{
    margin-right     : 1.75rem !important;
  }

  .lg\:hover\:mb-7:hover{
    margin-bottom     : 1.75rem !important;
  }

  .lg\:hover\:ml-7:hover{
    margin-left     : 1.75rem !important;
  }

  .lg\:hover\:mt-8:hover{
    margin-top     : 2rem !important;
  }

  .lg\:hover\:mr-8:hover{
    margin-right     : 2rem !important;
  }

  .lg\:hover\:mb-8:hover{
    margin-bottom     : 2rem !important;
  }

  .lg\:hover\:ml-8:hover{
    margin-left     : 2rem !important;
  }

  .lg\:hover\:mt-9:hover{
    margin-top     : 2.25rem !important;
  }

  .lg\:hover\:mr-9:hover{
    margin-right     : 2.25rem !important;
  }

  .lg\:hover\:mb-9:hover{
    margin-bottom     : 2.25rem !important;
  }

  .lg\:hover\:ml-9:hover{
    margin-left     : 2.25rem !important;
  }

  .lg\:hover\:mt-10:hover{
    margin-top     : 2.5rem !important;
  }

  .lg\:hover\:mr-10:hover{
    margin-right     : 2.5rem !important;
  }

  .lg\:hover\:mb-10:hover{
    margin-bottom     : 2.5rem !important;
  }

  .lg\:hover\:ml-10:hover{
    margin-left     : 2.5rem !important;
  }

  .lg\:hover\:mt-11:hover{
    margin-top     : 2.75rem !important;
  }

  .lg\:hover\:mr-11:hover{
    margin-right     : 2.75rem !important;
  }

  .lg\:hover\:mb-11:hover{
    margin-bottom     : 2.75rem !important;
  }

  .lg\:hover\:ml-11:hover{
    margin-left     : 2.75rem !important;
  }

  .lg\:hover\:mt-12:hover{
    margin-top     : 3rem !important;
  }

  .lg\:hover\:mr-12:hover{
    margin-right     : 3rem !important;
  }

  .lg\:hover\:mb-12:hover{
    margin-bottom     : 3rem !important;
  }

  .lg\:hover\:ml-12:hover{
    margin-left     : 3rem !important;
  }

  .lg\:hover\:mt-13:hover{
    margin-top     : 3.25rem !important;
  }

  .lg\:hover\:mr-13:hover{
    margin-right     : 3.25rem !important;
  }

  .lg\:hover\:mb-13:hover{
    margin-bottom     : 3.25rem !important;
  }

  .lg\:hover\:ml-13:hover{
    margin-left     : 3.25rem !important;
  }

  .lg\:hover\:mt-14:hover{
    margin-top     : 3.5rem !important;
  }

  .lg\:hover\:mr-14:hover{
    margin-right     : 3.5rem !important;
  }

  .lg\:hover\:mb-14:hover{
    margin-bottom     : 3.5rem !important;
  }

  .lg\:hover\:ml-14:hover{
    margin-left     : 3.5rem !important;
  }

  .lg\:hover\:mt-15:hover{
    margin-top     : 3.75rem !important;
  }

  .lg\:hover\:mr-15:hover{
    margin-right     : 3.75rem !important;
  }

  .lg\:hover\:mb-15:hover{
    margin-bottom     : 3.75rem !important;
  }

  .lg\:hover\:ml-15:hover{
    margin-left     : 3.75rem !important;
  }

  .lg\:hover\:mt-16:hover{
    margin-top     : 4rem !important;
  }

  .lg\:hover\:mr-16:hover{
    margin-right     : 4rem !important;
  }

  .lg\:hover\:mb-16:hover{
    margin-bottom     : 4rem !important;
  }

  .lg\:hover\:ml-16:hover{
    margin-left     : 4rem !important;
  }

  .lg\:hover\:mt-20:hover{
    margin-top     : 5rem !important;
  }

  .lg\:hover\:mr-20:hover{
    margin-right     : 5rem !important;
  }

  .lg\:hover\:mb-20:hover{
    margin-bottom     : 5rem !important;
  }

  .lg\:hover\:ml-20:hover{
    margin-left     : 5rem !important;
  }

  .lg\:hover\:mt-24:hover{
    margin-top     : 6rem !important;
  }

  .lg\:hover\:mr-24:hover{
    margin-right     : 6rem !important;
  }

  .lg\:hover\:mb-24:hover{
    margin-bottom     : 6rem !important;
  }

  .lg\:hover\:ml-24:hover{
    margin-left     : 6rem !important;
  }

  .lg\:hover\:mt-28:hover{
    margin-top     : 7rem !important;
  }

  .lg\:hover\:mr-28:hover{
    margin-right     : 7rem !important;
  }

  .lg\:hover\:mb-28:hover{
    margin-bottom     : 7rem !important;
  }

  .lg\:hover\:ml-28:hover{
    margin-left     : 7rem !important;
  }

  .lg\:hover\:mt-32:hover{
    margin-top     : 8rem !important;
  }

  .lg\:hover\:mr-32:hover{
    margin-right     : 8rem !important;
  }

  .lg\:hover\:mb-32:hover{
    margin-bottom     : 8rem !important;
  }

  .lg\:hover\:ml-32:hover{
    margin-left     : 8rem !important;
  }

  .lg\:hover\:mt-36:hover{
    margin-top     : 9rem !important;
  }

  .lg\:hover\:mr-36:hover{
    margin-right     : 9rem !important;
  }

  .lg\:hover\:mb-36:hover{
    margin-bottom     : 9rem !important;
  }

  .lg\:hover\:ml-36:hover{
    margin-left     : 9rem !important;
  }

  .lg\:hover\:mt-40:hover{
    margin-top     : 10rem !important;
  }

  .lg\:hover\:mr-40:hover{
    margin-right     : 10rem !important;
  }

  .lg\:hover\:mb-40:hover{
    margin-bottom     : 10rem !important;
  }

  .lg\:hover\:ml-40:hover{
    margin-left     : 10rem !important;
  }

  .lg\:hover\:mt-44:hover{
    margin-top     : 11rem !important;
  }

  .lg\:hover\:mr-44:hover{
    margin-right     : 11rem !important;
  }

  .lg\:hover\:mb-44:hover{
    margin-bottom     : 11rem !important;
  }

  .lg\:hover\:ml-44:hover{
    margin-left     : 11rem !important;
  }

  .lg\:hover\:mt-48:hover{
    margin-top     : 12rem !important;
  }

  .lg\:hover\:mr-48:hover{
    margin-right     : 12rem !important;
  }

  .lg\:hover\:mb-48:hover{
    margin-bottom     : 12rem !important;
  }

  .lg\:hover\:ml-48:hover{
    margin-left     : 12rem !important;
  }

  .lg\:hover\:mt-52:hover{
    margin-top     : 13rem !important;
  }

  .lg\:hover\:mr-52:hover{
    margin-right     : 13rem !important;
  }

  .lg\:hover\:mb-52:hover{
    margin-bottom     : 13rem !important;
  }

  .lg\:hover\:ml-52:hover{
    margin-left     : 13rem !important;
  }

  .lg\:hover\:mt-56:hover{
    margin-top     : 14rem !important;
  }

  .lg\:hover\:mr-56:hover{
    margin-right     : 14rem !important;
  }

  .lg\:hover\:mb-56:hover{
    margin-bottom     : 14rem !important;
  }

  .lg\:hover\:ml-56:hover{
    margin-left     : 14rem !important;
  }

  .lg\:hover\:mt-60:hover{
    margin-top     : 15rem !important;
  }

  .lg\:hover\:mr-60:hover{
    margin-right     : 15rem !important;
  }

  .lg\:hover\:mb-60:hover{
    margin-bottom     : 15rem !important;
  }

  .lg\:hover\:ml-60:hover{
    margin-left     : 15rem !important;
  }

  .lg\:hover\:mt-64:hover{
    margin-top     : 16rem !important;
  }

  .lg\:hover\:mr-64:hover{
    margin-right     : 16rem !important;
  }

  .lg\:hover\:mb-64:hover{
    margin-bottom     : 16rem !important;
  }

  .lg\:hover\:ml-64:hover{
    margin-left     : 16rem !important;
  }

  .lg\:hover\:mt-72:hover{
    margin-top     : 18rem !important;
  }

  .lg\:hover\:mr-72:hover{
    margin-right     : 18rem !important;
  }

  .lg\:hover\:mb-72:hover{
    margin-bottom     : 18rem !important;
  }

  .lg\:hover\:ml-72:hover{
    margin-left     : 18rem !important;
  }

  .lg\:hover\:mt-80:hover{
    margin-top     : 20rem !important;
  }

  .lg\:hover\:mr-80:hover{
    margin-right     : 20rem !important;
  }

  .lg\:hover\:mb-80:hover{
    margin-bottom     : 20rem !important;
  }

  .lg\:hover\:ml-80:hover{
    margin-left     : 20rem !important;
  }

  .lg\:hover\:mt-96:hover{
    margin-top     : 24rem !important;
  }

  .lg\:hover\:mr-96:hover{
    margin-right     : 24rem !important;
  }

  .lg\:hover\:mb-96:hover{
    margin-bottom     : 24rem !important;
  }

  .lg\:hover\:ml-96:hover{
    margin-left     : 24rem !important;
  }

  .lg\:hover\:mt-auto:hover{
    margin-top     : auto !important;
  }

  .lg\:hover\:mr-auto:hover{
    margin-right     : auto !important;
  }

  .lg\:hover\:mb-auto:hover{
    margin-bottom     : auto !important;
  }

  .lg\:hover\:ml-auto:hover{
    margin-left     : auto !important;
  }

  .lg\:hover\:mt-px:hover{
    margin-top     : 1px !important;
  }

  .lg\:hover\:mr-px:hover{
    margin-right     : 1px !important;
  }

  .lg\:hover\:mb-px:hover{
    margin-bottom     : 1px !important;
  }

  .lg\:hover\:ml-px:hover{
    margin-left     : 1px !important;
  }

  .lg\:hover\:mt-0\.5:hover{
    margin-top     : 0.125rem !important;
  }

  .lg\:hover\:mr-0\.5:hover{
    margin-right     : 0.125rem !important;
  }

  .lg\:hover\:mb-0\.5:hover{
    margin-bottom     : 0.125rem !important;
  }

  .lg\:hover\:ml-0\.5:hover{
    margin-left     : 0.125rem !important;
  }

  .lg\:hover\:mt-1\.5:hover{
    margin-top     : 0.375rem !important;
  }

  .lg\:hover\:mr-1\.5:hover{
    margin-right     : 0.375rem !important;
  }

  .lg\:hover\:mb-1\.5:hover{
    margin-bottom     : 0.375rem !important;
  }

  .lg\:hover\:ml-1\.5:hover{
    margin-left     : 0.375rem !important;
  }

  .lg\:hover\:mt-2\.5:hover{
    margin-top     : 0.625rem !important;
  }

  .lg\:hover\:mr-2\.5:hover{
    margin-right     : 0.625rem !important;
  }

  .lg\:hover\:mb-2\.5:hover{
    margin-bottom     : 0.625rem !important;
  }

  .lg\:hover\:ml-2\.5:hover{
    margin-left     : 0.625rem !important;
  }

  .lg\:hover\:mt-3\.5:hover{
    margin-top     : 0.875rem !important;
  }

  .lg\:hover\:mr-3\.5:hover{
    margin-right     : 0.875rem !important;
  }

  .lg\:hover\:mb-3\.5:hover{
    margin-bottom     : 0.875rem !important;
  }

  .lg\:hover\:ml-3\.5:hover{
    margin-left     : 0.875rem !important;
  }

  .lg\:hover\:mt-1\/2:hover{
    margin-top     : 50% !important;
  }

  .lg\:hover\:mr-1\/2:hover{
    margin-right     : 50% !important;
  }

  .lg\:hover\:mb-1\/2:hover{
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:ml-1\/2:hover{
    margin-left     : 50% !important;
  }

  .lg\:hover\:mt-1\/3:hover{
    margin-top     : 33.333333% !important;
  }

  .lg\:hover\:mr-1\/3:hover{
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:mb-1\/3:hover{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:ml-1\/3:hover{
    margin-left     : 33.333333% !important;
  }

  .lg\:hover\:mt-2\/3:hover{
    margin-top     : 66.666667% !important;
  }

  .lg\:hover\:mr-2\/3:hover{
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:mb-2\/3:hover{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:ml-2\/3:hover{
    margin-left     : 66.666667% !important;
  }

  .lg\:hover\:mt-1\/4:hover{
    margin-top     : 25% !important;
  }

  .lg\:hover\:mr-1\/4:hover{
    margin-right     : 25% !important;
  }

  .lg\:hover\:mb-1\/4:hover{
    margin-bottom     : 25% !important;
  }

  .lg\:hover\:ml-1\/4:hover{
    margin-left     : 25% !important;
  }

  .lg\:hover\:mt-2\/4:hover{
    margin-top     : 50% !important;
  }

  .lg\:hover\:mr-2\/4:hover{
    margin-right     : 50% !important;
  }

  .lg\:hover\:mb-2\/4:hover{
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:ml-2\/4:hover{
    margin-left     : 50% !important;
  }

  .lg\:hover\:mt-3\/4:hover{
    margin-top     : 75% !important;
  }

  .lg\:hover\:mr-3\/4:hover{
    margin-right     : 75% !important;
  }

  .lg\:hover\:mb-3\/4:hover{
    margin-bottom     : 75% !important;
  }

  .lg\:hover\:ml-3\/4:hover{
    margin-left     : 75% !important;
  }

  .lg\:hover\:mt-1\/5:hover{
    margin-top     : 20% !important;
  }

  .lg\:hover\:mr-1\/5:hover{
    margin-right     : 20% !important;
  }

  .lg\:hover\:mb-1\/5:hover{
    margin-bottom     : 20% !important;
  }

  .lg\:hover\:ml-1\/5:hover{
    margin-left     : 20% !important;
  }

  .lg\:hover\:mt-2\/5:hover{
    margin-top     : 40% !important;
  }

  .lg\:hover\:mr-2\/5:hover{
    margin-right     : 40% !important;
  }

  .lg\:hover\:mb-2\/5:hover{
    margin-bottom     : 40% !important;
  }

  .lg\:hover\:ml-2\/5:hover{
    margin-left     : 40% !important;
  }

  .lg\:hover\:mt-3\/5:hover{
    margin-top     : 60% !important;
  }

  .lg\:hover\:mr-3\/5:hover{
    margin-right     : 60% !important;
  }

  .lg\:hover\:mb-3\/5:hover{
    margin-bottom     : 60% !important;
  }

  .lg\:hover\:ml-3\/5:hover{
    margin-left     : 60% !important;
  }

  .lg\:hover\:mt-4\/5:hover{
    margin-top     : 80% !important;
  }

  .lg\:hover\:mr-4\/5:hover{
    margin-right     : 80% !important;
  }

  .lg\:hover\:mb-4\/5:hover{
    margin-bottom     : 80% !important;
  }

  .lg\:hover\:ml-4\/5:hover{
    margin-left     : 80% !important;
  }

  .lg\:hover\:mt-1\/6:hover{
    margin-top     : 16.666667% !important;
  }

  .lg\:hover\:mr-1\/6:hover{
    margin-right     : 16.666667% !important;
  }

  .lg\:hover\:mb-1\/6:hover{
    margin-bottom     : 16.666667% !important;
  }

  .lg\:hover\:ml-1\/6:hover{
    margin-left     : 16.666667% !important;
  }

  .lg\:hover\:mt-2\/6:hover{
    margin-top     : 33.333333% !important;
  }

  .lg\:hover\:mr-2\/6:hover{
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:mb-2\/6:hover{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:ml-2\/6:hover{
    margin-left     : 33.333333% !important;
  }

  .lg\:hover\:mt-3\/6:hover{
    margin-top     : 50% !important;
  }

  .lg\:hover\:mr-3\/6:hover{
    margin-right     : 50% !important;
  }

  .lg\:hover\:mb-3\/6:hover{
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:ml-3\/6:hover{
    margin-left     : 50% !important;
  }

  .lg\:hover\:mt-4\/6:hover{
    margin-top     : 66.666667% !important;
  }

  .lg\:hover\:mr-4\/6:hover{
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:mb-4\/6:hover{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:ml-4\/6:hover{
    margin-left     : 66.666667% !important;
  }

  .lg\:hover\:mt-5\/6:hover{
    margin-top     : 83.333333% !important;
  }

  .lg\:hover\:mr-5\/6:hover{
    margin-right     : 83.333333% !important;
  }

  .lg\:hover\:mb-5\/6:hover{
    margin-bottom     : 83.333333% !important;
  }

  .lg\:hover\:ml-5\/6:hover{
    margin-left     : 83.333333% !important;
  }

  .lg\:hover\:mt-1\/12:hover{
    margin-top     : 8.333333% !important;
  }

  .lg\:hover\:mr-1\/12:hover{
    margin-right     : 8.333333% !important;
  }

  .lg\:hover\:mb-1\/12:hover{
    margin-bottom     : 8.333333% !important;
  }

  .lg\:hover\:ml-1\/12:hover{
    margin-left     : 8.333333% !important;
  }

  .lg\:hover\:mt-2\/12:hover{
    margin-top     : 16.666667% !important;
  }

  .lg\:hover\:mr-2\/12:hover{
    margin-right     : 16.666667% !important;
  }

  .lg\:hover\:mb-2\/12:hover{
    margin-bottom     : 16.666667% !important;
  }

  .lg\:hover\:ml-2\/12:hover{
    margin-left     : 16.666667% !important;
  }

  .lg\:hover\:mt-3\/12:hover{
    margin-top     : 25% !important;
  }

  .lg\:hover\:mr-3\/12:hover{
    margin-right     : 25% !important;
  }

  .lg\:hover\:mb-3\/12:hover{
    margin-bottom     : 25% !important;
  }

  .lg\:hover\:ml-3\/12:hover{
    margin-left     : 25% !important;
  }

  .lg\:hover\:mt-4\/12:hover{
    margin-top     : 33.333333% !important;
  }

  .lg\:hover\:mr-4\/12:hover{
    margin-right     : 33.333333% !important;
  }

  .lg\:hover\:mb-4\/12:hover{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:hover\:ml-4\/12:hover{
    margin-left     : 33.333333% !important;
  }

  .lg\:hover\:mt-5\/12:hover{
    margin-top     : 41.666667% !important;
  }

  .lg\:hover\:mr-5\/12:hover{
    margin-right     : 41.666667% !important;
  }

  .lg\:hover\:mb-5\/12:hover{
    margin-bottom     : 41.666667% !important;
  }

  .lg\:hover\:ml-5\/12:hover{
    margin-left     : 41.666667% !important;
  }

  .lg\:hover\:mt-6\/12:hover{
    margin-top     : 50% !important;
  }

  .lg\:hover\:mr-6\/12:hover{
    margin-right     : 50% !important;
  }

  .lg\:hover\:mb-6\/12:hover{
    margin-bottom     : 50% !important;
  }

  .lg\:hover\:ml-6\/12:hover{
    margin-left     : 50% !important;
  }

  .lg\:hover\:mt-7\/12:hover{
    margin-top     : 58.333333% !important;
  }

  .lg\:hover\:mr-7\/12:hover{
    margin-right     : 58.333333% !important;
  }

  .lg\:hover\:mb-7\/12:hover{
    margin-bottom     : 58.333333% !important;
  }

  .lg\:hover\:ml-7\/12:hover{
    margin-left     : 58.333333% !important;
  }

  .lg\:hover\:mt-8\/12:hover{
    margin-top     : 66.666667% !important;
  }

  .lg\:hover\:mr-8\/12:hover{
    margin-right     : 66.666667% !important;
  }

  .lg\:hover\:mb-8\/12:hover{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:hover\:ml-8\/12:hover{
    margin-left     : 66.666667% !important;
  }

  .lg\:hover\:mt-9\/12:hover{
    margin-top     : 75% !important;
  }

  .lg\:hover\:mr-9\/12:hover{
    margin-right     : 75% !important;
  }

  .lg\:hover\:mb-9\/12:hover{
    margin-bottom     : 75% !important;
  }

  .lg\:hover\:ml-9\/12:hover{
    margin-left     : 75% !important;
  }

  .lg\:hover\:mt-10\/12:hover{
    margin-top     : 83.333333% !important;
  }

  .lg\:hover\:mr-10\/12:hover{
    margin-right     : 83.333333% !important;
  }

  .lg\:hover\:mb-10\/12:hover{
    margin-bottom     : 83.333333% !important;
  }

  .lg\:hover\:ml-10\/12:hover{
    margin-left     : 83.333333% !important;
  }

  .lg\:hover\:mt-11\/12:hover{
    margin-top     : 91.666667% !important;
  }

  .lg\:hover\:mr-11\/12:hover{
    margin-right     : 91.666667% !important;
  }

  .lg\:hover\:mb-11\/12:hover{
    margin-bottom     : 91.666667% !important;
  }

  .lg\:hover\:ml-11\/12:hover{
    margin-left     : 91.666667% !important;
  }

  .lg\:hover\:mt-full:hover{
    margin-top     : 100% !important;
  }

  .lg\:hover\:mr-full:hover{
    margin-right     : 100% !important;
  }

  .lg\:hover\:mb-full:hover{
    margin-bottom     : 100% !important;
  }

  .lg\:hover\:ml-full:hover{
    margin-left     : 100% !important;
  }

  .lg\:hover\:-mt-1:hover{
    margin-top     : -0.25rem !important;
  }

  .lg\:hover\:-mr-1:hover{
    margin-right     : -0.25rem !important;
  }

  .lg\:hover\:-mb-1:hover{
    margin-bottom     : -0.25rem !important;
  }

  .lg\:hover\:-ml-1:hover{
    margin-left     : -0.25rem !important;
  }

  .lg\:hover\:-mt-2:hover{
    margin-top     : -0.5rem !important;
  }

  .lg\:hover\:-mr-2:hover{
    margin-right     : -0.5rem !important;
  }

  .lg\:hover\:-mb-2:hover{
    margin-bottom     : -0.5rem !important;
  }

  .lg\:hover\:-ml-2:hover{
    margin-left     : -0.5rem !important;
  }

  .lg\:hover\:-mt-3:hover{
    margin-top     : -0.75rem !important;
  }

  .lg\:hover\:-mr-3:hover{
    margin-right     : -0.75rem !important;
  }

  .lg\:hover\:-mb-3:hover{
    margin-bottom     : -0.75rem !important;
  }

  .lg\:hover\:-ml-3:hover{
    margin-left     : -0.75rem !important;
  }

  .lg\:hover\:-mt-4:hover{
    margin-top     : -1rem !important;
  }

  .lg\:hover\:-mr-4:hover{
    margin-right     : -1rem !important;
  }

  .lg\:hover\:-mb-4:hover{
    margin-bottom     : -1rem !important;
  }

  .lg\:hover\:-ml-4:hover{
    margin-left     : -1rem !important;
  }

  .lg\:hover\:-mt-5:hover{
    margin-top     : -1.25rem !important;
  }

  .lg\:hover\:-mr-5:hover{
    margin-right     : -1.25rem !important;
  }

  .lg\:hover\:-mb-5:hover{
    margin-bottom     : -1.25rem !important;
  }

  .lg\:hover\:-ml-5:hover{
    margin-left     : -1.25rem !important;
  }

  .lg\:hover\:-mt-6:hover{
    margin-top     : -1.5rem !important;
  }

  .lg\:hover\:-mr-6:hover{
    margin-right     : -1.5rem !important;
  }

  .lg\:hover\:-mb-6:hover{
    margin-bottom     : -1.5rem !important;
  }

  .lg\:hover\:-ml-6:hover{
    margin-left     : -1.5rem !important;
  }

  .lg\:hover\:-mt-7:hover{
    margin-top     : -1.75rem !important;
  }

  .lg\:hover\:-mr-7:hover{
    margin-right     : -1.75rem !important;
  }

  .lg\:hover\:-mb-7:hover{
    margin-bottom     : -1.75rem !important;
  }

  .lg\:hover\:-ml-7:hover{
    margin-left     : -1.75rem !important;
  }

  .lg\:hover\:-mt-8:hover{
    margin-top     : -2rem !important;
  }

  .lg\:hover\:-mr-8:hover{
    margin-right     : -2rem !important;
  }

  .lg\:hover\:-mb-8:hover{
    margin-bottom     : -2rem !important;
  }

  .lg\:hover\:-ml-8:hover{
    margin-left     : -2rem !important;
  }

  .lg\:hover\:-mt-9:hover{
    margin-top     : -2.25rem !important;
  }

  .lg\:hover\:-mr-9:hover{
    margin-right     : -2.25rem !important;
  }

  .lg\:hover\:-mb-9:hover{
    margin-bottom     : -2.25rem !important;
  }

  .lg\:hover\:-ml-9:hover{
    margin-left     : -2.25rem !important;
  }

  .lg\:hover\:-mt-10:hover{
    margin-top     : -2.5rem !important;
  }

  .lg\:hover\:-mr-10:hover{
    margin-right     : -2.5rem !important;
  }

  .lg\:hover\:-mb-10:hover{
    margin-bottom     : -2.5rem !important;
  }

  .lg\:hover\:-ml-10:hover{
    margin-left     : -2.5rem !important;
  }

  .lg\:hover\:-mt-11:hover{
    margin-top     : -2.75rem !important;
  }

  .lg\:hover\:-mr-11:hover{
    margin-right     : -2.75rem !important;
  }

  .lg\:hover\:-mb-11:hover{
    margin-bottom     : -2.75rem !important;
  }

  .lg\:hover\:-ml-11:hover{
    margin-left     : -2.75rem !important;
  }

  .lg\:hover\:-mt-12:hover{
    margin-top     : -3rem !important;
  }

  .lg\:hover\:-mr-12:hover{
    margin-right     : -3rem !important;
  }

  .lg\:hover\:-mb-12:hover{
    margin-bottom     : -3rem !important;
  }

  .lg\:hover\:-ml-12:hover{
    margin-left     : -3rem !important;
  }

  .lg\:hover\:-mt-13:hover{
    margin-top     : -3.25rem !important;
  }

  .lg\:hover\:-mr-13:hover{
    margin-right     : -3.25rem !important;
  }

  .lg\:hover\:-mb-13:hover{
    margin-bottom     : -3.25rem !important;
  }

  .lg\:hover\:-ml-13:hover{
    margin-left     : -3.25rem !important;
  }

  .lg\:hover\:-mt-14:hover{
    margin-top     : -3.5rem !important;
  }

  .lg\:hover\:-mr-14:hover{
    margin-right     : -3.5rem !important;
  }

  .lg\:hover\:-mb-14:hover{
    margin-bottom     : -3.5rem !important;
  }

  .lg\:hover\:-ml-14:hover{
    margin-left     : -3.5rem !important;
  }

  .lg\:hover\:-mt-15:hover{
    margin-top     : -3.75rem !important;
  }

  .lg\:hover\:-mr-15:hover{
    margin-right     : -3.75rem !important;
  }

  .lg\:hover\:-mb-15:hover{
    margin-bottom     : -3.75rem !important;
  }

  .lg\:hover\:-ml-15:hover{
    margin-left     : -3.75rem !important;
  }

  .lg\:hover\:-mt-16:hover{
    margin-top     : -4rem !important;
  }

  .lg\:hover\:-mr-16:hover{
    margin-right     : -4rem !important;
  }

  .lg\:hover\:-mb-16:hover{
    margin-bottom     : -4rem !important;
  }

  .lg\:hover\:-ml-16:hover{
    margin-left     : -4rem !important;
  }

  .lg\:hover\:-mt-20:hover{
    margin-top     : -5rem !important;
  }

  .lg\:hover\:-mr-20:hover{
    margin-right     : -5rem !important;
  }

  .lg\:hover\:-mb-20:hover{
    margin-bottom     : -5rem !important;
  }

  .lg\:hover\:-ml-20:hover{
    margin-left     : -5rem !important;
  }

  .lg\:hover\:-mt-24:hover{
    margin-top     : -6rem !important;
  }

  .lg\:hover\:-mr-24:hover{
    margin-right     : -6rem !important;
  }

  .lg\:hover\:-mb-24:hover{
    margin-bottom     : -6rem !important;
  }

  .lg\:hover\:-ml-24:hover{
    margin-left     : -6rem !important;
  }

  .lg\:hover\:-mt-28:hover{
    margin-top     : -7rem !important;
  }

  .lg\:hover\:-mr-28:hover{
    margin-right     : -7rem !important;
  }

  .lg\:hover\:-mb-28:hover{
    margin-bottom     : -7rem !important;
  }

  .lg\:hover\:-ml-28:hover{
    margin-left     : -7rem !important;
  }

  .lg\:hover\:-mt-32:hover{
    margin-top     : -8rem !important;
  }

  .lg\:hover\:-mr-32:hover{
    margin-right     : -8rem !important;
  }

  .lg\:hover\:-mb-32:hover{
    margin-bottom     : -8rem !important;
  }

  .lg\:hover\:-ml-32:hover{
    margin-left     : -8rem !important;
  }

  .lg\:hover\:-mt-36:hover{
    margin-top     : -9rem !important;
  }

  .lg\:hover\:-mr-36:hover{
    margin-right     : -9rem !important;
  }

  .lg\:hover\:-mb-36:hover{
    margin-bottom     : -9rem !important;
  }

  .lg\:hover\:-ml-36:hover{
    margin-left     : -9rem !important;
  }

  .lg\:hover\:-mt-40:hover{
    margin-top     : -10rem !important;
  }

  .lg\:hover\:-mr-40:hover{
    margin-right     : -10rem !important;
  }

  .lg\:hover\:-mb-40:hover{
    margin-bottom     : -10rem !important;
  }

  .lg\:hover\:-ml-40:hover{
    margin-left     : -10rem !important;
  }

  .lg\:hover\:-mt-44:hover{
    margin-top     : -11rem !important;
  }

  .lg\:hover\:-mr-44:hover{
    margin-right     : -11rem !important;
  }

  .lg\:hover\:-mb-44:hover{
    margin-bottom     : -11rem !important;
  }

  .lg\:hover\:-ml-44:hover{
    margin-left     : -11rem !important;
  }

  .lg\:hover\:-mt-48:hover{
    margin-top     : -12rem !important;
  }

  .lg\:hover\:-mr-48:hover{
    margin-right     : -12rem !important;
  }

  .lg\:hover\:-mb-48:hover{
    margin-bottom     : -12rem !important;
  }

  .lg\:hover\:-ml-48:hover{
    margin-left     : -12rem !important;
  }

  .lg\:hover\:-mt-52:hover{
    margin-top     : -13rem !important;
  }

  .lg\:hover\:-mr-52:hover{
    margin-right     : -13rem !important;
  }

  .lg\:hover\:-mb-52:hover{
    margin-bottom     : -13rem !important;
  }

  .lg\:hover\:-ml-52:hover{
    margin-left     : -13rem !important;
  }

  .lg\:hover\:-mt-56:hover{
    margin-top     : -14rem !important;
  }

  .lg\:hover\:-mr-56:hover{
    margin-right     : -14rem !important;
  }

  .lg\:hover\:-mb-56:hover{
    margin-bottom     : -14rem !important;
  }

  .lg\:hover\:-ml-56:hover{
    margin-left     : -14rem !important;
  }

  .lg\:hover\:-mt-60:hover{
    margin-top     : -15rem !important;
  }

  .lg\:hover\:-mr-60:hover{
    margin-right     : -15rem !important;
  }

  .lg\:hover\:-mb-60:hover{
    margin-bottom     : -15rem !important;
  }

  .lg\:hover\:-ml-60:hover{
    margin-left     : -15rem !important;
  }

  .lg\:hover\:-mt-64:hover{
    margin-top     : -16rem !important;
  }

  .lg\:hover\:-mr-64:hover{
    margin-right     : -16rem !important;
  }

  .lg\:hover\:-mb-64:hover{
    margin-bottom     : -16rem !important;
  }

  .lg\:hover\:-ml-64:hover{
    margin-left     : -16rem !important;
  }

  .lg\:hover\:-mt-72:hover{
    margin-top     : -18rem !important;
  }

  .lg\:hover\:-mr-72:hover{
    margin-right     : -18rem !important;
  }

  .lg\:hover\:-mb-72:hover{
    margin-bottom     : -18rem !important;
  }

  .lg\:hover\:-ml-72:hover{
    margin-left     : -18rem !important;
  }

  .lg\:hover\:-mt-80:hover{
    margin-top     : -20rem !important;
  }

  .lg\:hover\:-mr-80:hover{
    margin-right     : -20rem !important;
  }

  .lg\:hover\:-mb-80:hover{
    margin-bottom     : -20rem !important;
  }

  .lg\:hover\:-ml-80:hover{
    margin-left     : -20rem !important;
  }

  .lg\:hover\:-mt-96:hover{
    margin-top     : -24rem !important;
  }

  .lg\:hover\:-mr-96:hover{
    margin-right     : -24rem !important;
  }

  .lg\:hover\:-mb-96:hover{
    margin-bottom     : -24rem !important;
  }

  .lg\:hover\:-ml-96:hover{
    margin-left     : -24rem !important;
  }

  .lg\:hover\:-mt-px:hover{
    margin-top     : -1px !important;
  }

  .lg\:hover\:-mr-px:hover{
    margin-right     : -1px !important;
  }

  .lg\:hover\:-mb-px:hover{
    margin-bottom     : -1px !important;
  }

  .lg\:hover\:-ml-px:hover{
    margin-left     : -1px !important;
  }

  .lg\:hover\:-mt-0\.5:hover{
    margin-top     : -0.125rem !important;
  }

  .lg\:hover\:-mr-0\.5:hover{
    margin-right     : -0.125rem !important;
  }

  .lg\:hover\:-mb-0\.5:hover{
    margin-bottom     : -0.125rem !important;
  }

  .lg\:hover\:-ml-0\.5:hover{
    margin-left     : -0.125rem !important;
  }

  .lg\:hover\:-mt-1\.5:hover{
    margin-top     : -0.375rem !important;
  }

  .lg\:hover\:-mr-1\.5:hover{
    margin-right     : -0.375rem !important;
  }

  .lg\:hover\:-mb-1\.5:hover{
    margin-bottom     : -0.375rem !important;
  }

  .lg\:hover\:-ml-1\.5:hover{
    margin-left     : -0.375rem !important;
  }

  .lg\:hover\:-mt-2\.5:hover{
    margin-top     : -0.625rem !important;
  }

  .lg\:hover\:-mr-2\.5:hover{
    margin-right     : -0.625rem !important;
  }

  .lg\:hover\:-mb-2\.5:hover{
    margin-bottom     : -0.625rem !important;
  }

  .lg\:hover\:-ml-2\.5:hover{
    margin-left     : -0.625rem !important;
  }

  .lg\:hover\:-mt-3\.5:hover{
    margin-top     : -0.875rem !important;
  }

  .lg\:hover\:-mr-3\.5:hover{
    margin-right     : -0.875rem !important;
  }

  .lg\:hover\:-mb-3\.5:hover{
    margin-bottom     : -0.875rem !important;
  }

  .lg\:hover\:-ml-3\.5:hover{
    margin-left     : -0.875rem !important;
  }

  .lg\:hover\:-mt-1\/2:hover{
    margin-top     : -50% !important;
  }

  .lg\:hover\:-mr-1\/2:hover{
    margin-right     : -50% !important;
  }

  .lg\:hover\:-mb-1\/2:hover{
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-ml-1\/2:hover{
    margin-left     : -50% !important;
  }

  .lg\:hover\:-mt-1\/3:hover{
    margin-top     : -33.33333% !important;
  }

  .lg\:hover\:-mr-1\/3:hover{
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-mb-1\/3:hover{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-ml-1\/3:hover{
    margin-left     : -33.33333% !important;
  }

  .lg\:hover\:-mt-2\/3:hover{
    margin-top     : -66.66667% !important;
  }

  .lg\:hover\:-mr-2\/3:hover{
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-mb-2\/3:hover{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-ml-2\/3:hover{
    margin-left     : -66.66667% !important;
  }

  .lg\:hover\:-mt-1\/4:hover{
    margin-top     : -25% !important;
  }

  .lg\:hover\:-mr-1\/4:hover{
    margin-right     : -25% !important;
  }

  .lg\:hover\:-mb-1\/4:hover{
    margin-bottom     : -25% !important;
  }

  .lg\:hover\:-ml-1\/4:hover{
    margin-left     : -25% !important;
  }

  .lg\:hover\:-mt-2\/4:hover{
    margin-top     : -50% !important;
  }

  .lg\:hover\:-mr-2\/4:hover{
    margin-right     : -50% !important;
  }

  .lg\:hover\:-mb-2\/4:hover{
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-ml-2\/4:hover{
    margin-left     : -50% !important;
  }

  .lg\:hover\:-mt-3\/4:hover{
    margin-top     : -75% !important;
  }

  .lg\:hover\:-mr-3\/4:hover{
    margin-right     : -75% !important;
  }

  .lg\:hover\:-mb-3\/4:hover{
    margin-bottom     : -75% !important;
  }

  .lg\:hover\:-ml-3\/4:hover{
    margin-left     : -75% !important;
  }

  .lg\:hover\:-mt-1\/5:hover{
    margin-top     : -20% !important;
  }

  .lg\:hover\:-mr-1\/5:hover{
    margin-right     : -20% !important;
  }

  .lg\:hover\:-mb-1\/5:hover{
    margin-bottom     : -20% !important;
  }

  .lg\:hover\:-ml-1\/5:hover{
    margin-left     : -20% !important;
  }

  .lg\:hover\:-mt-2\/5:hover{
    margin-top     : -40% !important;
  }

  .lg\:hover\:-mr-2\/5:hover{
    margin-right     : -40% !important;
  }

  .lg\:hover\:-mb-2\/5:hover{
    margin-bottom     : -40% !important;
  }

  .lg\:hover\:-ml-2\/5:hover{
    margin-left     : -40% !important;
  }

  .lg\:hover\:-mt-3\/5:hover{
    margin-top     : -60% !important;
  }

  .lg\:hover\:-mr-3\/5:hover{
    margin-right     : -60% !important;
  }

  .lg\:hover\:-mb-3\/5:hover{
    margin-bottom     : -60% !important;
  }

  .lg\:hover\:-ml-3\/5:hover{
    margin-left     : -60% !important;
  }

  .lg\:hover\:-mt-4\/5:hover{
    margin-top     : -80% !important;
  }

  .lg\:hover\:-mr-4\/5:hover{
    margin-right     : -80% !important;
  }

  .lg\:hover\:-mb-4\/5:hover{
    margin-bottom     : -80% !important;
  }

  .lg\:hover\:-ml-4\/5:hover{
    margin-left     : -80% !important;
  }

  .lg\:hover\:-mt-1\/6:hover{
    margin-top     : -16.66667% !important;
  }

  .lg\:hover\:-mr-1\/6:hover{
    margin-right     : -16.66667% !important;
  }

  .lg\:hover\:-mb-1\/6:hover{
    margin-bottom     : -16.66667% !important;
  }

  .lg\:hover\:-ml-1\/6:hover{
    margin-left     : -16.66667% !important;
  }

  .lg\:hover\:-mt-2\/6:hover{
    margin-top     : -33.33333% !important;
  }

  .lg\:hover\:-mr-2\/6:hover{
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-mb-2\/6:hover{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-ml-2\/6:hover{
    margin-left     : -33.33333% !important;
  }

  .lg\:hover\:-mt-3\/6:hover{
    margin-top     : -50% !important;
  }

  .lg\:hover\:-mr-3\/6:hover{
    margin-right     : -50% !important;
  }

  .lg\:hover\:-mb-3\/6:hover{
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-ml-3\/6:hover{
    margin-left     : -50% !important;
  }

  .lg\:hover\:-mt-4\/6:hover{
    margin-top     : -66.66667% !important;
  }

  .lg\:hover\:-mr-4\/6:hover{
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-mb-4\/6:hover{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-ml-4\/6:hover{
    margin-left     : -66.66667% !important;
  }

  .lg\:hover\:-mt-5\/6:hover{
    margin-top     : -83.33333% !important;
  }

  .lg\:hover\:-mr-5\/6:hover{
    margin-right     : -83.33333% !important;
  }

  .lg\:hover\:-mb-5\/6:hover{
    margin-bottom     : -83.33333% !important;
  }

  .lg\:hover\:-ml-5\/6:hover{
    margin-left     : -83.33333% !important;
  }

  .lg\:hover\:-mt-1\/12:hover{
    margin-top     : -8.33333% !important;
  }

  .lg\:hover\:-mr-1\/12:hover{
    margin-right     : -8.33333% !important;
  }

  .lg\:hover\:-mb-1\/12:hover{
    margin-bottom     : -8.33333% !important;
  }

  .lg\:hover\:-ml-1\/12:hover{
    margin-left     : -8.33333% !important;
  }

  .lg\:hover\:-mt-2\/12:hover{
    margin-top     : -16.66667% !important;
  }

  .lg\:hover\:-mr-2\/12:hover{
    margin-right     : -16.66667% !important;
  }

  .lg\:hover\:-mb-2\/12:hover{
    margin-bottom     : -16.66667% !important;
  }

  .lg\:hover\:-ml-2\/12:hover{
    margin-left     : -16.66667% !important;
  }

  .lg\:hover\:-mt-3\/12:hover{
    margin-top     : -25% !important;
  }

  .lg\:hover\:-mr-3\/12:hover{
    margin-right     : -25% !important;
  }

  .lg\:hover\:-mb-3\/12:hover{
    margin-bottom     : -25% !important;
  }

  .lg\:hover\:-ml-3\/12:hover{
    margin-left     : -25% !important;
  }

  .lg\:hover\:-mt-4\/12:hover{
    margin-top     : -33.33333% !important;
  }

  .lg\:hover\:-mr-4\/12:hover{
    margin-right     : -33.33333% !important;
  }

  .lg\:hover\:-mb-4\/12:hover{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:hover\:-ml-4\/12:hover{
    margin-left     : -33.33333% !important;
  }

  .lg\:hover\:-mt-5\/12:hover{
    margin-top     : -41.66667% !important;
  }

  .lg\:hover\:-mr-5\/12:hover{
    margin-right     : -41.66667% !important;
  }

  .lg\:hover\:-mb-5\/12:hover{
    margin-bottom     : -41.66667% !important;
  }

  .lg\:hover\:-ml-5\/12:hover{
    margin-left     : -41.66667% !important;
  }

  .lg\:hover\:-mt-6\/12:hover{
    margin-top     : -50% !important;
  }

  .lg\:hover\:-mr-6\/12:hover{
    margin-right     : -50% !important;
  }

  .lg\:hover\:-mb-6\/12:hover{
    margin-bottom     : -50% !important;
  }

  .lg\:hover\:-ml-6\/12:hover{
    margin-left     : -50% !important;
  }

  .lg\:hover\:-mt-7\/12:hover{
    margin-top     : -58.33333% !important;
  }

  .lg\:hover\:-mr-7\/12:hover{
    margin-right     : -58.33333% !important;
  }

  .lg\:hover\:-mb-7\/12:hover{
    margin-bottom     : -58.33333% !important;
  }

  .lg\:hover\:-ml-7\/12:hover{
    margin-left     : -58.33333% !important;
  }

  .lg\:hover\:-mt-8\/12:hover{
    margin-top     : -66.66667% !important;
  }

  .lg\:hover\:-mr-8\/12:hover{
    margin-right     : -66.66667% !important;
  }

  .lg\:hover\:-mb-8\/12:hover{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:hover\:-ml-8\/12:hover{
    margin-left     : -66.66667% !important;
  }

  .lg\:hover\:-mt-9\/12:hover{
    margin-top     : -75% !important;
  }

  .lg\:hover\:-mr-9\/12:hover{
    margin-right     : -75% !important;
  }

  .lg\:hover\:-mb-9\/12:hover{
    margin-bottom     : -75% !important;
  }

  .lg\:hover\:-ml-9\/12:hover{
    margin-left     : -75% !important;
  }

  .lg\:hover\:-mt-10\/12:hover{
    margin-top     : -83.33333% !important;
  }

  .lg\:hover\:-mr-10\/12:hover{
    margin-right     : -83.33333% !important;
  }

  .lg\:hover\:-mb-10\/12:hover{
    margin-bottom     : -83.33333% !important;
  }

  .lg\:hover\:-ml-10\/12:hover{
    margin-left     : -83.33333% !important;
  }

  .lg\:hover\:-mt-11\/12:hover{
    margin-top     : -91.66667% !important;
  }

  .lg\:hover\:-mr-11\/12:hover{
    margin-right     : -91.66667% !important;
  }

  .lg\:hover\:-mb-11\/12:hover{
    margin-bottom     : -91.66667% !important;
  }

  .lg\:hover\:-ml-11\/12:hover{
    margin-left     : -91.66667% !important;
  }

  .lg\:hover\:-mt-full:hover{
    margin-top     : -100% !important;
  }

  .lg\:hover\:-mr-full:hover{
    margin-right     : -100% !important;
  }

  .lg\:hover\:-mb-full:hover{
    margin-bottom     : -100% !important;
  }

  .lg\:hover\:-ml-full:hover{
    margin-left     : -100% !important;
  }

  .lg\:focus\:m-0:focus{
    margin     : 0 !important;
  }

  .lg\:focus\:m-1:focus{
    margin     : 0.25rem !important;
  }

  .lg\:focus\:m-2:focus{
    margin     : 0.5rem !important;
  }

  .lg\:focus\:m-3:focus{
    margin     : 0.75rem !important;
  }

  .lg\:focus\:m-4:focus{
    margin     : 1rem !important;
  }

  .lg\:focus\:m-5:focus{
    margin     : 1.25rem !important;
  }

  .lg\:focus\:m-6:focus{
    margin     : 1.5rem !important;
  }

  .lg\:focus\:m-7:focus{
    margin     : 1.75rem !important;
  }

  .lg\:focus\:m-8:focus{
    margin     : 2rem !important;
  }

  .lg\:focus\:m-9:focus{
    margin     : 2.25rem !important;
  }

  .lg\:focus\:m-10:focus{
    margin     : 2.5rem !important;
  }

  .lg\:focus\:m-11:focus{
    margin     : 2.75rem !important;
  }

  .lg\:focus\:m-12:focus{
    margin     : 3rem !important;
  }

  .lg\:focus\:m-13:focus{
    margin     : 3.25rem !important;
  }

  .lg\:focus\:m-14:focus{
    margin     : 3.5rem !important;
  }

  .lg\:focus\:m-15:focus{
    margin     : 3.75rem !important;
  }

  .lg\:focus\:m-16:focus{
    margin     : 4rem !important;
  }

  .lg\:focus\:m-20:focus{
    margin     : 5rem !important;
  }

  .lg\:focus\:m-24:focus{
    margin     : 6rem !important;
  }

  .lg\:focus\:m-28:focus{
    margin     : 7rem !important;
  }

  .lg\:focus\:m-32:focus{
    margin     : 8rem !important;
  }

  .lg\:focus\:m-36:focus{
    margin     : 9rem !important;
  }

  .lg\:focus\:m-40:focus{
    margin     : 10rem !important;
  }

  .lg\:focus\:m-44:focus{
    margin     : 11rem !important;
  }

  .lg\:focus\:m-48:focus{
    margin     : 12rem !important;
  }

  .lg\:focus\:m-52:focus{
    margin     : 13rem !important;
  }

  .lg\:focus\:m-56:focus{
    margin     : 14rem !important;
  }

  .lg\:focus\:m-60:focus{
    margin     : 15rem !important;
  }

  .lg\:focus\:m-64:focus{
    margin     : 16rem !important;
  }

  .lg\:focus\:m-72:focus{
    margin     : 18rem !important;
  }

  .lg\:focus\:m-80:focus{
    margin     : 20rem !important;
  }

  .lg\:focus\:m-96:focus{
    margin     : 24rem !important;
  }

  .lg\:focus\:m-auto:focus{
    margin     : auto !important;
  }

  .lg\:focus\:m-px:focus{
    margin     : 1px !important;
  }

  .lg\:focus\:m-0\.5:focus{
    margin     : 0.125rem !important;
  }

  .lg\:focus\:m-1\.5:focus{
    margin     : 0.375rem !important;
  }

  .lg\:focus\:m-2\.5:focus{
    margin     : 0.625rem !important;
  }

  .lg\:focus\:m-3\.5:focus{
    margin     : 0.875rem !important;
  }

  .lg\:focus\:m-1\/2:focus{
    margin     : 50% !important;
  }

  .lg\:focus\:m-1\/3:focus{
    margin     : 33.333333% !important;
  }

  .lg\:focus\:m-2\/3:focus{
    margin     : 66.666667% !important;
  }

  .lg\:focus\:m-1\/4:focus{
    margin     : 25% !important;
  }

  .lg\:focus\:m-2\/4:focus{
    margin     : 50% !important;
  }

  .lg\:focus\:m-3\/4:focus{
    margin     : 75% !important;
  }

  .lg\:focus\:m-1\/5:focus{
    margin     : 20% !important;
  }

  .lg\:focus\:m-2\/5:focus{
    margin     : 40% !important;
  }

  .lg\:focus\:m-3\/5:focus{
    margin     : 60% !important;
  }

  .lg\:focus\:m-4\/5:focus{
    margin     : 80% !important;
  }

  .lg\:focus\:m-1\/6:focus{
    margin     : 16.666667% !important;
  }

  .lg\:focus\:m-2\/6:focus{
    margin     : 33.333333% !important;
  }

  .lg\:focus\:m-3\/6:focus{
    margin     : 50% !important;
  }

  .lg\:focus\:m-4\/6:focus{
    margin     : 66.666667% !important;
  }

  .lg\:focus\:m-5\/6:focus{
    margin     : 83.333333% !important;
  }

  .lg\:focus\:m-1\/12:focus{
    margin     : 8.333333% !important;
  }

  .lg\:focus\:m-2\/12:focus{
    margin     : 16.666667% !important;
  }

  .lg\:focus\:m-3\/12:focus{
    margin     : 25% !important;
  }

  .lg\:focus\:m-4\/12:focus{
    margin     : 33.333333% !important;
  }

  .lg\:focus\:m-5\/12:focus{
    margin     : 41.666667% !important;
  }

  .lg\:focus\:m-6\/12:focus{
    margin     : 50% !important;
  }

  .lg\:focus\:m-7\/12:focus{
    margin     : 58.333333% !important;
  }

  .lg\:focus\:m-8\/12:focus{
    margin     : 66.666667% !important;
  }

  .lg\:focus\:m-9\/12:focus{
    margin     : 75% !important;
  }

  .lg\:focus\:m-10\/12:focus{
    margin     : 83.333333% !important;
  }

  .lg\:focus\:m-11\/12:focus{
    margin     : 91.666667% !important;
  }

  .lg\:focus\:m-full:focus{
    margin     : 100% !important;
  }

  .lg\:focus\:-m-1:focus{
    margin     : -0.25rem !important;
  }

  .lg\:focus\:-m-2:focus{
    margin     : -0.5rem !important;
  }

  .lg\:focus\:-m-3:focus{
    margin     : -0.75rem !important;
  }

  .lg\:focus\:-m-4:focus{
    margin     : -1rem !important;
  }

  .lg\:focus\:-m-5:focus{
    margin     : -1.25rem !important;
  }

  .lg\:focus\:-m-6:focus{
    margin     : -1.5rem !important;
  }

  .lg\:focus\:-m-7:focus{
    margin     : -1.75rem !important;
  }

  .lg\:focus\:-m-8:focus{
    margin     : -2rem !important;
  }

  .lg\:focus\:-m-9:focus{
    margin     : -2.25rem !important;
  }

  .lg\:focus\:-m-10:focus{
    margin     : -2.5rem !important;
  }

  .lg\:focus\:-m-11:focus{
    margin     : -2.75rem !important;
  }

  .lg\:focus\:-m-12:focus{
    margin     : -3rem !important;
  }

  .lg\:focus\:-m-13:focus{
    margin     : -3.25rem !important;
  }

  .lg\:focus\:-m-14:focus{
    margin     : -3.5rem !important;
  }

  .lg\:focus\:-m-15:focus{
    margin     : -3.75rem !important;
  }

  .lg\:focus\:-m-16:focus{
    margin     : -4rem !important;
  }

  .lg\:focus\:-m-20:focus{
    margin     : -5rem !important;
  }

  .lg\:focus\:-m-24:focus{
    margin     : -6rem !important;
  }

  .lg\:focus\:-m-28:focus{
    margin     : -7rem !important;
  }

  .lg\:focus\:-m-32:focus{
    margin     : -8rem !important;
  }

  .lg\:focus\:-m-36:focus{
    margin     : -9rem !important;
  }

  .lg\:focus\:-m-40:focus{
    margin     : -10rem !important;
  }

  .lg\:focus\:-m-44:focus{
    margin     : -11rem !important;
  }

  .lg\:focus\:-m-48:focus{
    margin     : -12rem !important;
  }

  .lg\:focus\:-m-52:focus{
    margin     : -13rem !important;
  }

  .lg\:focus\:-m-56:focus{
    margin     : -14rem !important;
  }

  .lg\:focus\:-m-60:focus{
    margin     : -15rem !important;
  }

  .lg\:focus\:-m-64:focus{
    margin     : -16rem !important;
  }

  .lg\:focus\:-m-72:focus{
    margin     : -18rem !important;
  }

  .lg\:focus\:-m-80:focus{
    margin     : -20rem !important;
  }

  .lg\:focus\:-m-96:focus{
    margin     : -24rem !important;
  }

  .lg\:focus\:-m-px:focus{
    margin     : -1px !important;
  }

  .lg\:focus\:-m-0\.5:focus{
    margin     : -0.125rem !important;
  }

  .lg\:focus\:-m-1\.5:focus{
    margin     : -0.375rem !important;
  }

  .lg\:focus\:-m-2\.5:focus{
    margin     : -0.625rem !important;
  }

  .lg\:focus\:-m-3\.5:focus{
    margin     : -0.875rem !important;
  }

  .lg\:focus\:-m-1\/2:focus{
    margin     : -50% !important;
  }

  .lg\:focus\:-m-1\/3:focus{
    margin     : -33.33333% !important;
  }

  .lg\:focus\:-m-2\/3:focus{
    margin     : -66.66667% !important;
  }

  .lg\:focus\:-m-1\/4:focus{
    margin     : -25% !important;
  }

  .lg\:focus\:-m-2\/4:focus{
    margin     : -50% !important;
  }

  .lg\:focus\:-m-3\/4:focus{
    margin     : -75% !important;
  }

  .lg\:focus\:-m-1\/5:focus{
    margin     : -20% !important;
  }

  .lg\:focus\:-m-2\/5:focus{
    margin     : -40% !important;
  }

  .lg\:focus\:-m-3\/5:focus{
    margin     : -60% !important;
  }

  .lg\:focus\:-m-4\/5:focus{
    margin     : -80% !important;
  }

  .lg\:focus\:-m-1\/6:focus{
    margin     : -16.66667% !important;
  }

  .lg\:focus\:-m-2\/6:focus{
    margin     : -33.33333% !important;
  }

  .lg\:focus\:-m-3\/6:focus{
    margin     : -50% !important;
  }

  .lg\:focus\:-m-4\/6:focus{
    margin     : -66.66667% !important;
  }

  .lg\:focus\:-m-5\/6:focus{
    margin     : -83.33333% !important;
  }

  .lg\:focus\:-m-1\/12:focus{
    margin     : -8.33333% !important;
  }

  .lg\:focus\:-m-2\/12:focus{
    margin     : -16.66667% !important;
  }

  .lg\:focus\:-m-3\/12:focus{
    margin     : -25% !important;
  }

  .lg\:focus\:-m-4\/12:focus{
    margin     : -33.33333% !important;
  }

  .lg\:focus\:-m-5\/12:focus{
    margin     : -41.66667% !important;
  }

  .lg\:focus\:-m-6\/12:focus{
    margin     : -50% !important;
  }

  .lg\:focus\:-m-7\/12:focus{
    margin     : -58.33333% !important;
  }

  .lg\:focus\:-m-8\/12:focus{
    margin     : -66.66667% !important;
  }

  .lg\:focus\:-m-9\/12:focus{
    margin     : -75% !important;
  }

  .lg\:focus\:-m-10\/12:focus{
    margin     : -83.33333% !important;
  }

  .lg\:focus\:-m-11\/12:focus{
    margin     : -91.66667% !important;
  }

  .lg\:focus\:-m-full:focus{
    margin     : -100% !important;
  }

  .lg\:focus\:my-0:focus{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .lg\:focus\:mx-0:focus{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .lg\:focus\:my-1:focus{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .lg\:focus\:mx-1:focus{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .lg\:focus\:my-2:focus{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .lg\:focus\:mx-2:focus{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .lg\:focus\:my-3:focus{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .lg\:focus\:mx-3:focus{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .lg\:focus\:my-4:focus{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .lg\:focus\:mx-4:focus{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .lg\:focus\:my-5:focus{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .lg\:focus\:mx-5:focus{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .lg\:focus\:my-6:focus{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .lg\:focus\:mx-6:focus{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .lg\:focus\:my-7:focus{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .lg\:focus\:mx-7:focus{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .lg\:focus\:my-8:focus{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .lg\:focus\:mx-8:focus{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .lg\:focus\:my-9:focus{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .lg\:focus\:mx-9:focus{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .lg\:focus\:my-10:focus{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .lg\:focus\:mx-10:focus{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .lg\:focus\:my-11:focus{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .lg\:focus\:mx-11:focus{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .lg\:focus\:my-12:focus{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .lg\:focus\:mx-12:focus{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .lg\:focus\:my-13:focus{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .lg\:focus\:mx-13:focus{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .lg\:focus\:my-14:focus{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .lg\:focus\:mx-14:focus{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .lg\:focus\:my-15:focus{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .lg\:focus\:mx-15:focus{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .lg\:focus\:my-16:focus{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .lg\:focus\:mx-16:focus{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .lg\:focus\:my-20:focus{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .lg\:focus\:mx-20:focus{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .lg\:focus\:my-24:focus{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .lg\:focus\:mx-24:focus{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .lg\:focus\:my-28:focus{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .lg\:focus\:mx-28:focus{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .lg\:focus\:my-32:focus{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .lg\:focus\:mx-32:focus{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .lg\:focus\:my-36:focus{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .lg\:focus\:mx-36:focus{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .lg\:focus\:my-40:focus{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .lg\:focus\:mx-40:focus{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .lg\:focus\:my-44:focus{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .lg\:focus\:mx-44:focus{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .lg\:focus\:my-48:focus{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .lg\:focus\:mx-48:focus{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .lg\:focus\:my-52:focus{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .lg\:focus\:mx-52:focus{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .lg\:focus\:my-56:focus{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .lg\:focus\:mx-56:focus{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .lg\:focus\:my-60:focus{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .lg\:focus\:mx-60:focus{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .lg\:focus\:my-64:focus{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .lg\:focus\:mx-64:focus{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .lg\:focus\:my-72:focus{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .lg\:focus\:mx-72:focus{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .lg\:focus\:my-80:focus{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .lg\:focus\:mx-80:focus{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .lg\:focus\:my-96:focus{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .lg\:focus\:mx-96:focus{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .lg\:focus\:my-auto:focus{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .lg\:focus\:mx-auto:focus{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .lg\:focus\:my-px:focus{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .lg\:focus\:mx-px:focus{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .lg\:focus\:my-0\.5:focus{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .lg\:focus\:mx-0\.5:focus{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .lg\:focus\:my-1\.5:focus{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .lg\:focus\:mx-1\.5:focus{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .lg\:focus\:my-2\.5:focus{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .lg\:focus\:mx-2\.5:focus{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .lg\:focus\:my-3\.5:focus{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .lg\:focus\:mx-3\.5:focus{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .lg\:focus\:my-1\/2:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:mx-1\/2:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:focus\:my-1\/3:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:mx-1\/3:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:my-2\/3:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:mx-2\/3:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:my-1\/4:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .lg\:focus\:mx-1\/4:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .lg\:focus\:my-2\/4:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:mx-2\/4:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:focus\:my-3\/4:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .lg\:focus\:mx-3\/4:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .lg\:focus\:my-1\/5:focus{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .lg\:focus\:mx-1\/5:focus{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .lg\:focus\:my-2\/5:focus{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .lg\:focus\:mx-2\/5:focus{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .lg\:focus\:my-3\/5:focus{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .lg\:focus\:mx-3\/5:focus{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .lg\:focus\:my-4\/5:focus{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .lg\:focus\:mx-4\/5:focus{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .lg\:focus\:my-1\/6:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .lg\:focus\:mx-1\/6:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .lg\:focus\:my-2\/6:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:mx-2\/6:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:my-3\/6:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:mx-3\/6:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:focus\:my-4\/6:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:mx-4\/6:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:my-5\/6:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .lg\:focus\:mx-5\/6:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .lg\:focus\:my-1\/12:focus{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .lg\:focus\:mx-1\/12:focus{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .lg\:focus\:my-2\/12:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .lg\:focus\:mx-2\/12:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .lg\:focus\:my-3\/12:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .lg\:focus\:mx-3\/12:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .lg\:focus\:my-4\/12:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:mx-4\/12:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:my-5\/12:focus{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .lg\:focus\:mx-5\/12:focus{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .lg\:focus\:my-6\/12:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:mx-6\/12:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .lg\:focus\:my-7\/12:focus{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .lg\:focus\:mx-7\/12:focus{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .lg\:focus\:my-8\/12:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:mx-8\/12:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:my-9\/12:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .lg\:focus\:mx-9\/12:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .lg\:focus\:my-10\/12:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .lg\:focus\:mx-10\/12:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .lg\:focus\:my-11\/12:focus{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .lg\:focus\:mx-11\/12:focus{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .lg\:focus\:my-full:focus{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .lg\:focus\:mx-full:focus{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .lg\:focus\:-my-1:focus{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .lg\:focus\:-mx-1:focus{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .lg\:focus\:-my-2:focus{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .lg\:focus\:-mx-2:focus{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .lg\:focus\:-my-3:focus{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .lg\:focus\:-mx-3:focus{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .lg\:focus\:-my-4:focus{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .lg\:focus\:-mx-4:focus{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .lg\:focus\:-my-5:focus{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .lg\:focus\:-mx-5:focus{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .lg\:focus\:-my-6:focus{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .lg\:focus\:-mx-6:focus{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .lg\:focus\:-my-7:focus{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .lg\:focus\:-mx-7:focus{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .lg\:focus\:-my-8:focus{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .lg\:focus\:-mx-8:focus{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .lg\:focus\:-my-9:focus{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .lg\:focus\:-mx-9:focus{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .lg\:focus\:-my-10:focus{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .lg\:focus\:-mx-10:focus{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .lg\:focus\:-my-11:focus{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .lg\:focus\:-mx-11:focus{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .lg\:focus\:-my-12:focus{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .lg\:focus\:-mx-12:focus{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .lg\:focus\:-my-13:focus{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .lg\:focus\:-mx-13:focus{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .lg\:focus\:-my-14:focus{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .lg\:focus\:-mx-14:focus{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .lg\:focus\:-my-15:focus{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .lg\:focus\:-mx-15:focus{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .lg\:focus\:-my-16:focus{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .lg\:focus\:-mx-16:focus{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .lg\:focus\:-my-20:focus{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .lg\:focus\:-mx-20:focus{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .lg\:focus\:-my-24:focus{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .lg\:focus\:-mx-24:focus{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .lg\:focus\:-my-28:focus{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .lg\:focus\:-mx-28:focus{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .lg\:focus\:-my-32:focus{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .lg\:focus\:-mx-32:focus{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .lg\:focus\:-my-36:focus{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .lg\:focus\:-mx-36:focus{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .lg\:focus\:-my-40:focus{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .lg\:focus\:-mx-40:focus{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .lg\:focus\:-my-44:focus{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .lg\:focus\:-mx-44:focus{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .lg\:focus\:-my-48:focus{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .lg\:focus\:-mx-48:focus{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .lg\:focus\:-my-52:focus{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .lg\:focus\:-mx-52:focus{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .lg\:focus\:-my-56:focus{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .lg\:focus\:-mx-56:focus{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .lg\:focus\:-my-60:focus{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .lg\:focus\:-mx-60:focus{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .lg\:focus\:-my-64:focus{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .lg\:focus\:-mx-64:focus{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .lg\:focus\:-my-72:focus{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .lg\:focus\:-mx-72:focus{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .lg\:focus\:-my-80:focus{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .lg\:focus\:-mx-80:focus{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .lg\:focus\:-my-96:focus{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .lg\:focus\:-mx-96:focus{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .lg\:focus\:-my-px:focus{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .lg\:focus\:-mx-px:focus{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .lg\:focus\:-my-0\.5:focus{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .lg\:focus\:-mx-0\.5:focus{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .lg\:focus\:-my-1\.5:focus{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .lg\:focus\:-mx-1\.5:focus{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .lg\:focus\:-my-2\.5:focus{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .lg\:focus\:-mx-2\.5:focus{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .lg\:focus\:-my-3\.5:focus{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .lg\:focus\:-mx-3\.5:focus{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .lg\:focus\:-my-1\/2:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-mx-1\/2:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:focus\:-my-1\/3:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-mx-1\/3:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-my-2\/3:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-mx-2\/3:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-my-1\/4:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .lg\:focus\:-mx-1\/4:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .lg\:focus\:-my-2\/4:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-mx-2\/4:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:focus\:-my-3\/4:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .lg\:focus\:-mx-3\/4:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .lg\:focus\:-my-1\/5:focus{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .lg\:focus\:-mx-1\/5:focus{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .lg\:focus\:-my-2\/5:focus{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .lg\:focus\:-mx-2\/5:focus{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .lg\:focus\:-my-3\/5:focus{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .lg\:focus\:-mx-3\/5:focus{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .lg\:focus\:-my-4\/5:focus{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .lg\:focus\:-mx-4\/5:focus{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .lg\:focus\:-my-1\/6:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .lg\:focus\:-mx-1\/6:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .lg\:focus\:-my-2\/6:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-mx-2\/6:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-my-3\/6:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-mx-3\/6:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:focus\:-my-4\/6:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-mx-4\/6:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-my-5\/6:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .lg\:focus\:-mx-5\/6:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .lg\:focus\:-my-1\/12:focus{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .lg\:focus\:-mx-1\/12:focus{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .lg\:focus\:-my-2\/12:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .lg\:focus\:-mx-2\/12:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .lg\:focus\:-my-3\/12:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .lg\:focus\:-mx-3\/12:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .lg\:focus\:-my-4\/12:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-mx-4\/12:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-my-5\/12:focus{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .lg\:focus\:-mx-5\/12:focus{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .lg\:focus\:-my-6\/12:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-mx-6\/12:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .lg\:focus\:-my-7\/12:focus{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .lg\:focus\:-mx-7\/12:focus{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .lg\:focus\:-my-8\/12:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-mx-8\/12:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-my-9\/12:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .lg\:focus\:-mx-9\/12:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .lg\:focus\:-my-10\/12:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .lg\:focus\:-mx-10\/12:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .lg\:focus\:-my-11\/12:focus{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .lg\:focus\:-mx-11\/12:focus{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .lg\:focus\:-my-full:focus{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .lg\:focus\:-mx-full:focus{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .lg\:focus\:mt-0:focus{
    margin-top     : 0 !important;
  }

  .lg\:focus\:mr-0:focus{
    margin-right     : 0 !important;
  }

  .lg\:focus\:mb-0:focus{
    margin-bottom     : 0 !important;
  }

  .lg\:focus\:ml-0:focus{
    margin-left     : 0 !important;
  }

  .lg\:focus\:mt-1:focus{
    margin-top     : 0.25rem !important;
  }

  .lg\:focus\:mr-1:focus{
    margin-right     : 0.25rem !important;
  }

  .lg\:focus\:mb-1:focus{
    margin-bottom     : 0.25rem !important;
  }

  .lg\:focus\:ml-1:focus{
    margin-left     : 0.25rem !important;
  }

  .lg\:focus\:mt-2:focus{
    margin-top     : 0.5rem !important;
  }

  .lg\:focus\:mr-2:focus{
    margin-right     : 0.5rem !important;
  }

  .lg\:focus\:mb-2:focus{
    margin-bottom     : 0.5rem !important;
  }

  .lg\:focus\:ml-2:focus{
    margin-left     : 0.5rem !important;
  }

  .lg\:focus\:mt-3:focus{
    margin-top     : 0.75rem !important;
  }

  .lg\:focus\:mr-3:focus{
    margin-right     : 0.75rem !important;
  }

  .lg\:focus\:mb-3:focus{
    margin-bottom     : 0.75rem !important;
  }

  .lg\:focus\:ml-3:focus{
    margin-left     : 0.75rem !important;
  }

  .lg\:focus\:mt-4:focus{
    margin-top     : 1rem !important;
  }

  .lg\:focus\:mr-4:focus{
    margin-right     : 1rem !important;
  }

  .lg\:focus\:mb-4:focus{
    margin-bottom     : 1rem !important;
  }

  .lg\:focus\:ml-4:focus{
    margin-left     : 1rem !important;
  }

  .lg\:focus\:mt-5:focus{
    margin-top     : 1.25rem !important;
  }

  .lg\:focus\:mr-5:focus{
    margin-right     : 1.25rem !important;
  }

  .lg\:focus\:mb-5:focus{
    margin-bottom     : 1.25rem !important;
  }

  .lg\:focus\:ml-5:focus{
    margin-left     : 1.25rem !important;
  }

  .lg\:focus\:mt-6:focus{
    margin-top     : 1.5rem !important;
  }

  .lg\:focus\:mr-6:focus{
    margin-right     : 1.5rem !important;
  }

  .lg\:focus\:mb-6:focus{
    margin-bottom     : 1.5rem !important;
  }

  .lg\:focus\:ml-6:focus{
    margin-left     : 1.5rem !important;
  }

  .lg\:focus\:mt-7:focus{
    margin-top     : 1.75rem !important;
  }

  .lg\:focus\:mr-7:focus{
    margin-right     : 1.75rem !important;
  }

  .lg\:focus\:mb-7:focus{
    margin-bottom     : 1.75rem !important;
  }

  .lg\:focus\:ml-7:focus{
    margin-left     : 1.75rem !important;
  }

  .lg\:focus\:mt-8:focus{
    margin-top     : 2rem !important;
  }

  .lg\:focus\:mr-8:focus{
    margin-right     : 2rem !important;
  }

  .lg\:focus\:mb-8:focus{
    margin-bottom     : 2rem !important;
  }

  .lg\:focus\:ml-8:focus{
    margin-left     : 2rem !important;
  }

  .lg\:focus\:mt-9:focus{
    margin-top     : 2.25rem !important;
  }

  .lg\:focus\:mr-9:focus{
    margin-right     : 2.25rem !important;
  }

  .lg\:focus\:mb-9:focus{
    margin-bottom     : 2.25rem !important;
  }

  .lg\:focus\:ml-9:focus{
    margin-left     : 2.25rem !important;
  }

  .lg\:focus\:mt-10:focus{
    margin-top     : 2.5rem !important;
  }

  .lg\:focus\:mr-10:focus{
    margin-right     : 2.5rem !important;
  }

  .lg\:focus\:mb-10:focus{
    margin-bottom     : 2.5rem !important;
  }

  .lg\:focus\:ml-10:focus{
    margin-left     : 2.5rem !important;
  }

  .lg\:focus\:mt-11:focus{
    margin-top     : 2.75rem !important;
  }

  .lg\:focus\:mr-11:focus{
    margin-right     : 2.75rem !important;
  }

  .lg\:focus\:mb-11:focus{
    margin-bottom     : 2.75rem !important;
  }

  .lg\:focus\:ml-11:focus{
    margin-left     : 2.75rem !important;
  }

  .lg\:focus\:mt-12:focus{
    margin-top     : 3rem !important;
  }

  .lg\:focus\:mr-12:focus{
    margin-right     : 3rem !important;
  }

  .lg\:focus\:mb-12:focus{
    margin-bottom     : 3rem !important;
  }

  .lg\:focus\:ml-12:focus{
    margin-left     : 3rem !important;
  }

  .lg\:focus\:mt-13:focus{
    margin-top     : 3.25rem !important;
  }

  .lg\:focus\:mr-13:focus{
    margin-right     : 3.25rem !important;
  }

  .lg\:focus\:mb-13:focus{
    margin-bottom     : 3.25rem !important;
  }

  .lg\:focus\:ml-13:focus{
    margin-left     : 3.25rem !important;
  }

  .lg\:focus\:mt-14:focus{
    margin-top     : 3.5rem !important;
  }

  .lg\:focus\:mr-14:focus{
    margin-right     : 3.5rem !important;
  }

  .lg\:focus\:mb-14:focus{
    margin-bottom     : 3.5rem !important;
  }

  .lg\:focus\:ml-14:focus{
    margin-left     : 3.5rem !important;
  }

  .lg\:focus\:mt-15:focus{
    margin-top     : 3.75rem !important;
  }

  .lg\:focus\:mr-15:focus{
    margin-right     : 3.75rem !important;
  }

  .lg\:focus\:mb-15:focus{
    margin-bottom     : 3.75rem !important;
  }

  .lg\:focus\:ml-15:focus{
    margin-left     : 3.75rem !important;
  }

  .lg\:focus\:mt-16:focus{
    margin-top     : 4rem !important;
  }

  .lg\:focus\:mr-16:focus{
    margin-right     : 4rem !important;
  }

  .lg\:focus\:mb-16:focus{
    margin-bottom     : 4rem !important;
  }

  .lg\:focus\:ml-16:focus{
    margin-left     : 4rem !important;
  }

  .lg\:focus\:mt-20:focus{
    margin-top     : 5rem !important;
  }

  .lg\:focus\:mr-20:focus{
    margin-right     : 5rem !important;
  }

  .lg\:focus\:mb-20:focus{
    margin-bottom     : 5rem !important;
  }

  .lg\:focus\:ml-20:focus{
    margin-left     : 5rem !important;
  }

  .lg\:focus\:mt-24:focus{
    margin-top     : 6rem !important;
  }

  .lg\:focus\:mr-24:focus{
    margin-right     : 6rem !important;
  }

  .lg\:focus\:mb-24:focus{
    margin-bottom     : 6rem !important;
  }

  .lg\:focus\:ml-24:focus{
    margin-left     : 6rem !important;
  }

  .lg\:focus\:mt-28:focus{
    margin-top     : 7rem !important;
  }

  .lg\:focus\:mr-28:focus{
    margin-right     : 7rem !important;
  }

  .lg\:focus\:mb-28:focus{
    margin-bottom     : 7rem !important;
  }

  .lg\:focus\:ml-28:focus{
    margin-left     : 7rem !important;
  }

  .lg\:focus\:mt-32:focus{
    margin-top     : 8rem !important;
  }

  .lg\:focus\:mr-32:focus{
    margin-right     : 8rem !important;
  }

  .lg\:focus\:mb-32:focus{
    margin-bottom     : 8rem !important;
  }

  .lg\:focus\:ml-32:focus{
    margin-left     : 8rem !important;
  }

  .lg\:focus\:mt-36:focus{
    margin-top     : 9rem !important;
  }

  .lg\:focus\:mr-36:focus{
    margin-right     : 9rem !important;
  }

  .lg\:focus\:mb-36:focus{
    margin-bottom     : 9rem !important;
  }

  .lg\:focus\:ml-36:focus{
    margin-left     : 9rem !important;
  }

  .lg\:focus\:mt-40:focus{
    margin-top     : 10rem !important;
  }

  .lg\:focus\:mr-40:focus{
    margin-right     : 10rem !important;
  }

  .lg\:focus\:mb-40:focus{
    margin-bottom     : 10rem !important;
  }

  .lg\:focus\:ml-40:focus{
    margin-left     : 10rem !important;
  }

  .lg\:focus\:mt-44:focus{
    margin-top     : 11rem !important;
  }

  .lg\:focus\:mr-44:focus{
    margin-right     : 11rem !important;
  }

  .lg\:focus\:mb-44:focus{
    margin-bottom     : 11rem !important;
  }

  .lg\:focus\:ml-44:focus{
    margin-left     : 11rem !important;
  }

  .lg\:focus\:mt-48:focus{
    margin-top     : 12rem !important;
  }

  .lg\:focus\:mr-48:focus{
    margin-right     : 12rem !important;
  }

  .lg\:focus\:mb-48:focus{
    margin-bottom     : 12rem !important;
  }

  .lg\:focus\:ml-48:focus{
    margin-left     : 12rem !important;
  }

  .lg\:focus\:mt-52:focus{
    margin-top     : 13rem !important;
  }

  .lg\:focus\:mr-52:focus{
    margin-right     : 13rem !important;
  }

  .lg\:focus\:mb-52:focus{
    margin-bottom     : 13rem !important;
  }

  .lg\:focus\:ml-52:focus{
    margin-left     : 13rem !important;
  }

  .lg\:focus\:mt-56:focus{
    margin-top     : 14rem !important;
  }

  .lg\:focus\:mr-56:focus{
    margin-right     : 14rem !important;
  }

  .lg\:focus\:mb-56:focus{
    margin-bottom     : 14rem !important;
  }

  .lg\:focus\:ml-56:focus{
    margin-left     : 14rem !important;
  }

  .lg\:focus\:mt-60:focus{
    margin-top     : 15rem !important;
  }

  .lg\:focus\:mr-60:focus{
    margin-right     : 15rem !important;
  }

  .lg\:focus\:mb-60:focus{
    margin-bottom     : 15rem !important;
  }

  .lg\:focus\:ml-60:focus{
    margin-left     : 15rem !important;
  }

  .lg\:focus\:mt-64:focus{
    margin-top     : 16rem !important;
  }

  .lg\:focus\:mr-64:focus{
    margin-right     : 16rem !important;
  }

  .lg\:focus\:mb-64:focus{
    margin-bottom     : 16rem !important;
  }

  .lg\:focus\:ml-64:focus{
    margin-left     : 16rem !important;
  }

  .lg\:focus\:mt-72:focus{
    margin-top     : 18rem !important;
  }

  .lg\:focus\:mr-72:focus{
    margin-right     : 18rem !important;
  }

  .lg\:focus\:mb-72:focus{
    margin-bottom     : 18rem !important;
  }

  .lg\:focus\:ml-72:focus{
    margin-left     : 18rem !important;
  }

  .lg\:focus\:mt-80:focus{
    margin-top     : 20rem !important;
  }

  .lg\:focus\:mr-80:focus{
    margin-right     : 20rem !important;
  }

  .lg\:focus\:mb-80:focus{
    margin-bottom     : 20rem !important;
  }

  .lg\:focus\:ml-80:focus{
    margin-left     : 20rem !important;
  }

  .lg\:focus\:mt-96:focus{
    margin-top     : 24rem !important;
  }

  .lg\:focus\:mr-96:focus{
    margin-right     : 24rem !important;
  }

  .lg\:focus\:mb-96:focus{
    margin-bottom     : 24rem !important;
  }

  .lg\:focus\:ml-96:focus{
    margin-left     : 24rem !important;
  }

  .lg\:focus\:mt-auto:focus{
    margin-top     : auto !important;
  }

  .lg\:focus\:mr-auto:focus{
    margin-right     : auto !important;
  }

  .lg\:focus\:mb-auto:focus{
    margin-bottom     : auto !important;
  }

  .lg\:focus\:ml-auto:focus{
    margin-left     : auto !important;
  }

  .lg\:focus\:mt-px:focus{
    margin-top     : 1px !important;
  }

  .lg\:focus\:mr-px:focus{
    margin-right     : 1px !important;
  }

  .lg\:focus\:mb-px:focus{
    margin-bottom     : 1px !important;
  }

  .lg\:focus\:ml-px:focus{
    margin-left     : 1px !important;
  }

  .lg\:focus\:mt-0\.5:focus{
    margin-top     : 0.125rem !important;
  }

  .lg\:focus\:mr-0\.5:focus{
    margin-right     : 0.125rem !important;
  }

  .lg\:focus\:mb-0\.5:focus{
    margin-bottom     : 0.125rem !important;
  }

  .lg\:focus\:ml-0\.5:focus{
    margin-left     : 0.125rem !important;
  }

  .lg\:focus\:mt-1\.5:focus{
    margin-top     : 0.375rem !important;
  }

  .lg\:focus\:mr-1\.5:focus{
    margin-right     : 0.375rem !important;
  }

  .lg\:focus\:mb-1\.5:focus{
    margin-bottom     : 0.375rem !important;
  }

  .lg\:focus\:ml-1\.5:focus{
    margin-left     : 0.375rem !important;
  }

  .lg\:focus\:mt-2\.5:focus{
    margin-top     : 0.625rem !important;
  }

  .lg\:focus\:mr-2\.5:focus{
    margin-right     : 0.625rem !important;
  }

  .lg\:focus\:mb-2\.5:focus{
    margin-bottom     : 0.625rem !important;
  }

  .lg\:focus\:ml-2\.5:focus{
    margin-left     : 0.625rem !important;
  }

  .lg\:focus\:mt-3\.5:focus{
    margin-top     : 0.875rem !important;
  }

  .lg\:focus\:mr-3\.5:focus{
    margin-right     : 0.875rem !important;
  }

  .lg\:focus\:mb-3\.5:focus{
    margin-bottom     : 0.875rem !important;
  }

  .lg\:focus\:ml-3\.5:focus{
    margin-left     : 0.875rem !important;
  }

  .lg\:focus\:mt-1\/2:focus{
    margin-top     : 50% !important;
  }

  .lg\:focus\:mr-1\/2:focus{
    margin-right     : 50% !important;
  }

  .lg\:focus\:mb-1\/2:focus{
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:ml-1\/2:focus{
    margin-left     : 50% !important;
  }

  .lg\:focus\:mt-1\/3:focus{
    margin-top     : 33.333333% !important;
  }

  .lg\:focus\:mr-1\/3:focus{
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:mb-1\/3:focus{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:ml-1\/3:focus{
    margin-left     : 33.333333% !important;
  }

  .lg\:focus\:mt-2\/3:focus{
    margin-top     : 66.666667% !important;
  }

  .lg\:focus\:mr-2\/3:focus{
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:mb-2\/3:focus{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:ml-2\/3:focus{
    margin-left     : 66.666667% !important;
  }

  .lg\:focus\:mt-1\/4:focus{
    margin-top     : 25% !important;
  }

  .lg\:focus\:mr-1\/4:focus{
    margin-right     : 25% !important;
  }

  .lg\:focus\:mb-1\/4:focus{
    margin-bottom     : 25% !important;
  }

  .lg\:focus\:ml-1\/4:focus{
    margin-left     : 25% !important;
  }

  .lg\:focus\:mt-2\/4:focus{
    margin-top     : 50% !important;
  }

  .lg\:focus\:mr-2\/4:focus{
    margin-right     : 50% !important;
  }

  .lg\:focus\:mb-2\/4:focus{
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:ml-2\/4:focus{
    margin-left     : 50% !important;
  }

  .lg\:focus\:mt-3\/4:focus{
    margin-top     : 75% !important;
  }

  .lg\:focus\:mr-3\/4:focus{
    margin-right     : 75% !important;
  }

  .lg\:focus\:mb-3\/4:focus{
    margin-bottom     : 75% !important;
  }

  .lg\:focus\:ml-3\/4:focus{
    margin-left     : 75% !important;
  }

  .lg\:focus\:mt-1\/5:focus{
    margin-top     : 20% !important;
  }

  .lg\:focus\:mr-1\/5:focus{
    margin-right     : 20% !important;
  }

  .lg\:focus\:mb-1\/5:focus{
    margin-bottom     : 20% !important;
  }

  .lg\:focus\:ml-1\/5:focus{
    margin-left     : 20% !important;
  }

  .lg\:focus\:mt-2\/5:focus{
    margin-top     : 40% !important;
  }

  .lg\:focus\:mr-2\/5:focus{
    margin-right     : 40% !important;
  }

  .lg\:focus\:mb-2\/5:focus{
    margin-bottom     : 40% !important;
  }

  .lg\:focus\:ml-2\/5:focus{
    margin-left     : 40% !important;
  }

  .lg\:focus\:mt-3\/5:focus{
    margin-top     : 60% !important;
  }

  .lg\:focus\:mr-3\/5:focus{
    margin-right     : 60% !important;
  }

  .lg\:focus\:mb-3\/5:focus{
    margin-bottom     : 60% !important;
  }

  .lg\:focus\:ml-3\/5:focus{
    margin-left     : 60% !important;
  }

  .lg\:focus\:mt-4\/5:focus{
    margin-top     : 80% !important;
  }

  .lg\:focus\:mr-4\/5:focus{
    margin-right     : 80% !important;
  }

  .lg\:focus\:mb-4\/5:focus{
    margin-bottom     : 80% !important;
  }

  .lg\:focus\:ml-4\/5:focus{
    margin-left     : 80% !important;
  }

  .lg\:focus\:mt-1\/6:focus{
    margin-top     : 16.666667% !important;
  }

  .lg\:focus\:mr-1\/6:focus{
    margin-right     : 16.666667% !important;
  }

  .lg\:focus\:mb-1\/6:focus{
    margin-bottom     : 16.666667% !important;
  }

  .lg\:focus\:ml-1\/6:focus{
    margin-left     : 16.666667% !important;
  }

  .lg\:focus\:mt-2\/6:focus{
    margin-top     : 33.333333% !important;
  }

  .lg\:focus\:mr-2\/6:focus{
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:mb-2\/6:focus{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:ml-2\/6:focus{
    margin-left     : 33.333333% !important;
  }

  .lg\:focus\:mt-3\/6:focus{
    margin-top     : 50% !important;
  }

  .lg\:focus\:mr-3\/6:focus{
    margin-right     : 50% !important;
  }

  .lg\:focus\:mb-3\/6:focus{
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:ml-3\/6:focus{
    margin-left     : 50% !important;
  }

  .lg\:focus\:mt-4\/6:focus{
    margin-top     : 66.666667% !important;
  }

  .lg\:focus\:mr-4\/6:focus{
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:mb-4\/6:focus{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:ml-4\/6:focus{
    margin-left     : 66.666667% !important;
  }

  .lg\:focus\:mt-5\/6:focus{
    margin-top     : 83.333333% !important;
  }

  .lg\:focus\:mr-5\/6:focus{
    margin-right     : 83.333333% !important;
  }

  .lg\:focus\:mb-5\/6:focus{
    margin-bottom     : 83.333333% !important;
  }

  .lg\:focus\:ml-5\/6:focus{
    margin-left     : 83.333333% !important;
  }

  .lg\:focus\:mt-1\/12:focus{
    margin-top     : 8.333333% !important;
  }

  .lg\:focus\:mr-1\/12:focus{
    margin-right     : 8.333333% !important;
  }

  .lg\:focus\:mb-1\/12:focus{
    margin-bottom     : 8.333333% !important;
  }

  .lg\:focus\:ml-1\/12:focus{
    margin-left     : 8.333333% !important;
  }

  .lg\:focus\:mt-2\/12:focus{
    margin-top     : 16.666667% !important;
  }

  .lg\:focus\:mr-2\/12:focus{
    margin-right     : 16.666667% !important;
  }

  .lg\:focus\:mb-2\/12:focus{
    margin-bottom     : 16.666667% !important;
  }

  .lg\:focus\:ml-2\/12:focus{
    margin-left     : 16.666667% !important;
  }

  .lg\:focus\:mt-3\/12:focus{
    margin-top     : 25% !important;
  }

  .lg\:focus\:mr-3\/12:focus{
    margin-right     : 25% !important;
  }

  .lg\:focus\:mb-3\/12:focus{
    margin-bottom     : 25% !important;
  }

  .lg\:focus\:ml-3\/12:focus{
    margin-left     : 25% !important;
  }

  .lg\:focus\:mt-4\/12:focus{
    margin-top     : 33.333333% !important;
  }

  .lg\:focus\:mr-4\/12:focus{
    margin-right     : 33.333333% !important;
  }

  .lg\:focus\:mb-4\/12:focus{
    margin-bottom     : 33.333333% !important;
  }

  .lg\:focus\:ml-4\/12:focus{
    margin-left     : 33.333333% !important;
  }

  .lg\:focus\:mt-5\/12:focus{
    margin-top     : 41.666667% !important;
  }

  .lg\:focus\:mr-5\/12:focus{
    margin-right     : 41.666667% !important;
  }

  .lg\:focus\:mb-5\/12:focus{
    margin-bottom     : 41.666667% !important;
  }

  .lg\:focus\:ml-5\/12:focus{
    margin-left     : 41.666667% !important;
  }

  .lg\:focus\:mt-6\/12:focus{
    margin-top     : 50% !important;
  }

  .lg\:focus\:mr-6\/12:focus{
    margin-right     : 50% !important;
  }

  .lg\:focus\:mb-6\/12:focus{
    margin-bottom     : 50% !important;
  }

  .lg\:focus\:ml-6\/12:focus{
    margin-left     : 50% !important;
  }

  .lg\:focus\:mt-7\/12:focus{
    margin-top     : 58.333333% !important;
  }

  .lg\:focus\:mr-7\/12:focus{
    margin-right     : 58.333333% !important;
  }

  .lg\:focus\:mb-7\/12:focus{
    margin-bottom     : 58.333333% !important;
  }

  .lg\:focus\:ml-7\/12:focus{
    margin-left     : 58.333333% !important;
  }

  .lg\:focus\:mt-8\/12:focus{
    margin-top     : 66.666667% !important;
  }

  .lg\:focus\:mr-8\/12:focus{
    margin-right     : 66.666667% !important;
  }

  .lg\:focus\:mb-8\/12:focus{
    margin-bottom     : 66.666667% !important;
  }

  .lg\:focus\:ml-8\/12:focus{
    margin-left     : 66.666667% !important;
  }

  .lg\:focus\:mt-9\/12:focus{
    margin-top     : 75% !important;
  }

  .lg\:focus\:mr-9\/12:focus{
    margin-right     : 75% !important;
  }

  .lg\:focus\:mb-9\/12:focus{
    margin-bottom     : 75% !important;
  }

  .lg\:focus\:ml-9\/12:focus{
    margin-left     : 75% !important;
  }

  .lg\:focus\:mt-10\/12:focus{
    margin-top     : 83.333333% !important;
  }

  .lg\:focus\:mr-10\/12:focus{
    margin-right     : 83.333333% !important;
  }

  .lg\:focus\:mb-10\/12:focus{
    margin-bottom     : 83.333333% !important;
  }

  .lg\:focus\:ml-10\/12:focus{
    margin-left     : 83.333333% !important;
  }

  .lg\:focus\:mt-11\/12:focus{
    margin-top     : 91.666667% !important;
  }

  .lg\:focus\:mr-11\/12:focus{
    margin-right     : 91.666667% !important;
  }

  .lg\:focus\:mb-11\/12:focus{
    margin-bottom     : 91.666667% !important;
  }

  .lg\:focus\:ml-11\/12:focus{
    margin-left     : 91.666667% !important;
  }

  .lg\:focus\:mt-full:focus{
    margin-top     : 100% !important;
  }

  .lg\:focus\:mr-full:focus{
    margin-right     : 100% !important;
  }

  .lg\:focus\:mb-full:focus{
    margin-bottom     : 100% !important;
  }

  .lg\:focus\:ml-full:focus{
    margin-left     : 100% !important;
  }

  .lg\:focus\:-mt-1:focus{
    margin-top     : -0.25rem !important;
  }

  .lg\:focus\:-mr-1:focus{
    margin-right     : -0.25rem !important;
  }

  .lg\:focus\:-mb-1:focus{
    margin-bottom     : -0.25rem !important;
  }

  .lg\:focus\:-ml-1:focus{
    margin-left     : -0.25rem !important;
  }

  .lg\:focus\:-mt-2:focus{
    margin-top     : -0.5rem !important;
  }

  .lg\:focus\:-mr-2:focus{
    margin-right     : -0.5rem !important;
  }

  .lg\:focus\:-mb-2:focus{
    margin-bottom     : -0.5rem !important;
  }

  .lg\:focus\:-ml-2:focus{
    margin-left     : -0.5rem !important;
  }

  .lg\:focus\:-mt-3:focus{
    margin-top     : -0.75rem !important;
  }

  .lg\:focus\:-mr-3:focus{
    margin-right     : -0.75rem !important;
  }

  .lg\:focus\:-mb-3:focus{
    margin-bottom     : -0.75rem !important;
  }

  .lg\:focus\:-ml-3:focus{
    margin-left     : -0.75rem !important;
  }

  .lg\:focus\:-mt-4:focus{
    margin-top     : -1rem !important;
  }

  .lg\:focus\:-mr-4:focus{
    margin-right     : -1rem !important;
  }

  .lg\:focus\:-mb-4:focus{
    margin-bottom     : -1rem !important;
  }

  .lg\:focus\:-ml-4:focus{
    margin-left     : -1rem !important;
  }

  .lg\:focus\:-mt-5:focus{
    margin-top     : -1.25rem !important;
  }

  .lg\:focus\:-mr-5:focus{
    margin-right     : -1.25rem !important;
  }

  .lg\:focus\:-mb-5:focus{
    margin-bottom     : -1.25rem !important;
  }

  .lg\:focus\:-ml-5:focus{
    margin-left     : -1.25rem !important;
  }

  .lg\:focus\:-mt-6:focus{
    margin-top     : -1.5rem !important;
  }

  .lg\:focus\:-mr-6:focus{
    margin-right     : -1.5rem !important;
  }

  .lg\:focus\:-mb-6:focus{
    margin-bottom     : -1.5rem !important;
  }

  .lg\:focus\:-ml-6:focus{
    margin-left     : -1.5rem !important;
  }

  .lg\:focus\:-mt-7:focus{
    margin-top     : -1.75rem !important;
  }

  .lg\:focus\:-mr-7:focus{
    margin-right     : -1.75rem !important;
  }

  .lg\:focus\:-mb-7:focus{
    margin-bottom     : -1.75rem !important;
  }

  .lg\:focus\:-ml-7:focus{
    margin-left     : -1.75rem !important;
  }

  .lg\:focus\:-mt-8:focus{
    margin-top     : -2rem !important;
  }

  .lg\:focus\:-mr-8:focus{
    margin-right     : -2rem !important;
  }

  .lg\:focus\:-mb-8:focus{
    margin-bottom     : -2rem !important;
  }

  .lg\:focus\:-ml-8:focus{
    margin-left     : -2rem !important;
  }

  .lg\:focus\:-mt-9:focus{
    margin-top     : -2.25rem !important;
  }

  .lg\:focus\:-mr-9:focus{
    margin-right     : -2.25rem !important;
  }

  .lg\:focus\:-mb-9:focus{
    margin-bottom     : -2.25rem !important;
  }

  .lg\:focus\:-ml-9:focus{
    margin-left     : -2.25rem !important;
  }

  .lg\:focus\:-mt-10:focus{
    margin-top     : -2.5rem !important;
  }

  .lg\:focus\:-mr-10:focus{
    margin-right     : -2.5rem !important;
  }

  .lg\:focus\:-mb-10:focus{
    margin-bottom     : -2.5rem !important;
  }

  .lg\:focus\:-ml-10:focus{
    margin-left     : -2.5rem !important;
  }

  .lg\:focus\:-mt-11:focus{
    margin-top     : -2.75rem !important;
  }

  .lg\:focus\:-mr-11:focus{
    margin-right     : -2.75rem !important;
  }

  .lg\:focus\:-mb-11:focus{
    margin-bottom     : -2.75rem !important;
  }

  .lg\:focus\:-ml-11:focus{
    margin-left     : -2.75rem !important;
  }

  .lg\:focus\:-mt-12:focus{
    margin-top     : -3rem !important;
  }

  .lg\:focus\:-mr-12:focus{
    margin-right     : -3rem !important;
  }

  .lg\:focus\:-mb-12:focus{
    margin-bottom     : -3rem !important;
  }

  .lg\:focus\:-ml-12:focus{
    margin-left     : -3rem !important;
  }

  .lg\:focus\:-mt-13:focus{
    margin-top     : -3.25rem !important;
  }

  .lg\:focus\:-mr-13:focus{
    margin-right     : -3.25rem !important;
  }

  .lg\:focus\:-mb-13:focus{
    margin-bottom     : -3.25rem !important;
  }

  .lg\:focus\:-ml-13:focus{
    margin-left     : -3.25rem !important;
  }

  .lg\:focus\:-mt-14:focus{
    margin-top     : -3.5rem !important;
  }

  .lg\:focus\:-mr-14:focus{
    margin-right     : -3.5rem !important;
  }

  .lg\:focus\:-mb-14:focus{
    margin-bottom     : -3.5rem !important;
  }

  .lg\:focus\:-ml-14:focus{
    margin-left     : -3.5rem !important;
  }

  .lg\:focus\:-mt-15:focus{
    margin-top     : -3.75rem !important;
  }

  .lg\:focus\:-mr-15:focus{
    margin-right     : -3.75rem !important;
  }

  .lg\:focus\:-mb-15:focus{
    margin-bottom     : -3.75rem !important;
  }

  .lg\:focus\:-ml-15:focus{
    margin-left     : -3.75rem !important;
  }

  .lg\:focus\:-mt-16:focus{
    margin-top     : -4rem !important;
  }

  .lg\:focus\:-mr-16:focus{
    margin-right     : -4rem !important;
  }

  .lg\:focus\:-mb-16:focus{
    margin-bottom     : -4rem !important;
  }

  .lg\:focus\:-ml-16:focus{
    margin-left     : -4rem !important;
  }

  .lg\:focus\:-mt-20:focus{
    margin-top     : -5rem !important;
  }

  .lg\:focus\:-mr-20:focus{
    margin-right     : -5rem !important;
  }

  .lg\:focus\:-mb-20:focus{
    margin-bottom     : -5rem !important;
  }

  .lg\:focus\:-ml-20:focus{
    margin-left     : -5rem !important;
  }

  .lg\:focus\:-mt-24:focus{
    margin-top     : -6rem !important;
  }

  .lg\:focus\:-mr-24:focus{
    margin-right     : -6rem !important;
  }

  .lg\:focus\:-mb-24:focus{
    margin-bottom     : -6rem !important;
  }

  .lg\:focus\:-ml-24:focus{
    margin-left     : -6rem !important;
  }

  .lg\:focus\:-mt-28:focus{
    margin-top     : -7rem !important;
  }

  .lg\:focus\:-mr-28:focus{
    margin-right     : -7rem !important;
  }

  .lg\:focus\:-mb-28:focus{
    margin-bottom     : -7rem !important;
  }

  .lg\:focus\:-ml-28:focus{
    margin-left     : -7rem !important;
  }

  .lg\:focus\:-mt-32:focus{
    margin-top     : -8rem !important;
  }

  .lg\:focus\:-mr-32:focus{
    margin-right     : -8rem !important;
  }

  .lg\:focus\:-mb-32:focus{
    margin-bottom     : -8rem !important;
  }

  .lg\:focus\:-ml-32:focus{
    margin-left     : -8rem !important;
  }

  .lg\:focus\:-mt-36:focus{
    margin-top     : -9rem !important;
  }

  .lg\:focus\:-mr-36:focus{
    margin-right     : -9rem !important;
  }

  .lg\:focus\:-mb-36:focus{
    margin-bottom     : -9rem !important;
  }

  .lg\:focus\:-ml-36:focus{
    margin-left     : -9rem !important;
  }

  .lg\:focus\:-mt-40:focus{
    margin-top     : -10rem !important;
  }

  .lg\:focus\:-mr-40:focus{
    margin-right     : -10rem !important;
  }

  .lg\:focus\:-mb-40:focus{
    margin-bottom     : -10rem !important;
  }

  .lg\:focus\:-ml-40:focus{
    margin-left     : -10rem !important;
  }

  .lg\:focus\:-mt-44:focus{
    margin-top     : -11rem !important;
  }

  .lg\:focus\:-mr-44:focus{
    margin-right     : -11rem !important;
  }

  .lg\:focus\:-mb-44:focus{
    margin-bottom     : -11rem !important;
  }

  .lg\:focus\:-ml-44:focus{
    margin-left     : -11rem !important;
  }

  .lg\:focus\:-mt-48:focus{
    margin-top     : -12rem !important;
  }

  .lg\:focus\:-mr-48:focus{
    margin-right     : -12rem !important;
  }

  .lg\:focus\:-mb-48:focus{
    margin-bottom     : -12rem !important;
  }

  .lg\:focus\:-ml-48:focus{
    margin-left     : -12rem !important;
  }

  .lg\:focus\:-mt-52:focus{
    margin-top     : -13rem !important;
  }

  .lg\:focus\:-mr-52:focus{
    margin-right     : -13rem !important;
  }

  .lg\:focus\:-mb-52:focus{
    margin-bottom     : -13rem !important;
  }

  .lg\:focus\:-ml-52:focus{
    margin-left     : -13rem !important;
  }

  .lg\:focus\:-mt-56:focus{
    margin-top     : -14rem !important;
  }

  .lg\:focus\:-mr-56:focus{
    margin-right     : -14rem !important;
  }

  .lg\:focus\:-mb-56:focus{
    margin-bottom     : -14rem !important;
  }

  .lg\:focus\:-ml-56:focus{
    margin-left     : -14rem !important;
  }

  .lg\:focus\:-mt-60:focus{
    margin-top     : -15rem !important;
  }

  .lg\:focus\:-mr-60:focus{
    margin-right     : -15rem !important;
  }

  .lg\:focus\:-mb-60:focus{
    margin-bottom     : -15rem !important;
  }

  .lg\:focus\:-ml-60:focus{
    margin-left     : -15rem !important;
  }

  .lg\:focus\:-mt-64:focus{
    margin-top     : -16rem !important;
  }

  .lg\:focus\:-mr-64:focus{
    margin-right     : -16rem !important;
  }

  .lg\:focus\:-mb-64:focus{
    margin-bottom     : -16rem !important;
  }

  .lg\:focus\:-ml-64:focus{
    margin-left     : -16rem !important;
  }

  .lg\:focus\:-mt-72:focus{
    margin-top     : -18rem !important;
  }

  .lg\:focus\:-mr-72:focus{
    margin-right     : -18rem !important;
  }

  .lg\:focus\:-mb-72:focus{
    margin-bottom     : -18rem !important;
  }

  .lg\:focus\:-ml-72:focus{
    margin-left     : -18rem !important;
  }

  .lg\:focus\:-mt-80:focus{
    margin-top     : -20rem !important;
  }

  .lg\:focus\:-mr-80:focus{
    margin-right     : -20rem !important;
  }

  .lg\:focus\:-mb-80:focus{
    margin-bottom     : -20rem !important;
  }

  .lg\:focus\:-ml-80:focus{
    margin-left     : -20rem !important;
  }

  .lg\:focus\:-mt-96:focus{
    margin-top     : -24rem !important;
  }

  .lg\:focus\:-mr-96:focus{
    margin-right     : -24rem !important;
  }

  .lg\:focus\:-mb-96:focus{
    margin-bottom     : -24rem !important;
  }

  .lg\:focus\:-ml-96:focus{
    margin-left     : -24rem !important;
  }

  .lg\:focus\:-mt-px:focus{
    margin-top     : -1px !important;
  }

  .lg\:focus\:-mr-px:focus{
    margin-right     : -1px !important;
  }

  .lg\:focus\:-mb-px:focus{
    margin-bottom     : -1px !important;
  }

  .lg\:focus\:-ml-px:focus{
    margin-left     : -1px !important;
  }

  .lg\:focus\:-mt-0\.5:focus{
    margin-top     : -0.125rem !important;
  }

  .lg\:focus\:-mr-0\.5:focus{
    margin-right     : -0.125rem !important;
  }

  .lg\:focus\:-mb-0\.5:focus{
    margin-bottom     : -0.125rem !important;
  }

  .lg\:focus\:-ml-0\.5:focus{
    margin-left     : -0.125rem !important;
  }

  .lg\:focus\:-mt-1\.5:focus{
    margin-top     : -0.375rem !important;
  }

  .lg\:focus\:-mr-1\.5:focus{
    margin-right     : -0.375rem !important;
  }

  .lg\:focus\:-mb-1\.5:focus{
    margin-bottom     : -0.375rem !important;
  }

  .lg\:focus\:-ml-1\.5:focus{
    margin-left     : -0.375rem !important;
  }

  .lg\:focus\:-mt-2\.5:focus{
    margin-top     : -0.625rem !important;
  }

  .lg\:focus\:-mr-2\.5:focus{
    margin-right     : -0.625rem !important;
  }

  .lg\:focus\:-mb-2\.5:focus{
    margin-bottom     : -0.625rem !important;
  }

  .lg\:focus\:-ml-2\.5:focus{
    margin-left     : -0.625rem !important;
  }

  .lg\:focus\:-mt-3\.5:focus{
    margin-top     : -0.875rem !important;
  }

  .lg\:focus\:-mr-3\.5:focus{
    margin-right     : -0.875rem !important;
  }

  .lg\:focus\:-mb-3\.5:focus{
    margin-bottom     : -0.875rem !important;
  }

  .lg\:focus\:-ml-3\.5:focus{
    margin-left     : -0.875rem !important;
  }

  .lg\:focus\:-mt-1\/2:focus{
    margin-top     : -50% !important;
  }

  .lg\:focus\:-mr-1\/2:focus{
    margin-right     : -50% !important;
  }

  .lg\:focus\:-mb-1\/2:focus{
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-ml-1\/2:focus{
    margin-left     : -50% !important;
  }

  .lg\:focus\:-mt-1\/3:focus{
    margin-top     : -33.33333% !important;
  }

  .lg\:focus\:-mr-1\/3:focus{
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-mb-1\/3:focus{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-ml-1\/3:focus{
    margin-left     : -33.33333% !important;
  }

  .lg\:focus\:-mt-2\/3:focus{
    margin-top     : -66.66667% !important;
  }

  .lg\:focus\:-mr-2\/3:focus{
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-mb-2\/3:focus{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-ml-2\/3:focus{
    margin-left     : -66.66667% !important;
  }

  .lg\:focus\:-mt-1\/4:focus{
    margin-top     : -25% !important;
  }

  .lg\:focus\:-mr-1\/4:focus{
    margin-right     : -25% !important;
  }

  .lg\:focus\:-mb-1\/4:focus{
    margin-bottom     : -25% !important;
  }

  .lg\:focus\:-ml-1\/4:focus{
    margin-left     : -25% !important;
  }

  .lg\:focus\:-mt-2\/4:focus{
    margin-top     : -50% !important;
  }

  .lg\:focus\:-mr-2\/4:focus{
    margin-right     : -50% !important;
  }

  .lg\:focus\:-mb-2\/4:focus{
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-ml-2\/4:focus{
    margin-left     : -50% !important;
  }

  .lg\:focus\:-mt-3\/4:focus{
    margin-top     : -75% !important;
  }

  .lg\:focus\:-mr-3\/4:focus{
    margin-right     : -75% !important;
  }

  .lg\:focus\:-mb-3\/4:focus{
    margin-bottom     : -75% !important;
  }

  .lg\:focus\:-ml-3\/4:focus{
    margin-left     : -75% !important;
  }

  .lg\:focus\:-mt-1\/5:focus{
    margin-top     : -20% !important;
  }

  .lg\:focus\:-mr-1\/5:focus{
    margin-right     : -20% !important;
  }

  .lg\:focus\:-mb-1\/5:focus{
    margin-bottom     : -20% !important;
  }

  .lg\:focus\:-ml-1\/5:focus{
    margin-left     : -20% !important;
  }

  .lg\:focus\:-mt-2\/5:focus{
    margin-top     : -40% !important;
  }

  .lg\:focus\:-mr-2\/5:focus{
    margin-right     : -40% !important;
  }

  .lg\:focus\:-mb-2\/5:focus{
    margin-bottom     : -40% !important;
  }

  .lg\:focus\:-ml-2\/5:focus{
    margin-left     : -40% !important;
  }

  .lg\:focus\:-mt-3\/5:focus{
    margin-top     : -60% !important;
  }

  .lg\:focus\:-mr-3\/5:focus{
    margin-right     : -60% !important;
  }

  .lg\:focus\:-mb-3\/5:focus{
    margin-bottom     : -60% !important;
  }

  .lg\:focus\:-ml-3\/5:focus{
    margin-left     : -60% !important;
  }

  .lg\:focus\:-mt-4\/5:focus{
    margin-top     : -80% !important;
  }

  .lg\:focus\:-mr-4\/5:focus{
    margin-right     : -80% !important;
  }

  .lg\:focus\:-mb-4\/5:focus{
    margin-bottom     : -80% !important;
  }

  .lg\:focus\:-ml-4\/5:focus{
    margin-left     : -80% !important;
  }

  .lg\:focus\:-mt-1\/6:focus{
    margin-top     : -16.66667% !important;
  }

  .lg\:focus\:-mr-1\/6:focus{
    margin-right     : -16.66667% !important;
  }

  .lg\:focus\:-mb-1\/6:focus{
    margin-bottom     : -16.66667% !important;
  }

  .lg\:focus\:-ml-1\/6:focus{
    margin-left     : -16.66667% !important;
  }

  .lg\:focus\:-mt-2\/6:focus{
    margin-top     : -33.33333% !important;
  }

  .lg\:focus\:-mr-2\/6:focus{
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-mb-2\/6:focus{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-ml-2\/6:focus{
    margin-left     : -33.33333% !important;
  }

  .lg\:focus\:-mt-3\/6:focus{
    margin-top     : -50% !important;
  }

  .lg\:focus\:-mr-3\/6:focus{
    margin-right     : -50% !important;
  }

  .lg\:focus\:-mb-3\/6:focus{
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-ml-3\/6:focus{
    margin-left     : -50% !important;
  }

  .lg\:focus\:-mt-4\/6:focus{
    margin-top     : -66.66667% !important;
  }

  .lg\:focus\:-mr-4\/6:focus{
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-mb-4\/6:focus{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-ml-4\/6:focus{
    margin-left     : -66.66667% !important;
  }

  .lg\:focus\:-mt-5\/6:focus{
    margin-top     : -83.33333% !important;
  }

  .lg\:focus\:-mr-5\/6:focus{
    margin-right     : -83.33333% !important;
  }

  .lg\:focus\:-mb-5\/6:focus{
    margin-bottom     : -83.33333% !important;
  }

  .lg\:focus\:-ml-5\/6:focus{
    margin-left     : -83.33333% !important;
  }

  .lg\:focus\:-mt-1\/12:focus{
    margin-top     : -8.33333% !important;
  }

  .lg\:focus\:-mr-1\/12:focus{
    margin-right     : -8.33333% !important;
  }

  .lg\:focus\:-mb-1\/12:focus{
    margin-bottom     : -8.33333% !important;
  }

  .lg\:focus\:-ml-1\/12:focus{
    margin-left     : -8.33333% !important;
  }

  .lg\:focus\:-mt-2\/12:focus{
    margin-top     : -16.66667% !important;
  }

  .lg\:focus\:-mr-2\/12:focus{
    margin-right     : -16.66667% !important;
  }

  .lg\:focus\:-mb-2\/12:focus{
    margin-bottom     : -16.66667% !important;
  }

  .lg\:focus\:-ml-2\/12:focus{
    margin-left     : -16.66667% !important;
  }

  .lg\:focus\:-mt-3\/12:focus{
    margin-top     : -25% !important;
  }

  .lg\:focus\:-mr-3\/12:focus{
    margin-right     : -25% !important;
  }

  .lg\:focus\:-mb-3\/12:focus{
    margin-bottom     : -25% !important;
  }

  .lg\:focus\:-ml-3\/12:focus{
    margin-left     : -25% !important;
  }

  .lg\:focus\:-mt-4\/12:focus{
    margin-top     : -33.33333% !important;
  }

  .lg\:focus\:-mr-4\/12:focus{
    margin-right     : -33.33333% !important;
  }

  .lg\:focus\:-mb-4\/12:focus{
    margin-bottom     : -33.33333% !important;
  }

  .lg\:focus\:-ml-4\/12:focus{
    margin-left     : -33.33333% !important;
  }

  .lg\:focus\:-mt-5\/12:focus{
    margin-top     : -41.66667% !important;
  }

  .lg\:focus\:-mr-5\/12:focus{
    margin-right     : -41.66667% !important;
  }

  .lg\:focus\:-mb-5\/12:focus{
    margin-bottom     : -41.66667% !important;
  }

  .lg\:focus\:-ml-5\/12:focus{
    margin-left     : -41.66667% !important;
  }

  .lg\:focus\:-mt-6\/12:focus{
    margin-top     : -50% !important;
  }

  .lg\:focus\:-mr-6\/12:focus{
    margin-right     : -50% !important;
  }

  .lg\:focus\:-mb-6\/12:focus{
    margin-bottom     : -50% !important;
  }

  .lg\:focus\:-ml-6\/12:focus{
    margin-left     : -50% !important;
  }

  .lg\:focus\:-mt-7\/12:focus{
    margin-top     : -58.33333% !important;
  }

  .lg\:focus\:-mr-7\/12:focus{
    margin-right     : -58.33333% !important;
  }

  .lg\:focus\:-mb-7\/12:focus{
    margin-bottom     : -58.33333% !important;
  }

  .lg\:focus\:-ml-7\/12:focus{
    margin-left     : -58.33333% !important;
  }

  .lg\:focus\:-mt-8\/12:focus{
    margin-top     : -66.66667% !important;
  }

  .lg\:focus\:-mr-8\/12:focus{
    margin-right     : -66.66667% !important;
  }

  .lg\:focus\:-mb-8\/12:focus{
    margin-bottom     : -66.66667% !important;
  }

  .lg\:focus\:-ml-8\/12:focus{
    margin-left     : -66.66667% !important;
  }

  .lg\:focus\:-mt-9\/12:focus{
    margin-top     : -75% !important;
  }

  .lg\:focus\:-mr-9\/12:focus{
    margin-right     : -75% !important;
  }

  .lg\:focus\:-mb-9\/12:focus{
    margin-bottom     : -75% !important;
  }

  .lg\:focus\:-ml-9\/12:focus{
    margin-left     : -75% !important;
  }

  .lg\:focus\:-mt-10\/12:focus{
    margin-top     : -83.33333% !important;
  }

  .lg\:focus\:-mr-10\/12:focus{
    margin-right     : -83.33333% !important;
  }

  .lg\:focus\:-mb-10\/12:focus{
    margin-bottom     : -83.33333% !important;
  }

  .lg\:focus\:-ml-10\/12:focus{
    margin-left     : -83.33333% !important;
  }

  .lg\:focus\:-mt-11\/12:focus{
    margin-top     : -91.66667% !important;
  }

  .lg\:focus\:-mr-11\/12:focus{
    margin-right     : -91.66667% !important;
  }

  .lg\:focus\:-mb-11\/12:focus{
    margin-bottom     : -91.66667% !important;
  }

  .lg\:focus\:-ml-11\/12:focus{
    margin-left     : -91.66667% !important;
  }

  .lg\:focus\:-mt-full:focus{
    margin-top     : -100% !important;
  }

  .lg\:focus\:-mr-full:focus{
    margin-right     : -100% !important;
  }

  .lg\:focus\:-mb-full:focus{
    margin-bottom     : -100% !important;
  }

  .lg\:focus\:-ml-full:focus{
    margin-left     : -100% !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-20{
    max-height     : 5rem !important;
  }

  .lg\:max-h-24{
    max-height     : 6rem !important;
  }

  .lg\:max-h-28{
    max-height     : 7rem !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-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-96{
    max-height     : 24rem !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;
  }

  .group:hover .lg\:group-hover\:max-h-0{
    max-height     : 0 !important;
  }

  .group:hover .lg\:group-hover\:max-h-1{
    max-height     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-2{
    max-height     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-3{
    max-height     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-4{
    max-height     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-5{
    max-height     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-6{
    max-height     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-7{
    max-height     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-8{
    max-height     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-9{
    max-height     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-10{
    max-height     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-11{
    max-height     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-12{
    max-height     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-13{
    max-height     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-14{
    max-height     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-15{
    max-height     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-16{
    max-height     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-20{
    max-height     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-24{
    max-height     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-28{
    max-height     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-32{
    max-height     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-36{
    max-height     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-40{
    max-height     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-44{
    max-height     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-48{
    max-height     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-52{
    max-height     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-56{
    max-height     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-60{
    max-height     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-64{
    max-height     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-72{
    max-height     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-80{
    max-height     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-96{
    max-height     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-screen{
    max-height     : 100vh !important;
  }

  .group:hover .lg\:group-hover\:max-h-px{
    max-height     : 1px !important;
  }

  .group:hover .lg\:group-hover\:max-h-0\.5{
    max-height     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\.5{
    max-height     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\.5{
    max-height     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-3\.5{
    max-height     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/2{
    max-height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/3{
    max-height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\/3{
    max-height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/4{
    max-height     : 25% !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\/4{
    max-height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:max-h-3\/4{
    max-height     : 75% !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/5{
    max-height     : 20% !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\/5{
    max-height     : 40% !important;
  }

  .group:hover .lg\:group-hover\:max-h-3\/5{
    max-height     : 60% !important;
  }

  .group:hover .lg\:group-hover\:max-h-4\/5{
    max-height     : 80% !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/6{
    max-height     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\/6{
    max-height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-3\/6{
    max-height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:max-h-4\/6{
    max-height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-5\/6{
    max-height     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-1\/12{
    max-height     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-2\/12{
    max-height     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-3\/12{
    max-height     : 25% !important;
  }

  .group:hover .lg\:group-hover\:max-h-4\/12{
    max-height     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-5\/12{
    max-height     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-6\/12{
    max-height     : 50% !important;
  }

  .group:hover .lg\:group-hover\:max-h-7\/12{
    max-height     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-8\/12{
    max-height     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-9\/12{
    max-height     : 75% !important;
  }

  .group:hover .lg\:group-hover\:max-h-10\/12{
    max-height     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:max-h-11\/12{
    max-height     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:max-h-full{
    max-height     : 100% !important;
  }

  .lg\:hover\:max-h-0:hover{
    max-height     : 0 !important;
  }

  .lg\:hover\:max-h-1:hover{
    max-height     : 0.25rem !important;
  }

  .lg\:hover\:max-h-2:hover{
    max-height     : 0.5rem !important;
  }

  .lg\:hover\:max-h-3:hover{
    max-height     : 0.75rem !important;
  }

  .lg\:hover\:max-h-4:hover{
    max-height     : 1rem !important;
  }

  .lg\:hover\:max-h-5:hover{
    max-height     : 1.25rem !important;
  }

  .lg\:hover\:max-h-6:hover{
    max-height     : 1.5rem !important;
  }

  .lg\:hover\:max-h-7:hover{
    max-height     : 1.75rem !important;
  }

  .lg\:hover\:max-h-8:hover{
    max-height     : 2rem !important;
  }

  .lg\:hover\:max-h-9:hover{
    max-height     : 2.25rem !important;
  }

  .lg\:hover\:max-h-10:hover{
    max-height     : 2.5rem !important;
  }

  .lg\:hover\:max-h-11:hover{
    max-height     : 2.75rem !important;
  }

  .lg\:hover\:max-h-12:hover{
    max-height     : 3rem !important;
  }

  .lg\:hover\:max-h-13:hover{
    max-height     : 3.25rem !important;
  }

  .lg\:hover\:max-h-14:hover{
    max-height     : 3.5rem !important;
  }

  .lg\:hover\:max-h-15:hover{
    max-height     : 3.75rem !important;
  }

  .lg\:hover\:max-h-16:hover{
    max-height     : 4rem !important;
  }

  .lg\:hover\:max-h-20:hover{
    max-height     : 5rem !important;
  }

  .lg\:hover\:max-h-24:hover{
    max-height     : 6rem !important;
  }

  .lg\:hover\:max-h-28:hover{
    max-height     : 7rem !important;
  }

  .lg\:hover\:max-h-32:hover{
    max-height     : 8rem !important;
  }

  .lg\:hover\:max-h-36:hover{
    max-height     : 9rem !important;
  }

  .lg\:hover\:max-h-40:hover{
    max-height     : 10rem !important;
  }

  .lg\:hover\:max-h-44:hover{
    max-height     : 11rem !important;
  }

  .lg\:hover\:max-h-48:hover{
    max-height     : 12rem !important;
  }

  .lg\:hover\:max-h-52:hover{
    max-height     : 13rem !important;
  }

  .lg\:hover\:max-h-56:hover{
    max-height     : 14rem !important;
  }

  .lg\:hover\:max-h-60:hover{
    max-height     : 15rem !important;
  }

  .lg\:hover\:max-h-64:hover{
    max-height     : 16rem !important;
  }

  .lg\:hover\:max-h-72:hover{
    max-height     : 18rem !important;
  }

  .lg\:hover\:max-h-80:hover{
    max-height     : 20rem !important;
  }

  .lg\:hover\:max-h-96:hover{
    max-height     : 24rem !important;
  }

  .lg\:hover\:max-h-screen:hover{
    max-height     : 100vh !important;
  }

  .lg\:hover\:max-h-px:hover{
    max-height     : 1px !important;
  }

  .lg\:hover\:max-h-0\.5:hover{
    max-height     : 0.125rem !important;
  }

  .lg\:hover\:max-h-1\.5:hover{
    max-height     : 0.375rem !important;
  }

  .lg\:hover\:max-h-2\.5:hover{
    max-height     : 0.625rem !important;
  }

  .lg\:hover\:max-h-3\.5:hover{
    max-height     : 0.875rem !important;
  }

  .lg\:hover\:max-h-1\/2:hover{
    max-height     : 50% !important;
  }

  .lg\:hover\:max-h-1\/3:hover{
    max-height     : 33.333333% !important;
  }

  .lg\:hover\:max-h-2\/3:hover{
    max-height     : 66.666667% !important;
  }

  .lg\:hover\:max-h-1\/4:hover{
    max-height     : 25% !important;
  }

  .lg\:hover\:max-h-2\/4:hover{
    max-height     : 50% !important;
  }

  .lg\:hover\:max-h-3\/4:hover{
    max-height     : 75% !important;
  }

  .lg\:hover\:max-h-1\/5:hover{
    max-height     : 20% !important;
  }

  .lg\:hover\:max-h-2\/5:hover{
    max-height     : 40% !important;
  }

  .lg\:hover\:max-h-3\/5:hover{
    max-height     : 60% !important;
  }

  .lg\:hover\:max-h-4\/5:hover{
    max-height     : 80% !important;
  }

  .lg\:hover\:max-h-1\/6:hover{
    max-height     : 16.666667% !important;
  }

  .lg\:hover\:max-h-2\/6:hover{
    max-height     : 33.333333% !important;
  }

  .lg\:hover\:max-h-3\/6:hover{
    max-height     : 50% !important;
  }

  .lg\:hover\:max-h-4\/6:hover{
    max-height     : 66.666667% !important;
  }

  .lg\:hover\:max-h-5\/6:hover{
    max-height     : 83.333333% !important;
  }

  .lg\:hover\:max-h-1\/12:hover{
    max-height     : 8.333333% !important;
  }

  .lg\:hover\:max-h-2\/12:hover{
    max-height     : 16.666667% !important;
  }

  .lg\:hover\:max-h-3\/12:hover{
    max-height     : 25% !important;
  }

  .lg\:hover\:max-h-4\/12:hover{
    max-height     : 33.333333% !important;
  }

  .lg\:hover\:max-h-5\/12:hover{
    max-height     : 41.666667% !important;
  }

  .lg\:hover\:max-h-6\/12:hover{
    max-height     : 50% !important;
  }

  .lg\:hover\:max-h-7\/12:hover{
    max-height     : 58.333333% !important;
  }

  .lg\:hover\:max-h-8\/12:hover{
    max-height     : 66.666667% !important;
  }

  .lg\:hover\:max-h-9\/12:hover{
    max-height     : 75% !important;
  }

  .lg\:hover\:max-h-10\/12:hover{
    max-height     : 83.333333% !important;
  }

  .lg\:hover\:max-h-11\/12:hover{
    max-height     : 91.666667% !important;
  }

  .lg\:hover\:max-h-full:hover{
    max-height     : 100% !important;
  }

  .lg\:focus\:max-h-0:focus{
    max-height     : 0 !important;
  }

  .lg\:focus\:max-h-1:focus{
    max-height     : 0.25rem !important;
  }

  .lg\:focus\:max-h-2:focus{
    max-height     : 0.5rem !important;
  }

  .lg\:focus\:max-h-3:focus{
    max-height     : 0.75rem !important;
  }

  .lg\:focus\:max-h-4:focus{
    max-height     : 1rem !important;
  }

  .lg\:focus\:max-h-5:focus{
    max-height     : 1.25rem !important;
  }

  .lg\:focus\:max-h-6:focus{
    max-height     : 1.5rem !important;
  }

  .lg\:focus\:max-h-7:focus{
    max-height     : 1.75rem !important;
  }

  .lg\:focus\:max-h-8:focus{
    max-height     : 2rem !important;
  }

  .lg\:focus\:max-h-9:focus{
    max-height     : 2.25rem !important;
  }

  .lg\:focus\:max-h-10:focus{
    max-height     : 2.5rem !important;
  }

  .lg\:focus\:max-h-11:focus{
    max-height     : 2.75rem !important;
  }

  .lg\:focus\:max-h-12:focus{
    max-height     : 3rem !important;
  }

  .lg\:focus\:max-h-13:focus{
    max-height     : 3.25rem !important;
  }

  .lg\:focus\:max-h-14:focus{
    max-height     : 3.5rem !important;
  }

  .lg\:focus\:max-h-15:focus{
    max-height     : 3.75rem !important;
  }

  .lg\:focus\:max-h-16:focus{
    max-height     : 4rem !important;
  }

  .lg\:focus\:max-h-20:focus{
    max-height     : 5rem !important;
  }

  .lg\:focus\:max-h-24:focus{
    max-height     : 6rem !important;
  }

  .lg\:focus\:max-h-28:focus{
    max-height     : 7rem !important;
  }

  .lg\:focus\:max-h-32:focus{
    max-height     : 8rem !important;
  }

  .lg\:focus\:max-h-36:focus{
    max-height     : 9rem !important;
  }

  .lg\:focus\:max-h-40:focus{
    max-height     : 10rem !important;
  }

  .lg\:focus\:max-h-44:focus{
    max-height     : 11rem !important;
  }

  .lg\:focus\:max-h-48:focus{
    max-height     : 12rem !important;
  }

  .lg\:focus\:max-h-52:focus{
    max-height     : 13rem !important;
  }

  .lg\:focus\:max-h-56:focus{
    max-height     : 14rem !important;
  }

  .lg\:focus\:max-h-60:focus{
    max-height     : 15rem !important;
  }

  .lg\:focus\:max-h-64:focus{
    max-height     : 16rem !important;
  }

  .lg\:focus\:max-h-72:focus{
    max-height     : 18rem !important;
  }

  .lg\:focus\:max-h-80:focus{
    max-height     : 20rem !important;
  }

  .lg\:focus\:max-h-96:focus{
    max-height     : 24rem !important;
  }

  .lg\:focus\:max-h-screen:focus{
    max-height     : 100vh !important;
  }

  .lg\:focus\:max-h-px:focus{
    max-height     : 1px !important;
  }

  .lg\:focus\:max-h-0\.5:focus{
    max-height     : 0.125rem !important;
  }

  .lg\:focus\:max-h-1\.5:focus{
    max-height     : 0.375rem !important;
  }

  .lg\:focus\:max-h-2\.5:focus{
    max-height     : 0.625rem !important;
  }

  .lg\:focus\:max-h-3\.5:focus{
    max-height     : 0.875rem !important;
  }

  .lg\:focus\:max-h-1\/2:focus{
    max-height     : 50% !important;
  }

  .lg\:focus\:max-h-1\/3:focus{
    max-height     : 33.333333% !important;
  }

  .lg\:focus\:max-h-2\/3:focus{
    max-height     : 66.666667% !important;
  }

  .lg\:focus\:max-h-1\/4:focus{
    max-height     : 25% !important;
  }

  .lg\:focus\:max-h-2\/4:focus{
    max-height     : 50% !important;
  }

  .lg\:focus\:max-h-3\/4:focus{
    max-height     : 75% !important;
  }

  .lg\:focus\:max-h-1\/5:focus{
    max-height     : 20% !important;
  }

  .lg\:focus\:max-h-2\/5:focus{
    max-height     : 40% !important;
  }

  .lg\:focus\:max-h-3\/5:focus{
    max-height     : 60% !important;
  }

  .lg\:focus\:max-h-4\/5:focus{
    max-height     : 80% !important;
  }

  .lg\:focus\:max-h-1\/6:focus{
    max-height     : 16.666667% !important;
  }

  .lg\:focus\:max-h-2\/6:focus{
    max-height     : 33.333333% !important;
  }

  .lg\:focus\:max-h-3\/6:focus{
    max-height     : 50% !important;
  }

  .lg\:focus\:max-h-4\/6:focus{
    max-height     : 66.666667% !important;
  }

  .lg\:focus\:max-h-5\/6:focus{
    max-height     : 83.333333% !important;
  }

  .lg\:focus\:max-h-1\/12:focus{
    max-height     : 8.333333% !important;
  }

  .lg\:focus\:max-h-2\/12:focus{
    max-height     : 16.666667% !important;
  }

  .lg\:focus\:max-h-3\/12:focus{
    max-height     : 25% !important;
  }

  .lg\:focus\:max-h-4\/12:focus{
    max-height     : 33.333333% !important;
  }

  .lg\:focus\:max-h-5\/12:focus{
    max-height     : 41.666667% !important;
  }

  .lg\:focus\:max-h-6\/12:focus{
    max-height     : 50% !important;
  }

  .lg\:focus\:max-h-7\/12:focus{
    max-height     : 58.333333% !important;
  }

  .lg\:focus\:max-h-8\/12:focus{
    max-height     : 66.666667% !important;
  }

  .lg\:focus\:max-h-9\/12:focus{
    max-height     : 75% !important;
  }

  .lg\:focus\:max-h-10\/12:focus{
    max-height     : 83.333333% !important;
  }

  .lg\:focus\:max-h-11\/12:focus{
    max-height     : 91.666667% !important;
  }

  .lg\:focus\:max-h-full:focus{
    max-height     : 100% !important;
  }

  .lg\:max-w-0{
    max-width     : 0rem !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-prose{
    max-width     : 65ch !important;
  }

  .lg\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .lg\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .lg\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .lg\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .group:hover .lg\:group-hover\:max-w-0{
    max-width     : 0rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-none{
    max-width     : none !important;
  }

  .group:hover .lg\:group-hover\:max-w-xs{
    max-width     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-sm{
    max-width     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-md{
    max-width     : 28rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-lg{
    max-width     : 32rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-xl{
    max-width     : 36rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-2xl{
    max-width     : 42rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-3xl{
    max-width     : 48rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-4xl{
    max-width     : 56rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-5xl{
    max-width     : 64rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-6xl{
    max-width     : 72rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-7xl{
    max-width     : 80rem !important;
  }

  .group:hover .lg\:group-hover\:max-w-full{
    max-width     : 100% !important;
  }

  .group:hover .lg\:group-hover\:max-w-min-content{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .group:hover .lg\:group-hover\:max-w-max-content{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .group:hover .lg\:group-hover\:max-w-prose{
    max-width     : 65ch !important;
  }

  .group:hover .lg\:group-hover\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .group:hover .lg\:group-hover\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .group:hover .lg\:group-hover\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .group:hover .lg\:group-hover\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .lg\:hover\:max-w-0:hover{
    max-width     : 0rem !important;
  }

  .lg\:hover\:max-w-none:hover{
    max-width     : none !important;
  }

  .lg\:hover\:max-w-xs:hover{
    max-width     : 20rem !important;
  }

  .lg\:hover\:max-w-sm:hover{
    max-width     : 24rem !important;
  }

  .lg\:hover\:max-w-md:hover{
    max-width     : 28rem !important;
  }

  .lg\:hover\:max-w-lg:hover{
    max-width     : 32rem !important;
  }

  .lg\:hover\:max-w-xl:hover{
    max-width     : 36rem !important;
  }

  .lg\:hover\:max-w-2xl:hover{
    max-width     : 42rem !important;
  }

  .lg\:hover\:max-w-3xl:hover{
    max-width     : 48rem !important;
  }

  .lg\:hover\:max-w-4xl:hover{
    max-width     : 56rem !important;
  }

  .lg\:hover\:max-w-5xl:hover{
    max-width     : 64rem !important;
  }

  .lg\:hover\:max-w-6xl:hover{
    max-width     : 72rem !important;
  }

  .lg\:hover\:max-w-7xl:hover{
    max-width     : 80rem !important;
  }

  .lg\:hover\:max-w-full:hover{
    max-width     : 100% !important;
  }

  .lg\:hover\:max-w-min-content:hover{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .lg\:hover\:max-w-max-content:hover{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .lg\:hover\:max-w-prose:hover{
    max-width     : 65ch !important;
  }

  .lg\:hover\:max-w-screen-sm:hover{
    max-width     : 640px !important;
  }

  .lg\:hover\:max-w-screen-md:hover{
    max-width     : 768px !important;
  }

  .lg\:hover\:max-w-screen-lg:hover{
    max-width     : 1024px !important;
  }

  .lg\:hover\:max-w-screen-xl:hover{
    max-width     : 1280px !important;
  }

  .lg\:focus\:max-w-0:focus{
    max-width     : 0rem !important;
  }

  .lg\:focus\:max-w-none:focus{
    max-width     : none !important;
  }

  .lg\:focus\:max-w-xs:focus{
    max-width     : 20rem !important;
  }

  .lg\:focus\:max-w-sm:focus{
    max-width     : 24rem !important;
  }

  .lg\:focus\:max-w-md:focus{
    max-width     : 28rem !important;
  }

  .lg\:focus\:max-w-lg:focus{
    max-width     : 32rem !important;
  }

  .lg\:focus\:max-w-xl:focus{
    max-width     : 36rem !important;
  }

  .lg\:focus\:max-w-2xl:focus{
    max-width     : 42rem !important;
  }

  .lg\:focus\:max-w-3xl:focus{
    max-width     : 48rem !important;
  }

  .lg\:focus\:max-w-4xl:focus{
    max-width     : 56rem !important;
  }

  .lg\:focus\:max-w-5xl:focus{
    max-width     : 64rem !important;
  }

  .lg\:focus\:max-w-6xl:focus{
    max-width     : 72rem !important;
  }

  .lg\:focus\:max-w-7xl:focus{
    max-width     : 80rem !important;
  }

  .lg\:focus\:max-w-full:focus{
    max-width     : 100% !important;
  }

  .lg\:focus\:max-w-min-content:focus{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .lg\:focus\:max-w-max-content:focus{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .lg\:focus\:max-w-prose:focus{
    max-width     : 65ch !important;
  }

  .lg\:focus\:max-w-screen-sm:focus{
    max-width     : 640px !important;
  }

  .lg\:focus\:max-w-screen-md:focus{
    max-width     : 768px !important;
  }

  .lg\:focus\:max-w-screen-lg:focus{
    max-width     : 1024px !important;
  }

  .lg\:focus\:max-w-screen-xl:focus{
    max-width     : 1280px !important;
  }

  .lg\:min-h-0{
    min-height     : 0 !important;
  }

  .lg\:min-h-full{
    min-height     : 100% !important;
  }

  .lg\:min-h-screen{
    min-height     : 100vh !important;
  }

  .group:hover .lg\:group-hover\:min-h-0{
    min-height     : 0 !important;
  }

  .group:hover .lg\:group-hover\:min-h-full{
    min-height     : 100% !important;
  }

  .group:hover .lg\:group-hover\:min-h-screen{
    min-height     : 100vh !important;
  }

  .lg\:hover\:min-h-0:hover{
    min-height     : 0 !important;
  }

  .lg\:hover\:min-h-full:hover{
    min-height     : 100% !important;
  }

  .lg\:hover\:min-h-screen:hover{
    min-height     : 100vh !important;
  }

  .lg\:focus\:min-h-0:focus{
    min-height     : 0 !important;
  }

  .lg\:focus\:min-h-full:focus{
    min-height     : 100% !important;
  }

  .lg\:focus\:min-h-screen:focus{
    min-height     : 100vh !important;
  }

  .lg\:min-w-0{
    min-width     : 0 !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;
  }

  .group:hover .lg\:group-hover\:min-w-0{
    min-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:min-w-full{
    min-width     : 100% !important;
  }

  .group:hover .lg\:group-hover\:min-w-min-content{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .group:hover .lg\:group-hover\:min-w-max-content{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .lg\:hover\:min-w-0:hover{
    min-width     : 0 !important;
  }

  .lg\:hover\:min-w-full:hover{
    min-width     : 100% !important;
  }

  .lg\:hover\:min-w-min-content:hover{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .lg\:hover\:min-w-max-content:hover{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .lg\:focus\:min-w-0:focus{
    min-width     : 0 !important;
  }

  .lg\:focus\:min-w-full:focus{
    min-width     : 100% !important;
  }

  .lg\:focus\:min-w-min-content:focus{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .lg\:focus\:min-w-max-content:focus{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !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;
  }

  .group:hover .lg\:group-hover\:object-contain{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .group:hover .lg\:group-hover\:object-cover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .group:hover .lg\:group-hover\:object-fill{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .group:hover .lg\:group-hover\:object-none{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .group:hover .lg\:group-hover\:object-scale-down{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .lg\:hover\:object-contain:hover{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .lg\:hover\:object-cover:hover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .lg\:hover\:object-fill:hover{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .lg\:hover\:object-none:hover{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .lg\:hover\:object-scale-down:hover{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .lg\:focus\:object-contain:focus{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .lg\:focus\:object-cover:focus{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .lg\:focus\:object-fill:focus{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .lg\:focus\:object-none:focus{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .lg\:focus\:object-scale-down:focus{
    -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;
  }

  .group:hover .lg\:group-hover\:object-bottom{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .group:hover .lg\:group-hover\:object-center{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .group:hover .lg\:group-hover\:object-left{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .group:hover .lg\:group-hover\:object-left-bottom{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .group:hover .lg\:group-hover\:object-left-top{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .group:hover .lg\:group-hover\:object-right{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .group:hover .lg\:group-hover\:object-right-bottom{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .group:hover .lg\:group-hover\:object-right-top{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .group:hover .lg\:group-hover\:object-top{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .lg\:hover\:object-bottom:hover{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .lg\:hover\:object-center:hover{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .lg\:hover\:object-left:hover{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .lg\:hover\:object-left-bottom:hover{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .lg\:hover\:object-left-top:hover{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .lg\:hover\:object-right:hover{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .lg\:hover\:object-right-bottom:hover{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .lg\:hover\:object-right-top:hover{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .lg\:hover\:object-top:hover{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .lg\:focus\:object-bottom:focus{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .lg\:focus\:object-center:focus{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .lg\:focus\:object-left:focus{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .lg\:focus\:object-left-bottom:focus{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .lg\:focus\:object-left-top:focus{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .lg\:focus\:object-right:focus{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .lg\:focus\:object-right-bottom:focus{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .lg\:focus\:object-right-top:focus{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .lg\:focus\:object-top:focus{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .lg\:opacity-0{
    opacity     : 0 !important;
  }

  .lg\:opacity-25{
    opacity     : 0.25 !important;
  }

  .lg\:opacity-50{
    opacity     : 0.5 !important;
  }

  .lg\:opacity-75{
    opacity     : 0.75 !important;
  }

  .lg\:opacity-100{
    opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:opacity-0{
    opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:opacity-25{
    opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:opacity-50{
    opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:opacity-75{
    opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:opacity-100{
    opacity     : 1 !important;
  }

  .lg\:hover\:opacity-0:hover{
    opacity     : 0 !important;
  }

  .lg\:hover\:opacity-25:hover{
    opacity     : 0.25 !important;
  }

  .lg\:hover\:opacity-50:hover{
    opacity     : 0.5 !important;
  }

  .lg\:hover\:opacity-75:hover{
    opacity     : 0.75 !important;
  }

  .lg\:hover\:opacity-100:hover{
    opacity     : 1 !important;
  }

  .lg\:focus\:opacity-0:focus{
    opacity     : 0 !important;
  }

  .lg\:focus\:opacity-25:focus{
    opacity     : 0.25 !important;
  }

  .lg\:focus\:opacity-50:focus{
    opacity     : 0.5 !important;
  }

  .lg\:focus\:opacity-75:focus{
    opacity     : 0.75 !important;
  }

  .lg\:focus\:opacity-100:focus{
    opacity     : 1 !important;
  }

  .lg\:outline-none{
    outline     : 0 !important;
  }

  .group:hover .lg\:group-hover\:outline-none{
    outline     : 0 !important;
  }

  .lg\:hover\:outline-none:hover{
    outline     : 0 !important;
  }

  .lg\:focus\:outline-none:focus{
    outline     : 0 !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;
  }

  .group:hover .lg\:group-hover\:overflow-auto{
    overflow     : auto !important;
  }

  .group:hover .lg\:group-hover\:overflow-hidden{
    overflow     : hidden !important;
  }

  .group:hover .lg\:group-hover\:overflow-visible{
    overflow     : visible !important;
  }

  .group:hover .lg\:group-hover\:overflow-scroll{
    overflow     : scroll !important;
  }

  .group:hover .lg\:group-hover\:overflow-x-auto{
    overflow-x     : auto !important;
  }

  .group:hover .lg\:group-hover\:overflow-y-auto{
    overflow-y     : auto !important;
  }

  .group:hover .lg\:group-hover\:overflow-x-hidden{
    overflow-x     : hidden !important;
  }

  .group:hover .lg\:group-hover\:overflow-y-hidden{
    overflow-y     : hidden !important;
  }

  .group:hover .lg\:group-hover\:overflow-x-visible{
    overflow-x     : visible !important;
  }

  .group:hover .lg\:group-hover\:overflow-y-visible{
    overflow-y     : visible !important;
  }

  .group:hover .lg\:group-hover\:overflow-x-scroll{
    overflow-x     : scroll !important;
  }

  .group:hover .lg\:group-hover\:overflow-y-scroll{
    overflow-y     : scroll !important;
  }

  .group:hover .lg\:group-hover\:scrolling-touch{
    -webkit-overflow-scrolling     : touch !important;
  }

  .group:hover .lg\:group-hover\:scrolling-auto{
    -webkit-overflow-scrolling     : auto !important;
  }

  .lg\:hover\:overflow-auto:hover{
    overflow     : auto !important;
  }

  .lg\:hover\:overflow-hidden:hover{
    overflow     : hidden !important;
  }

  .lg\:hover\:overflow-visible:hover{
    overflow     : visible !important;
  }

  .lg\:hover\:overflow-scroll:hover{
    overflow     : scroll !important;
  }

  .lg\:hover\:overflow-x-auto:hover{
    overflow-x     : auto !important;
  }

  .lg\:hover\:overflow-y-auto:hover{
    overflow-y     : auto !important;
  }

  .lg\:hover\:overflow-x-hidden:hover{
    overflow-x     : hidden !important;
  }

  .lg\:hover\:overflow-y-hidden:hover{
    overflow-y     : hidden !important;
  }

  .lg\:hover\:overflow-x-visible:hover{
    overflow-x     : visible !important;
  }

  .lg\:hover\:overflow-y-visible:hover{
    overflow-y     : visible !important;
  }

  .lg\:hover\:overflow-x-scroll:hover{
    overflow-x     : scroll !important;
  }

  .lg\:hover\:overflow-y-scroll:hover{
    overflow-y     : scroll !important;
  }

  .lg\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling     : touch !important;
  }

  .lg\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling     : auto !important;
  }

  .lg\:focus\:overflow-auto:focus{
    overflow     : auto !important;
  }

  .lg\:focus\:overflow-hidden:focus{
    overflow     : hidden !important;
  }

  .lg\:focus\:overflow-visible:focus{
    overflow     : visible !important;
  }

  .lg\:focus\:overflow-scroll:focus{
    overflow     : scroll !important;
  }

  .lg\:focus\:overflow-x-auto:focus{
    overflow-x     : auto !important;
  }

  .lg\:focus\:overflow-y-auto:focus{
    overflow-y     : auto !important;
  }

  .lg\:focus\:overflow-x-hidden:focus{
    overflow-x     : hidden !important;
  }

  .lg\:focus\:overflow-y-hidden:focus{
    overflow-y     : hidden !important;
  }

  .lg\:focus\:overflow-x-visible:focus{
    overflow-x     : visible !important;
  }

  .lg\:focus\:overflow-y-visible:focus{
    overflow-y     : visible !important;
  }

  .lg\:focus\:overflow-x-scroll:focus{
    overflow-x     : scroll !important;
  }

  .lg\:focus\:overflow-y-scroll:focus{
    overflow-y     : scroll !important;
  }

  .lg\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling     : touch !important;
  }

  .lg\:focus\:scrolling-auto:focus{
    -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;
  }

  .group:hover .lg\:group-hover\:overscroll-auto{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .group:hover .lg\:group-hover\:overscroll-contain{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .group:hover .lg\:group-hover\:overscroll-none{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .group:hover .lg\:group-hover\:overscroll-y-auto{
    overscroll-behavior-y     : auto !important;
  }

  .group:hover .lg\:group-hover\:overscroll-y-contain{
    overscroll-behavior-y     : contain !important;
  }

  .group:hover .lg\:group-hover\:overscroll-y-none{
    overscroll-behavior-y     : none !important;
  }

  .group:hover .lg\:group-hover\:overscroll-x-auto{
    overscroll-behavior-x     : auto !important;
  }

  .group:hover .lg\:group-hover\:overscroll-x-contain{
    overscroll-behavior-x     : contain !important;
  }

  .group:hover .lg\:group-hover\:overscroll-x-none{
    overscroll-behavior-x     : none !important;
  }

  .lg\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .lg\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .lg\:hover\:overscroll-none:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .lg\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y     : auto !important;
  }

  .lg\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y     : contain !important;
  }

  .lg\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y     : none !important;
  }

  .lg\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x     : auto !important;
  }

  .lg\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x     : contain !important;
  }

  .lg\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x     : none !important;
  }

  .lg\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .lg\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .lg\:focus\:overscroll-none:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .lg\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y     : auto !important;
  }

  .lg\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y     : contain !important;
  }

  .lg\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y     : none !important;
  }

  .lg\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x     : auto !important;
  }

  .lg\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x     : contain !important;
  }

  .lg\:focus\:overscroll-x-none:focus{
    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-20{
    padding     : 5rem !important;
  }

  .lg\:p-24{
    padding     : 6rem !important;
  }

  .lg\:p-28{
    padding     : 7rem !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-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-96{
    padding     : 24rem !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\: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-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .lg\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 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-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .lg\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !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-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-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .lg\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !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\: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-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-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-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-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-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-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-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;
  }

  .group:hover .lg\:group-hover\:p-0{
    padding     : 0 !important;
  }

  .group:hover .lg\:group-hover\:p-1{
    padding     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:p-2{
    padding     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:p-3{
    padding     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:p-4{
    padding     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:p-5{
    padding     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:p-6{
    padding     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:p-7{
    padding     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:p-8{
    padding     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:p-9{
    padding     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:p-10{
    padding     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:p-11{
    padding     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:p-12{
    padding     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:p-13{
    padding     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:p-14{
    padding     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:p-15{
    padding     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:p-16{
    padding     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:p-20{
    padding     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:p-24{
    padding     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:p-28{
    padding     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:p-32{
    padding     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:p-36{
    padding     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:p-40{
    padding     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:p-44{
    padding     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:p-48{
    padding     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:p-52{
    padding     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:p-56{
    padding     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:p-60{
    padding     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:p-64{
    padding     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:p-72{
    padding     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:p-80{
    padding     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:p-96{
    padding     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:p-px{
    padding     : 1px !important;
  }

  .group:hover .lg\:group-hover\:p-0\.5{
    padding     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:p-1\.5{
    padding     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:p-2\.5{
    padding     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:p-3\.5{
    padding     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:p-1\/2{
    padding     : 50% !important;
  }

  .group:hover .lg\:group-hover\:p-1\/3{
    padding     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-2\/3{
    padding     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-1\/4{
    padding     : 25% !important;
  }

  .group:hover .lg\:group-hover\:p-2\/4{
    padding     : 50% !important;
  }

  .group:hover .lg\:group-hover\:p-3\/4{
    padding     : 75% !important;
  }

  .group:hover .lg\:group-hover\:p-1\/5{
    padding     : 20% !important;
  }

  .group:hover .lg\:group-hover\:p-2\/5{
    padding     : 40% !important;
  }

  .group:hover .lg\:group-hover\:p-3\/5{
    padding     : 60% !important;
  }

  .group:hover .lg\:group-hover\:p-4\/5{
    padding     : 80% !important;
  }

  .group:hover .lg\:group-hover\:p-1\/6{
    padding     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-2\/6{
    padding     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-3\/6{
    padding     : 50% !important;
  }

  .group:hover .lg\:group-hover\:p-4\/6{
    padding     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-5\/6{
    padding     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-1\/12{
    padding     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-2\/12{
    padding     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-3\/12{
    padding     : 25% !important;
  }

  .group:hover .lg\:group-hover\:p-4\/12{
    padding     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-5\/12{
    padding     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-6\/12{
    padding     : 50% !important;
  }

  .group:hover .lg\:group-hover\:p-7\/12{
    padding     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-8\/12{
    padding     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-9\/12{
    padding     : 75% !important;
  }

  .group:hover .lg\:group-hover\:p-10\/12{
    padding     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:p-11\/12{
    padding     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:p-full{
    padding     : 100% !important;
  }

  .group:hover .lg\:group-hover\:py-0{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:px-0{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .group:hover .lg\:group-hover\:py-1{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:px-1{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:py-2{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:px-2{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:py-3{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:px-3{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:py-4{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:px-4{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:py-5{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:px-5{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:py-6{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:px-6{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:py-7{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:px-7{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:py-8{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:px-8{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:py-9{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:px-9{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:py-10{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:px-10{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:py-11{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:px-11{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:py-12{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:px-12{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:py-13{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:px-13{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:py-14{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:px-14{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:py-15{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:px-15{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:py-16{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:px-16{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:py-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:py-24{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:px-24{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:py-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:py-32{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:px-32{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:py-36{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:px-36{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:py-40{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:px-40{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:py-44{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:px-44{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:py-48{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:px-48{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:py-52{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:px-52{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:py-56{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:px-56{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:py-60{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:px-60{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:py-64{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:px-64{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:py-72{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:px-72{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:py-80{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:px-80{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:py-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:py-px{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:px-px{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .group:hover .lg\:group-hover\:py-0\.5{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:px-0\.5{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:py-1\.5{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:px-1\.5{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:py-2\.5{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:px-2\.5{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:py-3\.5{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:px-3\.5{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:py-1\/2{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/2{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:py-1\/3{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/3{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-2\/3{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-2\/3{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-1\/4{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/4{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:py-2\/4{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:px-2\/4{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:py-3\/4{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:px-3\/4{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:py-1\/5{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/5{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .group:hover .lg\:group-hover\:py-2\/5{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:px-2\/5{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .group:hover .lg\:group-hover\:py-3\/5{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:px-3\/5{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .group:hover .lg\:group-hover\:py-4\/5{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:px-4\/5{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .group:hover .lg\:group-hover\:py-1\/6{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/6{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-2\/6{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-2\/6{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-3\/6{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:px-3\/6{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:py-4\/6{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-4\/6{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-5\/6{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-5\/6{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-1\/12{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-1\/12{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-2\/12{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-2\/12{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-3\/12{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:px-3\/12{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:py-4\/12{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-4\/12{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-5\/12{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-5\/12{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-6\/12{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:px-6\/12{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:py-7\/12{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-7\/12{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-8\/12{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-8\/12{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-9\/12{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:px-9\/12{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:py-10\/12{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:px-10\/12{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:py-11\/12{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:px-11\/12{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:py-full{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:px-full{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .group:hover .lg\:group-hover\:pt-0{
    padding-top     : 0 !important;
  }

  .group:hover .lg\:group-hover\:pr-0{
    padding-right     : 0 !important;
  }

  .group:hover .lg\:group-hover\:pb-0{
    padding-bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:pl-0{
    padding-left     : 0 !important;
  }

  .group:hover .lg\:group-hover\:pt-1{
    padding-top     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:pr-1{
    padding-right     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:pb-1{
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:pl-1{
    padding-left     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:pt-2{
    padding-top     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:pr-2{
    padding-right     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:pb-2{
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:pl-2{
    padding-left     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:pt-3{
    padding-top     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:pr-3{
    padding-right     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:pb-3{
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:pl-3{
    padding-left     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:pt-4{
    padding-top     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:pr-4{
    padding-right     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:pb-4{
    padding-bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:pl-4{
    padding-left     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:pt-5{
    padding-top     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:pr-5{
    padding-right     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:pb-5{
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:pl-5{
    padding-left     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:pt-6{
    padding-top     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:pr-6{
    padding-right     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:pb-6{
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:pl-6{
    padding-left     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:pt-7{
    padding-top     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:pr-7{
    padding-right     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:pb-7{
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:pl-7{
    padding-left     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:pt-8{
    padding-top     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:pr-8{
    padding-right     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:pb-8{
    padding-bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:pl-8{
    padding-left     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:pt-9{
    padding-top     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:pr-9{
    padding-right     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:pb-9{
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:pl-9{
    padding-left     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:pt-10{
    padding-top     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:pr-10{
    padding-right     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:pb-10{
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:pl-10{
    padding-left     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:pt-11{
    padding-top     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:pr-11{
    padding-right     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:pb-11{
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:pl-11{
    padding-left     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:pt-12{
    padding-top     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:pr-12{
    padding-right     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:pb-12{
    padding-bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:pl-12{
    padding-left     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:pt-13{
    padding-top     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:pr-13{
    padding-right     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:pb-13{
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:pl-13{
    padding-left     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:pt-14{
    padding-top     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:pr-14{
    padding-right     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:pb-14{
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:pl-14{
    padding-left     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:pt-15{
    padding-top     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:pr-15{
    padding-right     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:pb-15{
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:pl-15{
    padding-left     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:pt-16{
    padding-top     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:pr-16{
    padding-right     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:pb-16{
    padding-bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:pl-16{
    padding-left     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:pt-20{
    padding-top     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:pr-20{
    padding-right     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:pb-20{
    padding-bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:pl-20{
    padding-left     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:pt-24{
    padding-top     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:pr-24{
    padding-right     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:pb-24{
    padding-bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:pl-24{
    padding-left     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:pt-28{
    padding-top     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:pr-28{
    padding-right     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:pb-28{
    padding-bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:pl-28{
    padding-left     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:pt-32{
    padding-top     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:pr-32{
    padding-right     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:pb-32{
    padding-bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:pl-32{
    padding-left     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:pt-36{
    padding-top     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:pr-36{
    padding-right     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:pb-36{
    padding-bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:pl-36{
    padding-left     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:pt-40{
    padding-top     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:pr-40{
    padding-right     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:pb-40{
    padding-bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:pl-40{
    padding-left     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:pt-44{
    padding-top     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:pr-44{
    padding-right     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:pb-44{
    padding-bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:pl-44{
    padding-left     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:pt-48{
    padding-top     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:pr-48{
    padding-right     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:pb-48{
    padding-bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:pl-48{
    padding-left     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:pt-52{
    padding-top     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:pr-52{
    padding-right     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:pb-52{
    padding-bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:pl-52{
    padding-left     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:pt-56{
    padding-top     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:pr-56{
    padding-right     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:pb-56{
    padding-bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:pl-56{
    padding-left     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:pt-60{
    padding-top     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:pr-60{
    padding-right     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:pb-60{
    padding-bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:pl-60{
    padding-left     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:pt-64{
    padding-top     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:pr-64{
    padding-right     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:pb-64{
    padding-bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:pl-64{
    padding-left     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:pt-72{
    padding-top     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:pr-72{
    padding-right     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:pb-72{
    padding-bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:pl-72{
    padding-left     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:pt-80{
    padding-top     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:pr-80{
    padding-right     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:pb-80{
    padding-bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:pl-80{
    padding-left     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:pt-96{
    padding-top     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:pr-96{
    padding-right     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:pb-96{
    padding-bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:pl-96{
    padding-left     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:pt-px{
    padding-top     : 1px !important;
  }

  .group:hover .lg\:group-hover\:pr-px{
    padding-right     : 1px !important;
  }

  .group:hover .lg\:group-hover\:pb-px{
    padding-bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:pl-px{
    padding-left     : 1px !important;
  }

  .group:hover .lg\:group-hover\:pt-0\.5{
    padding-top     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:pr-0\.5{
    padding-right     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:pb-0\.5{
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:pl-0\.5{
    padding-left     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:pt-1\.5{
    padding-top     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:pr-1\.5{
    padding-right     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:pb-1\.5{
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:pl-1\.5{
    padding-left     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:pt-2\.5{
    padding-top     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:pr-2\.5{
    padding-right     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:pb-2\.5{
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:pl-2\.5{
    padding-left     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:pt-3\.5{
    padding-top     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:pr-3\.5{
    padding-right     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:pb-3\.5{
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:pl-3\.5{
    padding-left     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/2{
    padding-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/2{
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/2{
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/2{
    padding-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/3{
    padding-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/3{
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/3{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/3{
    padding-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-2\/3{
    padding-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-2\/3{
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-2\/3{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-2\/3{
    padding-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/4{
    padding-top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/4{
    padding-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/4{
    padding-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/4{
    padding-left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pt-2\/4{
    padding-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pr-2\/4{
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pb-2\/4{
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pl-2\/4{
    padding-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pt-3\/4{
    padding-top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pr-3\/4{
    padding-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pb-3\/4{
    padding-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pl-3\/4{
    padding-left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/5{
    padding-top     : 20% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/5{
    padding-right     : 20% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/5{
    padding-bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/5{
    padding-left     : 20% !important;
  }

  .group:hover .lg\:group-hover\:pt-2\/5{
    padding-top     : 40% !important;
  }

  .group:hover .lg\:group-hover\:pr-2\/5{
    padding-right     : 40% !important;
  }

  .group:hover .lg\:group-hover\:pb-2\/5{
    padding-bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:pl-2\/5{
    padding-left     : 40% !important;
  }

  .group:hover .lg\:group-hover\:pt-3\/5{
    padding-top     : 60% !important;
  }

  .group:hover .lg\:group-hover\:pr-3\/5{
    padding-right     : 60% !important;
  }

  .group:hover .lg\:group-hover\:pb-3\/5{
    padding-bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:pl-3\/5{
    padding-left     : 60% !important;
  }

  .group:hover .lg\:group-hover\:pt-4\/5{
    padding-top     : 80% !important;
  }

  .group:hover .lg\:group-hover\:pr-4\/5{
    padding-right     : 80% !important;
  }

  .group:hover .lg\:group-hover\:pb-4\/5{
    padding-bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:pl-4\/5{
    padding-left     : 80% !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/6{
    padding-top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/6{
    padding-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/6{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/6{
    padding-left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-2\/6{
    padding-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-2\/6{
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-2\/6{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-2\/6{
    padding-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-3\/6{
    padding-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pr-3\/6{
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pb-3\/6{
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pl-3\/6{
    padding-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pt-4\/6{
    padding-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-4\/6{
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-4\/6{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-4\/6{
    padding-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-5\/6{
    padding-top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-5\/6{
    padding-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-5\/6{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-5\/6{
    padding-left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-1\/12{
    padding-top     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-1\/12{
    padding-right     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-1\/12{
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-1\/12{
    padding-left     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-2\/12{
    padding-top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-2\/12{
    padding-right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-2\/12{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-2\/12{
    padding-left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-3\/12{
    padding-top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pr-3\/12{
    padding-right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pb-3\/12{
    padding-bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pl-3\/12{
    padding-left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:pt-4\/12{
    padding-top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-4\/12{
    padding-right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-4\/12{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-4\/12{
    padding-left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-5\/12{
    padding-top     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-5\/12{
    padding-right     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-5\/12{
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-5\/12{
    padding-left     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-6\/12{
    padding-top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pr-6\/12{
    padding-right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pb-6\/12{
    padding-bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pl-6\/12{
    padding-left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:pt-7\/12{
    padding-top     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-7\/12{
    padding-right     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-7\/12{
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-7\/12{
    padding-left     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-8\/12{
    padding-top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-8\/12{
    padding-right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-8\/12{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-8\/12{
    padding-left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-9\/12{
    padding-top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pr-9\/12{
    padding-right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pb-9\/12{
    padding-bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pl-9\/12{
    padding-left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:pt-10\/12{
    padding-top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pr-10\/12{
    padding-right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pb-10\/12{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pl-10\/12{
    padding-left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:pt-11\/12{
    padding-top     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:pr-11\/12{
    padding-right     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:pb-11\/12{
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:pl-11\/12{
    padding-left     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:pt-full{
    padding-top     : 100% !important;
  }

  .group:hover .lg\:group-hover\:pr-full{
    padding-right     : 100% !important;
  }

  .group:hover .lg\:group-hover\:pb-full{
    padding-bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:pl-full{
    padding-left     : 100% !important;
  }

  .lg\:hover\:p-0:hover{
    padding     : 0 !important;
  }

  .lg\:hover\:p-1:hover{
    padding     : 0.25rem !important;
  }

  .lg\:hover\:p-2:hover{
    padding     : 0.5rem !important;
  }

  .lg\:hover\:p-3:hover{
    padding     : 0.75rem !important;
  }

  .lg\:hover\:p-4:hover{
    padding     : 1rem !important;
  }

  .lg\:hover\:p-5:hover{
    padding     : 1.25rem !important;
  }

  .lg\:hover\:p-6:hover{
    padding     : 1.5rem !important;
  }

  .lg\:hover\:p-7:hover{
    padding     : 1.75rem !important;
  }

  .lg\:hover\:p-8:hover{
    padding     : 2rem !important;
  }

  .lg\:hover\:p-9:hover{
    padding     : 2.25rem !important;
  }

  .lg\:hover\:p-10:hover{
    padding     : 2.5rem !important;
  }

  .lg\:hover\:p-11:hover{
    padding     : 2.75rem !important;
  }

  .lg\:hover\:p-12:hover{
    padding     : 3rem !important;
  }

  .lg\:hover\:p-13:hover{
    padding     : 3.25rem !important;
  }

  .lg\:hover\:p-14:hover{
    padding     : 3.5rem !important;
  }

  .lg\:hover\:p-15:hover{
    padding     : 3.75rem !important;
  }

  .lg\:hover\:p-16:hover{
    padding     : 4rem !important;
  }

  .lg\:hover\:p-20:hover{
    padding     : 5rem !important;
  }

  .lg\:hover\:p-24:hover{
    padding     : 6rem !important;
  }

  .lg\:hover\:p-28:hover{
    padding     : 7rem !important;
  }

  .lg\:hover\:p-32:hover{
    padding     : 8rem !important;
  }

  .lg\:hover\:p-36:hover{
    padding     : 9rem !important;
  }

  .lg\:hover\:p-40:hover{
    padding     : 10rem !important;
  }

  .lg\:hover\:p-44:hover{
    padding     : 11rem !important;
  }

  .lg\:hover\:p-48:hover{
    padding     : 12rem !important;
  }

  .lg\:hover\:p-52:hover{
    padding     : 13rem !important;
  }

  .lg\:hover\:p-56:hover{
    padding     : 14rem !important;
  }

  .lg\:hover\:p-60:hover{
    padding     : 15rem !important;
  }

  .lg\:hover\:p-64:hover{
    padding     : 16rem !important;
  }

  .lg\:hover\:p-72:hover{
    padding     : 18rem !important;
  }

  .lg\:hover\:p-80:hover{
    padding     : 20rem !important;
  }

  .lg\:hover\:p-96:hover{
    padding     : 24rem !important;
  }

  .lg\:hover\:p-px:hover{
    padding     : 1px !important;
  }

  .lg\:hover\:p-0\.5:hover{
    padding     : 0.125rem !important;
  }

  .lg\:hover\:p-1\.5:hover{
    padding     : 0.375rem !important;
  }

  .lg\:hover\:p-2\.5:hover{
    padding     : 0.625rem !important;
  }

  .lg\:hover\:p-3\.5:hover{
    padding     : 0.875rem !important;
  }

  .lg\:hover\:p-1\/2:hover{
    padding     : 50% !important;
  }

  .lg\:hover\:p-1\/3:hover{
    padding     : 33.333333% !important;
  }

  .lg\:hover\:p-2\/3:hover{
    padding     : 66.666667% !important;
  }

  .lg\:hover\:p-1\/4:hover{
    padding     : 25% !important;
  }

  .lg\:hover\:p-2\/4:hover{
    padding     : 50% !important;
  }

  .lg\:hover\:p-3\/4:hover{
    padding     : 75% !important;
  }

  .lg\:hover\:p-1\/5:hover{
    padding     : 20% !important;
  }

  .lg\:hover\:p-2\/5:hover{
    padding     : 40% !important;
  }

  .lg\:hover\:p-3\/5:hover{
    padding     : 60% !important;
  }

  .lg\:hover\:p-4\/5:hover{
    padding     : 80% !important;
  }

  .lg\:hover\:p-1\/6:hover{
    padding     : 16.666667% !important;
  }

  .lg\:hover\:p-2\/6:hover{
    padding     : 33.333333% !important;
  }

  .lg\:hover\:p-3\/6:hover{
    padding     : 50% !important;
  }

  .lg\:hover\:p-4\/6:hover{
    padding     : 66.666667% !important;
  }

  .lg\:hover\:p-5\/6:hover{
    padding     : 83.333333% !important;
  }

  .lg\:hover\:p-1\/12:hover{
    padding     : 8.333333% !important;
  }

  .lg\:hover\:p-2\/12:hover{
    padding     : 16.666667% !important;
  }

  .lg\:hover\:p-3\/12:hover{
    padding     : 25% !important;
  }

  .lg\:hover\:p-4\/12:hover{
    padding     : 33.333333% !important;
  }

  .lg\:hover\:p-5\/12:hover{
    padding     : 41.666667% !important;
  }

  .lg\:hover\:p-6\/12:hover{
    padding     : 50% !important;
  }

  .lg\:hover\:p-7\/12:hover{
    padding     : 58.333333% !important;
  }

  .lg\:hover\:p-8\/12:hover{
    padding     : 66.666667% !important;
  }

  .lg\:hover\:p-9\/12:hover{
    padding     : 75% !important;
  }

  .lg\:hover\:p-10\/12:hover{
    padding     : 83.333333% !important;
  }

  .lg\:hover\:p-11\/12:hover{
    padding     : 91.666667% !important;
  }

  .lg\:hover\:p-full:hover{
    padding     : 100% !important;
  }

  .lg\:hover\:py-0:hover{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .lg\:hover\:px-0:hover{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .lg\:hover\:py-1:hover{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .lg\:hover\:px-1:hover{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .lg\:hover\:py-2:hover{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .lg\:hover\:px-2:hover{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .lg\:hover\:py-3:hover{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .lg\:hover\:px-3:hover{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .lg\:hover\:py-4:hover{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .lg\:hover\:px-4:hover{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .lg\:hover\:py-5:hover{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .lg\:hover\:px-5:hover{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .lg\:hover\:py-6:hover{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .lg\:hover\:px-6:hover{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .lg\:hover\:py-7:hover{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .lg\:hover\:px-7:hover{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .lg\:hover\:py-8:hover{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .lg\:hover\:px-8:hover{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .lg\:hover\:py-9:hover{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .lg\:hover\:px-9:hover{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .lg\:hover\:py-10:hover{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .lg\:hover\:px-10:hover{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .lg\:hover\:py-11:hover{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .lg\:hover\:px-11:hover{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .lg\:hover\:py-12:hover{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .lg\:hover\:px-12:hover{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .lg\:hover\:py-13:hover{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .lg\:hover\:px-13:hover{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .lg\:hover\:py-14:hover{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .lg\:hover\:px-14:hover{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .lg\:hover\:py-15:hover{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .lg\:hover\:px-15:hover{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .lg\:hover\:py-16:hover{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .lg\:hover\:px-16:hover{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .lg\:hover\:py-20:hover{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .lg\:hover\:px-20:hover{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .lg\:hover\:py-24:hover{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .lg\:hover\:px-24:hover{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .lg\:hover\:py-28:hover{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .lg\:hover\:px-28:hover{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .lg\:hover\:py-32:hover{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .lg\:hover\:px-32:hover{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .lg\:hover\:py-36:hover{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .lg\:hover\:px-36:hover{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .lg\:hover\:py-40:hover{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .lg\:hover\:px-40:hover{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .lg\:hover\:py-44:hover{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .lg\:hover\:px-44:hover{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .lg\:hover\:py-48:hover{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .lg\:hover\:px-48:hover{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .lg\:hover\:py-52:hover{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .lg\:hover\:px-52:hover{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .lg\:hover\:py-56:hover{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .lg\:hover\:px-56:hover{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .lg\:hover\:py-60:hover{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .lg\:hover\:px-60:hover{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .lg\:hover\:py-64:hover{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .lg\:hover\:px-64:hover{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .lg\:hover\:py-72:hover{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .lg\:hover\:px-72:hover{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .lg\:hover\:py-80:hover{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .lg\:hover\:px-80:hover{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .lg\:hover\:py-96:hover{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .lg\:hover\:px-96:hover{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .lg\:hover\:py-px:hover{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .lg\:hover\:px-px:hover{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .lg\:hover\:py-0\.5:hover{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .lg\:hover\:px-0\.5:hover{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .lg\:hover\:py-1\.5:hover{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .lg\:hover\:px-1\.5:hover{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .lg\:hover\:py-2\.5:hover{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .lg\:hover\:px-2\.5:hover{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .lg\:hover\:py-3\.5:hover{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .lg\:hover\:px-3\.5:hover{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .lg\:hover\:py-1\/2:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:px-1\/2:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:hover\:py-1\/3:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:px-1\/3:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:py-2\/3:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:px-2\/3:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:py-1\/4:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .lg\:hover\:px-1\/4:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .lg\:hover\:py-2\/4:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:px-2\/4:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:hover\:py-3\/4:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .lg\:hover\:px-3\/4:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .lg\:hover\:py-1\/5:hover{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .lg\:hover\:px-1\/5:hover{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .lg\:hover\:py-2\/5:hover{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .lg\:hover\:px-2\/5:hover{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .lg\:hover\:py-3\/5:hover{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .lg\:hover\:px-3\/5:hover{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .lg\:hover\:py-4\/5:hover{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .lg\:hover\:px-4\/5:hover{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .lg\:hover\:py-1\/6:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .lg\:hover\:px-1\/6:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .lg\:hover\:py-2\/6:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:px-2\/6:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:py-3\/6:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:px-3\/6:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:hover\:py-4\/6:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:px-4\/6:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:py-5\/6:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .lg\:hover\:px-5\/6:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .lg\:hover\:py-1\/12:hover{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .lg\:hover\:px-1\/12:hover{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .lg\:hover\:py-2\/12:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .lg\:hover\:px-2\/12:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .lg\:hover\:py-3\/12:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .lg\:hover\:px-3\/12:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .lg\:hover\:py-4\/12:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:px-4\/12:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:py-5\/12:hover{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .lg\:hover\:px-5\/12:hover{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .lg\:hover\:py-6\/12:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:px-6\/12:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:hover\:py-7\/12:hover{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .lg\:hover\:px-7\/12:hover{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .lg\:hover\:py-8\/12:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:px-8\/12:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:py-9\/12:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .lg\:hover\:px-9\/12:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .lg\:hover\:py-10\/12:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .lg\:hover\:px-10\/12:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .lg\:hover\:py-11\/12:hover{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .lg\:hover\:px-11\/12:hover{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .lg\:hover\:py-full:hover{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .lg\:hover\:px-full:hover{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .lg\:hover\:pt-0:hover{
    padding-top     : 0 !important;
  }

  .lg\:hover\:pr-0:hover{
    padding-right     : 0 !important;
  }

  .lg\:hover\:pb-0:hover{
    padding-bottom     : 0 !important;
  }

  .lg\:hover\:pl-0:hover{
    padding-left     : 0 !important;
  }

  .lg\:hover\:pt-1:hover{
    padding-top     : 0.25rem !important;
  }

  .lg\:hover\:pr-1:hover{
    padding-right     : 0.25rem !important;
  }

  .lg\:hover\:pb-1:hover{
    padding-bottom     : 0.25rem !important;
  }

  .lg\:hover\:pl-1:hover{
    padding-left     : 0.25rem !important;
  }

  .lg\:hover\:pt-2:hover{
    padding-top     : 0.5rem !important;
  }

  .lg\:hover\:pr-2:hover{
    padding-right     : 0.5rem !important;
  }

  .lg\:hover\:pb-2:hover{
    padding-bottom     : 0.5rem !important;
  }

  .lg\:hover\:pl-2:hover{
    padding-left     : 0.5rem !important;
  }

  .lg\:hover\:pt-3:hover{
    padding-top     : 0.75rem !important;
  }

  .lg\:hover\:pr-3:hover{
    padding-right     : 0.75rem !important;
  }

  .lg\:hover\:pb-3:hover{
    padding-bottom     : 0.75rem !important;
  }

  .lg\:hover\:pl-3:hover{
    padding-left     : 0.75rem !important;
  }

  .lg\:hover\:pt-4:hover{
    padding-top     : 1rem !important;
  }

  .lg\:hover\:pr-4:hover{
    padding-right     : 1rem !important;
  }

  .lg\:hover\:pb-4:hover{
    padding-bottom     : 1rem !important;
  }

  .lg\:hover\:pl-4:hover{
    padding-left     : 1rem !important;
  }

  .lg\:hover\:pt-5:hover{
    padding-top     : 1.25rem !important;
  }

  .lg\:hover\:pr-5:hover{
    padding-right     : 1.25rem !important;
  }

  .lg\:hover\:pb-5:hover{
    padding-bottom     : 1.25rem !important;
  }

  .lg\:hover\:pl-5:hover{
    padding-left     : 1.25rem !important;
  }

  .lg\:hover\:pt-6:hover{
    padding-top     : 1.5rem !important;
  }

  .lg\:hover\:pr-6:hover{
    padding-right     : 1.5rem !important;
  }

  .lg\:hover\:pb-6:hover{
    padding-bottom     : 1.5rem !important;
  }

  .lg\:hover\:pl-6:hover{
    padding-left     : 1.5rem !important;
  }

  .lg\:hover\:pt-7:hover{
    padding-top     : 1.75rem !important;
  }

  .lg\:hover\:pr-7:hover{
    padding-right     : 1.75rem !important;
  }

  .lg\:hover\:pb-7:hover{
    padding-bottom     : 1.75rem !important;
  }

  .lg\:hover\:pl-7:hover{
    padding-left     : 1.75rem !important;
  }

  .lg\:hover\:pt-8:hover{
    padding-top     : 2rem !important;
  }

  .lg\:hover\:pr-8:hover{
    padding-right     : 2rem !important;
  }

  .lg\:hover\:pb-8:hover{
    padding-bottom     : 2rem !important;
  }

  .lg\:hover\:pl-8:hover{
    padding-left     : 2rem !important;
  }

  .lg\:hover\:pt-9:hover{
    padding-top     : 2.25rem !important;
  }

  .lg\:hover\:pr-9:hover{
    padding-right     : 2.25rem !important;
  }

  .lg\:hover\:pb-9:hover{
    padding-bottom     : 2.25rem !important;
  }

  .lg\:hover\:pl-9:hover{
    padding-left     : 2.25rem !important;
  }

  .lg\:hover\:pt-10:hover{
    padding-top     : 2.5rem !important;
  }

  .lg\:hover\:pr-10:hover{
    padding-right     : 2.5rem !important;
  }

  .lg\:hover\:pb-10:hover{
    padding-bottom     : 2.5rem !important;
  }

  .lg\:hover\:pl-10:hover{
    padding-left     : 2.5rem !important;
  }

  .lg\:hover\:pt-11:hover{
    padding-top     : 2.75rem !important;
  }

  .lg\:hover\:pr-11:hover{
    padding-right     : 2.75rem !important;
  }

  .lg\:hover\:pb-11:hover{
    padding-bottom     : 2.75rem !important;
  }

  .lg\:hover\:pl-11:hover{
    padding-left     : 2.75rem !important;
  }

  .lg\:hover\:pt-12:hover{
    padding-top     : 3rem !important;
  }

  .lg\:hover\:pr-12:hover{
    padding-right     : 3rem !important;
  }

  .lg\:hover\:pb-12:hover{
    padding-bottom     : 3rem !important;
  }

  .lg\:hover\:pl-12:hover{
    padding-left     : 3rem !important;
  }

  .lg\:hover\:pt-13:hover{
    padding-top     : 3.25rem !important;
  }

  .lg\:hover\:pr-13:hover{
    padding-right     : 3.25rem !important;
  }

  .lg\:hover\:pb-13:hover{
    padding-bottom     : 3.25rem !important;
  }

  .lg\:hover\:pl-13:hover{
    padding-left     : 3.25rem !important;
  }

  .lg\:hover\:pt-14:hover{
    padding-top     : 3.5rem !important;
  }

  .lg\:hover\:pr-14:hover{
    padding-right     : 3.5rem !important;
  }

  .lg\:hover\:pb-14:hover{
    padding-bottom     : 3.5rem !important;
  }

  .lg\:hover\:pl-14:hover{
    padding-left     : 3.5rem !important;
  }

  .lg\:hover\:pt-15:hover{
    padding-top     : 3.75rem !important;
  }

  .lg\:hover\:pr-15:hover{
    padding-right     : 3.75rem !important;
  }

  .lg\:hover\:pb-15:hover{
    padding-bottom     : 3.75rem !important;
  }

  .lg\:hover\:pl-15:hover{
    padding-left     : 3.75rem !important;
  }

  .lg\:hover\:pt-16:hover{
    padding-top     : 4rem !important;
  }

  .lg\:hover\:pr-16:hover{
    padding-right     : 4rem !important;
  }

  .lg\:hover\:pb-16:hover{
    padding-bottom     : 4rem !important;
  }

  .lg\:hover\:pl-16:hover{
    padding-left     : 4rem !important;
  }

  .lg\:hover\:pt-20:hover{
    padding-top     : 5rem !important;
  }

  .lg\:hover\:pr-20:hover{
    padding-right     : 5rem !important;
  }

  .lg\:hover\:pb-20:hover{
    padding-bottom     : 5rem !important;
  }

  .lg\:hover\:pl-20:hover{
    padding-left     : 5rem !important;
  }

  .lg\:hover\:pt-24:hover{
    padding-top     : 6rem !important;
  }

  .lg\:hover\:pr-24:hover{
    padding-right     : 6rem !important;
  }

  .lg\:hover\:pb-24:hover{
    padding-bottom     : 6rem !important;
  }

  .lg\:hover\:pl-24:hover{
    padding-left     : 6rem !important;
  }

  .lg\:hover\:pt-28:hover{
    padding-top     : 7rem !important;
  }

  .lg\:hover\:pr-28:hover{
    padding-right     : 7rem !important;
  }

  .lg\:hover\:pb-28:hover{
    padding-bottom     : 7rem !important;
  }

  .lg\:hover\:pl-28:hover{
    padding-left     : 7rem !important;
  }

  .lg\:hover\:pt-32:hover{
    padding-top     : 8rem !important;
  }

  .lg\:hover\:pr-32:hover{
    padding-right     : 8rem !important;
  }

  .lg\:hover\:pb-32:hover{
    padding-bottom     : 8rem !important;
  }

  .lg\:hover\:pl-32:hover{
    padding-left     : 8rem !important;
  }

  .lg\:hover\:pt-36:hover{
    padding-top     : 9rem !important;
  }

  .lg\:hover\:pr-36:hover{
    padding-right     : 9rem !important;
  }

  .lg\:hover\:pb-36:hover{
    padding-bottom     : 9rem !important;
  }

  .lg\:hover\:pl-36:hover{
    padding-left     : 9rem !important;
  }

  .lg\:hover\:pt-40:hover{
    padding-top     : 10rem !important;
  }

  .lg\:hover\:pr-40:hover{
    padding-right     : 10rem !important;
  }

  .lg\:hover\:pb-40:hover{
    padding-bottom     : 10rem !important;
  }

  .lg\:hover\:pl-40:hover{
    padding-left     : 10rem !important;
  }

  .lg\:hover\:pt-44:hover{
    padding-top     : 11rem !important;
  }

  .lg\:hover\:pr-44:hover{
    padding-right     : 11rem !important;
  }

  .lg\:hover\:pb-44:hover{
    padding-bottom     : 11rem !important;
  }

  .lg\:hover\:pl-44:hover{
    padding-left     : 11rem !important;
  }

  .lg\:hover\:pt-48:hover{
    padding-top     : 12rem !important;
  }

  .lg\:hover\:pr-48:hover{
    padding-right     : 12rem !important;
  }

  .lg\:hover\:pb-48:hover{
    padding-bottom     : 12rem !important;
  }

  .lg\:hover\:pl-48:hover{
    padding-left     : 12rem !important;
  }

  .lg\:hover\:pt-52:hover{
    padding-top     : 13rem !important;
  }

  .lg\:hover\:pr-52:hover{
    padding-right     : 13rem !important;
  }

  .lg\:hover\:pb-52:hover{
    padding-bottom     : 13rem !important;
  }

  .lg\:hover\:pl-52:hover{
    padding-left     : 13rem !important;
  }

  .lg\:hover\:pt-56:hover{
    padding-top     : 14rem !important;
  }

  .lg\:hover\:pr-56:hover{
    padding-right     : 14rem !important;
  }

  .lg\:hover\:pb-56:hover{
    padding-bottom     : 14rem !important;
  }

  .lg\:hover\:pl-56:hover{
    padding-left     : 14rem !important;
  }

  .lg\:hover\:pt-60:hover{
    padding-top     : 15rem !important;
  }

  .lg\:hover\:pr-60:hover{
    padding-right     : 15rem !important;
  }

  .lg\:hover\:pb-60:hover{
    padding-bottom     : 15rem !important;
  }

  .lg\:hover\:pl-60:hover{
    padding-left     : 15rem !important;
  }

  .lg\:hover\:pt-64:hover{
    padding-top     : 16rem !important;
  }

  .lg\:hover\:pr-64:hover{
    padding-right     : 16rem !important;
  }

  .lg\:hover\:pb-64:hover{
    padding-bottom     : 16rem !important;
  }

  .lg\:hover\:pl-64:hover{
    padding-left     : 16rem !important;
  }

  .lg\:hover\:pt-72:hover{
    padding-top     : 18rem !important;
  }

  .lg\:hover\:pr-72:hover{
    padding-right     : 18rem !important;
  }

  .lg\:hover\:pb-72:hover{
    padding-bottom     : 18rem !important;
  }

  .lg\:hover\:pl-72:hover{
    padding-left     : 18rem !important;
  }

  .lg\:hover\:pt-80:hover{
    padding-top     : 20rem !important;
  }

  .lg\:hover\:pr-80:hover{
    padding-right     : 20rem !important;
  }

  .lg\:hover\:pb-80:hover{
    padding-bottom     : 20rem !important;
  }

  .lg\:hover\:pl-80:hover{
    padding-left     : 20rem !important;
  }

  .lg\:hover\:pt-96:hover{
    padding-top     : 24rem !important;
  }

  .lg\:hover\:pr-96:hover{
    padding-right     : 24rem !important;
  }

  .lg\:hover\:pb-96:hover{
    padding-bottom     : 24rem !important;
  }

  .lg\:hover\:pl-96:hover{
    padding-left     : 24rem !important;
  }

  .lg\:hover\:pt-px:hover{
    padding-top     : 1px !important;
  }

  .lg\:hover\:pr-px:hover{
    padding-right     : 1px !important;
  }

  .lg\:hover\:pb-px:hover{
    padding-bottom     : 1px !important;
  }

  .lg\:hover\:pl-px:hover{
    padding-left     : 1px !important;
  }

  .lg\:hover\:pt-0\.5:hover{
    padding-top     : 0.125rem !important;
  }

  .lg\:hover\:pr-0\.5:hover{
    padding-right     : 0.125rem !important;
  }

  .lg\:hover\:pb-0\.5:hover{
    padding-bottom     : 0.125rem !important;
  }

  .lg\:hover\:pl-0\.5:hover{
    padding-left     : 0.125rem !important;
  }

  .lg\:hover\:pt-1\.5:hover{
    padding-top     : 0.375rem !important;
  }

  .lg\:hover\:pr-1\.5:hover{
    padding-right     : 0.375rem !important;
  }

  .lg\:hover\:pb-1\.5:hover{
    padding-bottom     : 0.375rem !important;
  }

  .lg\:hover\:pl-1\.5:hover{
    padding-left     : 0.375rem !important;
  }

  .lg\:hover\:pt-2\.5:hover{
    padding-top     : 0.625rem !important;
  }

  .lg\:hover\:pr-2\.5:hover{
    padding-right     : 0.625rem !important;
  }

  .lg\:hover\:pb-2\.5:hover{
    padding-bottom     : 0.625rem !important;
  }

  .lg\:hover\:pl-2\.5:hover{
    padding-left     : 0.625rem !important;
  }

  .lg\:hover\:pt-3\.5:hover{
    padding-top     : 0.875rem !important;
  }

  .lg\:hover\:pr-3\.5:hover{
    padding-right     : 0.875rem !important;
  }

  .lg\:hover\:pb-3\.5:hover{
    padding-bottom     : 0.875rem !important;
  }

  .lg\:hover\:pl-3\.5:hover{
    padding-left     : 0.875rem !important;
  }

  .lg\:hover\:pt-1\/2:hover{
    padding-top     : 50% !important;
  }

  .lg\:hover\:pr-1\/2:hover{
    padding-right     : 50% !important;
  }

  .lg\:hover\:pb-1\/2:hover{
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:pl-1\/2:hover{
    padding-left     : 50% !important;
  }

  .lg\:hover\:pt-1\/3:hover{
    padding-top     : 33.333333% !important;
  }

  .lg\:hover\:pr-1\/3:hover{
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:pb-1\/3:hover{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:pl-1\/3:hover{
    padding-left     : 33.333333% !important;
  }

  .lg\:hover\:pt-2\/3:hover{
    padding-top     : 66.666667% !important;
  }

  .lg\:hover\:pr-2\/3:hover{
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:pb-2\/3:hover{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:pl-2\/3:hover{
    padding-left     : 66.666667% !important;
  }

  .lg\:hover\:pt-1\/4:hover{
    padding-top     : 25% !important;
  }

  .lg\:hover\:pr-1\/4:hover{
    padding-right     : 25% !important;
  }

  .lg\:hover\:pb-1\/4:hover{
    padding-bottom     : 25% !important;
  }

  .lg\:hover\:pl-1\/4:hover{
    padding-left     : 25% !important;
  }

  .lg\:hover\:pt-2\/4:hover{
    padding-top     : 50% !important;
  }

  .lg\:hover\:pr-2\/4:hover{
    padding-right     : 50% !important;
  }

  .lg\:hover\:pb-2\/4:hover{
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:pl-2\/4:hover{
    padding-left     : 50% !important;
  }

  .lg\:hover\:pt-3\/4:hover{
    padding-top     : 75% !important;
  }

  .lg\:hover\:pr-3\/4:hover{
    padding-right     : 75% !important;
  }

  .lg\:hover\:pb-3\/4:hover{
    padding-bottom     : 75% !important;
  }

  .lg\:hover\:pl-3\/4:hover{
    padding-left     : 75% !important;
  }

  .lg\:hover\:pt-1\/5:hover{
    padding-top     : 20% !important;
  }

  .lg\:hover\:pr-1\/5:hover{
    padding-right     : 20% !important;
  }

  .lg\:hover\:pb-1\/5:hover{
    padding-bottom     : 20% !important;
  }

  .lg\:hover\:pl-1\/5:hover{
    padding-left     : 20% !important;
  }

  .lg\:hover\:pt-2\/5:hover{
    padding-top     : 40% !important;
  }

  .lg\:hover\:pr-2\/5:hover{
    padding-right     : 40% !important;
  }

  .lg\:hover\:pb-2\/5:hover{
    padding-bottom     : 40% !important;
  }

  .lg\:hover\:pl-2\/5:hover{
    padding-left     : 40% !important;
  }

  .lg\:hover\:pt-3\/5:hover{
    padding-top     : 60% !important;
  }

  .lg\:hover\:pr-3\/5:hover{
    padding-right     : 60% !important;
  }

  .lg\:hover\:pb-3\/5:hover{
    padding-bottom     : 60% !important;
  }

  .lg\:hover\:pl-3\/5:hover{
    padding-left     : 60% !important;
  }

  .lg\:hover\:pt-4\/5:hover{
    padding-top     : 80% !important;
  }

  .lg\:hover\:pr-4\/5:hover{
    padding-right     : 80% !important;
  }

  .lg\:hover\:pb-4\/5:hover{
    padding-bottom     : 80% !important;
  }

  .lg\:hover\:pl-4\/5:hover{
    padding-left     : 80% !important;
  }

  .lg\:hover\:pt-1\/6:hover{
    padding-top     : 16.666667% !important;
  }

  .lg\:hover\:pr-1\/6:hover{
    padding-right     : 16.666667% !important;
  }

  .lg\:hover\:pb-1\/6:hover{
    padding-bottom     : 16.666667% !important;
  }

  .lg\:hover\:pl-1\/6:hover{
    padding-left     : 16.666667% !important;
  }

  .lg\:hover\:pt-2\/6:hover{
    padding-top     : 33.333333% !important;
  }

  .lg\:hover\:pr-2\/6:hover{
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:pb-2\/6:hover{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:pl-2\/6:hover{
    padding-left     : 33.333333% !important;
  }

  .lg\:hover\:pt-3\/6:hover{
    padding-top     : 50% !important;
  }

  .lg\:hover\:pr-3\/6:hover{
    padding-right     : 50% !important;
  }

  .lg\:hover\:pb-3\/6:hover{
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:pl-3\/6:hover{
    padding-left     : 50% !important;
  }

  .lg\:hover\:pt-4\/6:hover{
    padding-top     : 66.666667% !important;
  }

  .lg\:hover\:pr-4\/6:hover{
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:pb-4\/6:hover{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:pl-4\/6:hover{
    padding-left     : 66.666667% !important;
  }

  .lg\:hover\:pt-5\/6:hover{
    padding-top     : 83.333333% !important;
  }

  .lg\:hover\:pr-5\/6:hover{
    padding-right     : 83.333333% !important;
  }

  .lg\:hover\:pb-5\/6:hover{
    padding-bottom     : 83.333333% !important;
  }

  .lg\:hover\:pl-5\/6:hover{
    padding-left     : 83.333333% !important;
  }

  .lg\:hover\:pt-1\/12:hover{
    padding-top     : 8.333333% !important;
  }

  .lg\:hover\:pr-1\/12:hover{
    padding-right     : 8.333333% !important;
  }

  .lg\:hover\:pb-1\/12:hover{
    padding-bottom     : 8.333333% !important;
  }

  .lg\:hover\:pl-1\/12:hover{
    padding-left     : 8.333333% !important;
  }

  .lg\:hover\:pt-2\/12:hover{
    padding-top     : 16.666667% !important;
  }

  .lg\:hover\:pr-2\/12:hover{
    padding-right     : 16.666667% !important;
  }

  .lg\:hover\:pb-2\/12:hover{
    padding-bottom     : 16.666667% !important;
  }

  .lg\:hover\:pl-2\/12:hover{
    padding-left     : 16.666667% !important;
  }

  .lg\:hover\:pt-3\/12:hover{
    padding-top     : 25% !important;
  }

  .lg\:hover\:pr-3\/12:hover{
    padding-right     : 25% !important;
  }

  .lg\:hover\:pb-3\/12:hover{
    padding-bottom     : 25% !important;
  }

  .lg\:hover\:pl-3\/12:hover{
    padding-left     : 25% !important;
  }

  .lg\:hover\:pt-4\/12:hover{
    padding-top     : 33.333333% !important;
  }

  .lg\:hover\:pr-4\/12:hover{
    padding-right     : 33.333333% !important;
  }

  .lg\:hover\:pb-4\/12:hover{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:hover\:pl-4\/12:hover{
    padding-left     : 33.333333% !important;
  }

  .lg\:hover\:pt-5\/12:hover{
    padding-top     : 41.666667% !important;
  }

  .lg\:hover\:pr-5\/12:hover{
    padding-right     : 41.666667% !important;
  }

  .lg\:hover\:pb-5\/12:hover{
    padding-bottom     : 41.666667% !important;
  }

  .lg\:hover\:pl-5\/12:hover{
    padding-left     : 41.666667% !important;
  }

  .lg\:hover\:pt-6\/12:hover{
    padding-top     : 50% !important;
  }

  .lg\:hover\:pr-6\/12:hover{
    padding-right     : 50% !important;
  }

  .lg\:hover\:pb-6\/12:hover{
    padding-bottom     : 50% !important;
  }

  .lg\:hover\:pl-6\/12:hover{
    padding-left     : 50% !important;
  }

  .lg\:hover\:pt-7\/12:hover{
    padding-top     : 58.333333% !important;
  }

  .lg\:hover\:pr-7\/12:hover{
    padding-right     : 58.333333% !important;
  }

  .lg\:hover\:pb-7\/12:hover{
    padding-bottom     : 58.333333% !important;
  }

  .lg\:hover\:pl-7\/12:hover{
    padding-left     : 58.333333% !important;
  }

  .lg\:hover\:pt-8\/12:hover{
    padding-top     : 66.666667% !important;
  }

  .lg\:hover\:pr-8\/12:hover{
    padding-right     : 66.666667% !important;
  }

  .lg\:hover\:pb-8\/12:hover{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:hover\:pl-8\/12:hover{
    padding-left     : 66.666667% !important;
  }

  .lg\:hover\:pt-9\/12:hover{
    padding-top     : 75% !important;
  }

  .lg\:hover\:pr-9\/12:hover{
    padding-right     : 75% !important;
  }

  .lg\:hover\:pb-9\/12:hover{
    padding-bottom     : 75% !important;
  }

  .lg\:hover\:pl-9\/12:hover{
    padding-left     : 75% !important;
  }

  .lg\:hover\:pt-10\/12:hover{
    padding-top     : 83.333333% !important;
  }

  .lg\:hover\:pr-10\/12:hover{
    padding-right     : 83.333333% !important;
  }

  .lg\:hover\:pb-10\/12:hover{
    padding-bottom     : 83.333333% !important;
  }

  .lg\:hover\:pl-10\/12:hover{
    padding-left     : 83.333333% !important;
  }

  .lg\:hover\:pt-11\/12:hover{
    padding-top     : 91.666667% !important;
  }

  .lg\:hover\:pr-11\/12:hover{
    padding-right     : 91.666667% !important;
  }

  .lg\:hover\:pb-11\/12:hover{
    padding-bottom     : 91.666667% !important;
  }

  .lg\:hover\:pl-11\/12:hover{
    padding-left     : 91.666667% !important;
  }

  .lg\:hover\:pt-full:hover{
    padding-top     : 100% !important;
  }

  .lg\:hover\:pr-full:hover{
    padding-right     : 100% !important;
  }

  .lg\:hover\:pb-full:hover{
    padding-bottom     : 100% !important;
  }

  .lg\:hover\:pl-full:hover{
    padding-left     : 100% !important;
  }

  .lg\:focus\:p-0:focus{
    padding     : 0 !important;
  }

  .lg\:focus\:p-1:focus{
    padding     : 0.25rem !important;
  }

  .lg\:focus\:p-2:focus{
    padding     : 0.5rem !important;
  }

  .lg\:focus\:p-3:focus{
    padding     : 0.75rem !important;
  }

  .lg\:focus\:p-4:focus{
    padding     : 1rem !important;
  }

  .lg\:focus\:p-5:focus{
    padding     : 1.25rem !important;
  }

  .lg\:focus\:p-6:focus{
    padding     : 1.5rem !important;
  }

  .lg\:focus\:p-7:focus{
    padding     : 1.75rem !important;
  }

  .lg\:focus\:p-8:focus{
    padding     : 2rem !important;
  }

  .lg\:focus\:p-9:focus{
    padding     : 2.25rem !important;
  }

  .lg\:focus\:p-10:focus{
    padding     : 2.5rem !important;
  }

  .lg\:focus\:p-11:focus{
    padding     : 2.75rem !important;
  }

  .lg\:focus\:p-12:focus{
    padding     : 3rem !important;
  }

  .lg\:focus\:p-13:focus{
    padding     : 3.25rem !important;
  }

  .lg\:focus\:p-14:focus{
    padding     : 3.5rem !important;
  }

  .lg\:focus\:p-15:focus{
    padding     : 3.75rem !important;
  }

  .lg\:focus\:p-16:focus{
    padding     : 4rem !important;
  }

  .lg\:focus\:p-20:focus{
    padding     : 5rem !important;
  }

  .lg\:focus\:p-24:focus{
    padding     : 6rem !important;
  }

  .lg\:focus\:p-28:focus{
    padding     : 7rem !important;
  }

  .lg\:focus\:p-32:focus{
    padding     : 8rem !important;
  }

  .lg\:focus\:p-36:focus{
    padding     : 9rem !important;
  }

  .lg\:focus\:p-40:focus{
    padding     : 10rem !important;
  }

  .lg\:focus\:p-44:focus{
    padding     : 11rem !important;
  }

  .lg\:focus\:p-48:focus{
    padding     : 12rem !important;
  }

  .lg\:focus\:p-52:focus{
    padding     : 13rem !important;
  }

  .lg\:focus\:p-56:focus{
    padding     : 14rem !important;
  }

  .lg\:focus\:p-60:focus{
    padding     : 15rem !important;
  }

  .lg\:focus\:p-64:focus{
    padding     : 16rem !important;
  }

  .lg\:focus\:p-72:focus{
    padding     : 18rem !important;
  }

  .lg\:focus\:p-80:focus{
    padding     : 20rem !important;
  }

  .lg\:focus\:p-96:focus{
    padding     : 24rem !important;
  }

  .lg\:focus\:p-px:focus{
    padding     : 1px !important;
  }

  .lg\:focus\:p-0\.5:focus{
    padding     : 0.125rem !important;
  }

  .lg\:focus\:p-1\.5:focus{
    padding     : 0.375rem !important;
  }

  .lg\:focus\:p-2\.5:focus{
    padding     : 0.625rem !important;
  }

  .lg\:focus\:p-3\.5:focus{
    padding     : 0.875rem !important;
  }

  .lg\:focus\:p-1\/2:focus{
    padding     : 50% !important;
  }

  .lg\:focus\:p-1\/3:focus{
    padding     : 33.333333% !important;
  }

  .lg\:focus\:p-2\/3:focus{
    padding     : 66.666667% !important;
  }

  .lg\:focus\:p-1\/4:focus{
    padding     : 25% !important;
  }

  .lg\:focus\:p-2\/4:focus{
    padding     : 50% !important;
  }

  .lg\:focus\:p-3\/4:focus{
    padding     : 75% !important;
  }

  .lg\:focus\:p-1\/5:focus{
    padding     : 20% !important;
  }

  .lg\:focus\:p-2\/5:focus{
    padding     : 40% !important;
  }

  .lg\:focus\:p-3\/5:focus{
    padding     : 60% !important;
  }

  .lg\:focus\:p-4\/5:focus{
    padding     : 80% !important;
  }

  .lg\:focus\:p-1\/6:focus{
    padding     : 16.666667% !important;
  }

  .lg\:focus\:p-2\/6:focus{
    padding     : 33.333333% !important;
  }

  .lg\:focus\:p-3\/6:focus{
    padding     : 50% !important;
  }

  .lg\:focus\:p-4\/6:focus{
    padding     : 66.666667% !important;
  }

  .lg\:focus\:p-5\/6:focus{
    padding     : 83.333333% !important;
  }

  .lg\:focus\:p-1\/12:focus{
    padding     : 8.333333% !important;
  }

  .lg\:focus\:p-2\/12:focus{
    padding     : 16.666667% !important;
  }

  .lg\:focus\:p-3\/12:focus{
    padding     : 25% !important;
  }

  .lg\:focus\:p-4\/12:focus{
    padding     : 33.333333% !important;
  }

  .lg\:focus\:p-5\/12:focus{
    padding     : 41.666667% !important;
  }

  .lg\:focus\:p-6\/12:focus{
    padding     : 50% !important;
  }

  .lg\:focus\:p-7\/12:focus{
    padding     : 58.333333% !important;
  }

  .lg\:focus\:p-8\/12:focus{
    padding     : 66.666667% !important;
  }

  .lg\:focus\:p-9\/12:focus{
    padding     : 75% !important;
  }

  .lg\:focus\:p-10\/12:focus{
    padding     : 83.333333% !important;
  }

  .lg\:focus\:p-11\/12:focus{
    padding     : 91.666667% !important;
  }

  .lg\:focus\:p-full:focus{
    padding     : 100% !important;
  }

  .lg\:focus\:py-0:focus{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .lg\:focus\:px-0:focus{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .lg\:focus\:py-1:focus{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .lg\:focus\:px-1:focus{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .lg\:focus\:py-2:focus{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .lg\:focus\:px-2:focus{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .lg\:focus\:py-3:focus{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .lg\:focus\:px-3:focus{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .lg\:focus\:py-4:focus{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .lg\:focus\:px-4:focus{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .lg\:focus\:py-5:focus{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .lg\:focus\:px-5:focus{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .lg\:focus\:py-6:focus{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .lg\:focus\:px-6:focus{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .lg\:focus\:py-7:focus{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .lg\:focus\:px-7:focus{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .lg\:focus\:py-8:focus{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .lg\:focus\:px-8:focus{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .lg\:focus\:py-9:focus{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .lg\:focus\:px-9:focus{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .lg\:focus\:py-10:focus{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .lg\:focus\:px-10:focus{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .lg\:focus\:py-11:focus{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .lg\:focus\:px-11:focus{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .lg\:focus\:py-12:focus{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .lg\:focus\:px-12:focus{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .lg\:focus\:py-13:focus{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .lg\:focus\:px-13:focus{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .lg\:focus\:py-14:focus{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .lg\:focus\:px-14:focus{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .lg\:focus\:py-15:focus{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .lg\:focus\:px-15:focus{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .lg\:focus\:py-16:focus{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .lg\:focus\:px-16:focus{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .lg\:focus\:py-20:focus{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .lg\:focus\:px-20:focus{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .lg\:focus\:py-24:focus{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .lg\:focus\:px-24:focus{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .lg\:focus\:py-28:focus{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .lg\:focus\:px-28:focus{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .lg\:focus\:py-32:focus{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .lg\:focus\:px-32:focus{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .lg\:focus\:py-36:focus{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .lg\:focus\:px-36:focus{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .lg\:focus\:py-40:focus{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .lg\:focus\:px-40:focus{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .lg\:focus\:py-44:focus{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .lg\:focus\:px-44:focus{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .lg\:focus\:py-48:focus{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .lg\:focus\:px-48:focus{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .lg\:focus\:py-52:focus{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .lg\:focus\:px-52:focus{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .lg\:focus\:py-56:focus{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .lg\:focus\:px-56:focus{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .lg\:focus\:py-60:focus{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .lg\:focus\:px-60:focus{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .lg\:focus\:py-64:focus{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .lg\:focus\:px-64:focus{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .lg\:focus\:py-72:focus{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .lg\:focus\:px-72:focus{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .lg\:focus\:py-80:focus{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .lg\:focus\:px-80:focus{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .lg\:focus\:py-96:focus{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .lg\:focus\:px-96:focus{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .lg\:focus\:py-px:focus{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .lg\:focus\:px-px:focus{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .lg\:focus\:py-0\.5:focus{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .lg\:focus\:px-0\.5:focus{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .lg\:focus\:py-1\.5:focus{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .lg\:focus\:px-1\.5:focus{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .lg\:focus\:py-2\.5:focus{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .lg\:focus\:px-2\.5:focus{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .lg\:focus\:py-3\.5:focus{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .lg\:focus\:px-3\.5:focus{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .lg\:focus\:py-1\/2:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:px-1\/2:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:focus\:py-1\/3:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:px-1\/3:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:py-2\/3:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:px-2\/3:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:py-1\/4:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .lg\:focus\:px-1\/4:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .lg\:focus\:py-2\/4:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:px-2\/4:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:focus\:py-3\/4:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .lg\:focus\:px-3\/4:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .lg\:focus\:py-1\/5:focus{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .lg\:focus\:px-1\/5:focus{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .lg\:focus\:py-2\/5:focus{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .lg\:focus\:px-2\/5:focus{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .lg\:focus\:py-3\/5:focus{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .lg\:focus\:px-3\/5:focus{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .lg\:focus\:py-4\/5:focus{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .lg\:focus\:px-4\/5:focus{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .lg\:focus\:py-1\/6:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .lg\:focus\:px-1\/6:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .lg\:focus\:py-2\/6:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:px-2\/6:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:py-3\/6:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:px-3\/6:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:focus\:py-4\/6:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:px-4\/6:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:py-5\/6:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .lg\:focus\:px-5\/6:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .lg\:focus\:py-1\/12:focus{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .lg\:focus\:px-1\/12:focus{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .lg\:focus\:py-2\/12:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .lg\:focus\:px-2\/12:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .lg\:focus\:py-3\/12:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .lg\:focus\:px-3\/12:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .lg\:focus\:py-4\/12:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:px-4\/12:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:py-5\/12:focus{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .lg\:focus\:px-5\/12:focus{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .lg\:focus\:py-6\/12:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:px-6\/12:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .lg\:focus\:py-7\/12:focus{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .lg\:focus\:px-7\/12:focus{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .lg\:focus\:py-8\/12:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:px-8\/12:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:py-9\/12:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .lg\:focus\:px-9\/12:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .lg\:focus\:py-10\/12:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .lg\:focus\:px-10\/12:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .lg\:focus\:py-11\/12:focus{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .lg\:focus\:px-11\/12:focus{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .lg\:focus\:py-full:focus{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .lg\:focus\:px-full:focus{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .lg\:focus\:pt-0:focus{
    padding-top     : 0 !important;
  }

  .lg\:focus\:pr-0:focus{
    padding-right     : 0 !important;
  }

  .lg\:focus\:pb-0:focus{
    padding-bottom     : 0 !important;
  }

  .lg\:focus\:pl-0:focus{
    padding-left     : 0 !important;
  }

  .lg\:focus\:pt-1:focus{
    padding-top     : 0.25rem !important;
  }

  .lg\:focus\:pr-1:focus{
    padding-right     : 0.25rem !important;
  }

  .lg\:focus\:pb-1:focus{
    padding-bottom     : 0.25rem !important;
  }

  .lg\:focus\:pl-1:focus{
    padding-left     : 0.25rem !important;
  }

  .lg\:focus\:pt-2:focus{
    padding-top     : 0.5rem !important;
  }

  .lg\:focus\:pr-2:focus{
    padding-right     : 0.5rem !important;
  }

  .lg\:focus\:pb-2:focus{
    padding-bottom     : 0.5rem !important;
  }

  .lg\:focus\:pl-2:focus{
    padding-left     : 0.5rem !important;
  }

  .lg\:focus\:pt-3:focus{
    padding-top     : 0.75rem !important;
  }

  .lg\:focus\:pr-3:focus{
    padding-right     : 0.75rem !important;
  }

  .lg\:focus\:pb-3:focus{
    padding-bottom     : 0.75rem !important;
  }

  .lg\:focus\:pl-3:focus{
    padding-left     : 0.75rem !important;
  }

  .lg\:focus\:pt-4:focus{
    padding-top     : 1rem !important;
  }

  .lg\:focus\:pr-4:focus{
    padding-right     : 1rem !important;
  }

  .lg\:focus\:pb-4:focus{
    padding-bottom     : 1rem !important;
  }

  .lg\:focus\:pl-4:focus{
    padding-left     : 1rem !important;
  }

  .lg\:focus\:pt-5:focus{
    padding-top     : 1.25rem !important;
  }

  .lg\:focus\:pr-5:focus{
    padding-right     : 1.25rem !important;
  }

  .lg\:focus\:pb-5:focus{
    padding-bottom     : 1.25rem !important;
  }

  .lg\:focus\:pl-5:focus{
    padding-left     : 1.25rem !important;
  }

  .lg\:focus\:pt-6:focus{
    padding-top     : 1.5rem !important;
  }

  .lg\:focus\:pr-6:focus{
    padding-right     : 1.5rem !important;
  }

  .lg\:focus\:pb-6:focus{
    padding-bottom     : 1.5rem !important;
  }

  .lg\:focus\:pl-6:focus{
    padding-left     : 1.5rem !important;
  }

  .lg\:focus\:pt-7:focus{
    padding-top     : 1.75rem !important;
  }

  .lg\:focus\:pr-7:focus{
    padding-right     : 1.75rem !important;
  }

  .lg\:focus\:pb-7:focus{
    padding-bottom     : 1.75rem !important;
  }

  .lg\:focus\:pl-7:focus{
    padding-left     : 1.75rem !important;
  }

  .lg\:focus\:pt-8:focus{
    padding-top     : 2rem !important;
  }

  .lg\:focus\:pr-8:focus{
    padding-right     : 2rem !important;
  }

  .lg\:focus\:pb-8:focus{
    padding-bottom     : 2rem !important;
  }

  .lg\:focus\:pl-8:focus{
    padding-left     : 2rem !important;
  }

  .lg\:focus\:pt-9:focus{
    padding-top     : 2.25rem !important;
  }

  .lg\:focus\:pr-9:focus{
    padding-right     : 2.25rem !important;
  }

  .lg\:focus\:pb-9:focus{
    padding-bottom     : 2.25rem !important;
  }

  .lg\:focus\:pl-9:focus{
    padding-left     : 2.25rem !important;
  }

  .lg\:focus\:pt-10:focus{
    padding-top     : 2.5rem !important;
  }

  .lg\:focus\:pr-10:focus{
    padding-right     : 2.5rem !important;
  }

  .lg\:focus\:pb-10:focus{
    padding-bottom     : 2.5rem !important;
  }

  .lg\:focus\:pl-10:focus{
    padding-left     : 2.5rem !important;
  }

  .lg\:focus\:pt-11:focus{
    padding-top     : 2.75rem !important;
  }

  .lg\:focus\:pr-11:focus{
    padding-right     : 2.75rem !important;
  }

  .lg\:focus\:pb-11:focus{
    padding-bottom     : 2.75rem !important;
  }

  .lg\:focus\:pl-11:focus{
    padding-left     : 2.75rem !important;
  }

  .lg\:focus\:pt-12:focus{
    padding-top     : 3rem !important;
  }

  .lg\:focus\:pr-12:focus{
    padding-right     : 3rem !important;
  }

  .lg\:focus\:pb-12:focus{
    padding-bottom     : 3rem !important;
  }

  .lg\:focus\:pl-12:focus{
    padding-left     : 3rem !important;
  }

  .lg\:focus\:pt-13:focus{
    padding-top     : 3.25rem !important;
  }

  .lg\:focus\:pr-13:focus{
    padding-right     : 3.25rem !important;
  }

  .lg\:focus\:pb-13:focus{
    padding-bottom     : 3.25rem !important;
  }

  .lg\:focus\:pl-13:focus{
    padding-left     : 3.25rem !important;
  }

  .lg\:focus\:pt-14:focus{
    padding-top     : 3.5rem !important;
  }

  .lg\:focus\:pr-14:focus{
    padding-right     : 3.5rem !important;
  }

  .lg\:focus\:pb-14:focus{
    padding-bottom     : 3.5rem !important;
  }

  .lg\:focus\:pl-14:focus{
    padding-left     : 3.5rem !important;
  }

  .lg\:focus\:pt-15:focus{
    padding-top     : 3.75rem !important;
  }

  .lg\:focus\:pr-15:focus{
    padding-right     : 3.75rem !important;
  }

  .lg\:focus\:pb-15:focus{
    padding-bottom     : 3.75rem !important;
  }

  .lg\:focus\:pl-15:focus{
    padding-left     : 3.75rem !important;
  }

  .lg\:focus\:pt-16:focus{
    padding-top     : 4rem !important;
  }

  .lg\:focus\:pr-16:focus{
    padding-right     : 4rem !important;
  }

  .lg\:focus\:pb-16:focus{
    padding-bottom     : 4rem !important;
  }

  .lg\:focus\:pl-16:focus{
    padding-left     : 4rem !important;
  }

  .lg\:focus\:pt-20:focus{
    padding-top     : 5rem !important;
  }

  .lg\:focus\:pr-20:focus{
    padding-right     : 5rem !important;
  }

  .lg\:focus\:pb-20:focus{
    padding-bottom     : 5rem !important;
  }

  .lg\:focus\:pl-20:focus{
    padding-left     : 5rem !important;
  }

  .lg\:focus\:pt-24:focus{
    padding-top     : 6rem !important;
  }

  .lg\:focus\:pr-24:focus{
    padding-right     : 6rem !important;
  }

  .lg\:focus\:pb-24:focus{
    padding-bottom     : 6rem !important;
  }

  .lg\:focus\:pl-24:focus{
    padding-left     : 6rem !important;
  }

  .lg\:focus\:pt-28:focus{
    padding-top     : 7rem !important;
  }

  .lg\:focus\:pr-28:focus{
    padding-right     : 7rem !important;
  }

  .lg\:focus\:pb-28:focus{
    padding-bottom     : 7rem !important;
  }

  .lg\:focus\:pl-28:focus{
    padding-left     : 7rem !important;
  }

  .lg\:focus\:pt-32:focus{
    padding-top     : 8rem !important;
  }

  .lg\:focus\:pr-32:focus{
    padding-right     : 8rem !important;
  }

  .lg\:focus\:pb-32:focus{
    padding-bottom     : 8rem !important;
  }

  .lg\:focus\:pl-32:focus{
    padding-left     : 8rem !important;
  }

  .lg\:focus\:pt-36:focus{
    padding-top     : 9rem !important;
  }

  .lg\:focus\:pr-36:focus{
    padding-right     : 9rem !important;
  }

  .lg\:focus\:pb-36:focus{
    padding-bottom     : 9rem !important;
  }

  .lg\:focus\:pl-36:focus{
    padding-left     : 9rem !important;
  }

  .lg\:focus\:pt-40:focus{
    padding-top     : 10rem !important;
  }

  .lg\:focus\:pr-40:focus{
    padding-right     : 10rem !important;
  }

  .lg\:focus\:pb-40:focus{
    padding-bottom     : 10rem !important;
  }

  .lg\:focus\:pl-40:focus{
    padding-left     : 10rem !important;
  }

  .lg\:focus\:pt-44:focus{
    padding-top     : 11rem !important;
  }

  .lg\:focus\:pr-44:focus{
    padding-right     : 11rem !important;
  }

  .lg\:focus\:pb-44:focus{
    padding-bottom     : 11rem !important;
  }

  .lg\:focus\:pl-44:focus{
    padding-left     : 11rem !important;
  }

  .lg\:focus\:pt-48:focus{
    padding-top     : 12rem !important;
  }

  .lg\:focus\:pr-48:focus{
    padding-right     : 12rem !important;
  }

  .lg\:focus\:pb-48:focus{
    padding-bottom     : 12rem !important;
  }

  .lg\:focus\:pl-48:focus{
    padding-left     : 12rem !important;
  }

  .lg\:focus\:pt-52:focus{
    padding-top     : 13rem !important;
  }

  .lg\:focus\:pr-52:focus{
    padding-right     : 13rem !important;
  }

  .lg\:focus\:pb-52:focus{
    padding-bottom     : 13rem !important;
  }

  .lg\:focus\:pl-52:focus{
    padding-left     : 13rem !important;
  }

  .lg\:focus\:pt-56:focus{
    padding-top     : 14rem !important;
  }

  .lg\:focus\:pr-56:focus{
    padding-right     : 14rem !important;
  }

  .lg\:focus\:pb-56:focus{
    padding-bottom     : 14rem !important;
  }

  .lg\:focus\:pl-56:focus{
    padding-left     : 14rem !important;
  }

  .lg\:focus\:pt-60:focus{
    padding-top     : 15rem !important;
  }

  .lg\:focus\:pr-60:focus{
    padding-right     : 15rem !important;
  }

  .lg\:focus\:pb-60:focus{
    padding-bottom     : 15rem !important;
  }

  .lg\:focus\:pl-60:focus{
    padding-left     : 15rem !important;
  }

  .lg\:focus\:pt-64:focus{
    padding-top     : 16rem !important;
  }

  .lg\:focus\:pr-64:focus{
    padding-right     : 16rem !important;
  }

  .lg\:focus\:pb-64:focus{
    padding-bottom     : 16rem !important;
  }

  .lg\:focus\:pl-64:focus{
    padding-left     : 16rem !important;
  }

  .lg\:focus\:pt-72:focus{
    padding-top     : 18rem !important;
  }

  .lg\:focus\:pr-72:focus{
    padding-right     : 18rem !important;
  }

  .lg\:focus\:pb-72:focus{
    padding-bottom     : 18rem !important;
  }

  .lg\:focus\:pl-72:focus{
    padding-left     : 18rem !important;
  }

  .lg\:focus\:pt-80:focus{
    padding-top     : 20rem !important;
  }

  .lg\:focus\:pr-80:focus{
    padding-right     : 20rem !important;
  }

  .lg\:focus\:pb-80:focus{
    padding-bottom     : 20rem !important;
  }

  .lg\:focus\:pl-80:focus{
    padding-left     : 20rem !important;
  }

  .lg\:focus\:pt-96:focus{
    padding-top     : 24rem !important;
  }

  .lg\:focus\:pr-96:focus{
    padding-right     : 24rem !important;
  }

  .lg\:focus\:pb-96:focus{
    padding-bottom     : 24rem !important;
  }

  .lg\:focus\:pl-96:focus{
    padding-left     : 24rem !important;
  }

  .lg\:focus\:pt-px:focus{
    padding-top     : 1px !important;
  }

  .lg\:focus\:pr-px:focus{
    padding-right     : 1px !important;
  }

  .lg\:focus\:pb-px:focus{
    padding-bottom     : 1px !important;
  }

  .lg\:focus\:pl-px:focus{
    padding-left     : 1px !important;
  }

  .lg\:focus\:pt-0\.5:focus{
    padding-top     : 0.125rem !important;
  }

  .lg\:focus\:pr-0\.5:focus{
    padding-right     : 0.125rem !important;
  }

  .lg\:focus\:pb-0\.5:focus{
    padding-bottom     : 0.125rem !important;
  }

  .lg\:focus\:pl-0\.5:focus{
    padding-left     : 0.125rem !important;
  }

  .lg\:focus\:pt-1\.5:focus{
    padding-top     : 0.375rem !important;
  }

  .lg\:focus\:pr-1\.5:focus{
    padding-right     : 0.375rem !important;
  }

  .lg\:focus\:pb-1\.5:focus{
    padding-bottom     : 0.375rem !important;
  }

  .lg\:focus\:pl-1\.5:focus{
    padding-left     : 0.375rem !important;
  }

  .lg\:focus\:pt-2\.5:focus{
    padding-top     : 0.625rem !important;
  }

  .lg\:focus\:pr-2\.5:focus{
    padding-right     : 0.625rem !important;
  }

  .lg\:focus\:pb-2\.5:focus{
    padding-bottom     : 0.625rem !important;
  }

  .lg\:focus\:pl-2\.5:focus{
    padding-left     : 0.625rem !important;
  }

  .lg\:focus\:pt-3\.5:focus{
    padding-top     : 0.875rem !important;
  }

  .lg\:focus\:pr-3\.5:focus{
    padding-right     : 0.875rem !important;
  }

  .lg\:focus\:pb-3\.5:focus{
    padding-bottom     : 0.875rem !important;
  }

  .lg\:focus\:pl-3\.5:focus{
    padding-left     : 0.875rem !important;
  }

  .lg\:focus\:pt-1\/2:focus{
    padding-top     : 50% !important;
  }

  .lg\:focus\:pr-1\/2:focus{
    padding-right     : 50% !important;
  }

  .lg\:focus\:pb-1\/2:focus{
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:pl-1\/2:focus{
    padding-left     : 50% !important;
  }

  .lg\:focus\:pt-1\/3:focus{
    padding-top     : 33.333333% !important;
  }

  .lg\:focus\:pr-1\/3:focus{
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:pb-1\/3:focus{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:pl-1\/3:focus{
    padding-left     : 33.333333% !important;
  }

  .lg\:focus\:pt-2\/3:focus{
    padding-top     : 66.666667% !important;
  }

  .lg\:focus\:pr-2\/3:focus{
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:pb-2\/3:focus{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:pl-2\/3:focus{
    padding-left     : 66.666667% !important;
  }

  .lg\:focus\:pt-1\/4:focus{
    padding-top     : 25% !important;
  }

  .lg\:focus\:pr-1\/4:focus{
    padding-right     : 25% !important;
  }

  .lg\:focus\:pb-1\/4:focus{
    padding-bottom     : 25% !important;
  }

  .lg\:focus\:pl-1\/4:focus{
    padding-left     : 25% !important;
  }

  .lg\:focus\:pt-2\/4:focus{
    padding-top     : 50% !important;
  }

  .lg\:focus\:pr-2\/4:focus{
    padding-right     : 50% !important;
  }

  .lg\:focus\:pb-2\/4:focus{
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:pl-2\/4:focus{
    padding-left     : 50% !important;
  }

  .lg\:focus\:pt-3\/4:focus{
    padding-top     : 75% !important;
  }

  .lg\:focus\:pr-3\/4:focus{
    padding-right     : 75% !important;
  }

  .lg\:focus\:pb-3\/4:focus{
    padding-bottom     : 75% !important;
  }

  .lg\:focus\:pl-3\/4:focus{
    padding-left     : 75% !important;
  }

  .lg\:focus\:pt-1\/5:focus{
    padding-top     : 20% !important;
  }

  .lg\:focus\:pr-1\/5:focus{
    padding-right     : 20% !important;
  }

  .lg\:focus\:pb-1\/5:focus{
    padding-bottom     : 20% !important;
  }

  .lg\:focus\:pl-1\/5:focus{
    padding-left     : 20% !important;
  }

  .lg\:focus\:pt-2\/5:focus{
    padding-top     : 40% !important;
  }

  .lg\:focus\:pr-2\/5:focus{
    padding-right     : 40% !important;
  }

  .lg\:focus\:pb-2\/5:focus{
    padding-bottom     : 40% !important;
  }

  .lg\:focus\:pl-2\/5:focus{
    padding-left     : 40% !important;
  }

  .lg\:focus\:pt-3\/5:focus{
    padding-top     : 60% !important;
  }

  .lg\:focus\:pr-3\/5:focus{
    padding-right     : 60% !important;
  }

  .lg\:focus\:pb-3\/5:focus{
    padding-bottom     : 60% !important;
  }

  .lg\:focus\:pl-3\/5:focus{
    padding-left     : 60% !important;
  }

  .lg\:focus\:pt-4\/5:focus{
    padding-top     : 80% !important;
  }

  .lg\:focus\:pr-4\/5:focus{
    padding-right     : 80% !important;
  }

  .lg\:focus\:pb-4\/5:focus{
    padding-bottom     : 80% !important;
  }

  .lg\:focus\:pl-4\/5:focus{
    padding-left     : 80% !important;
  }

  .lg\:focus\:pt-1\/6:focus{
    padding-top     : 16.666667% !important;
  }

  .lg\:focus\:pr-1\/6:focus{
    padding-right     : 16.666667% !important;
  }

  .lg\:focus\:pb-1\/6:focus{
    padding-bottom     : 16.666667% !important;
  }

  .lg\:focus\:pl-1\/6:focus{
    padding-left     : 16.666667% !important;
  }

  .lg\:focus\:pt-2\/6:focus{
    padding-top     : 33.333333% !important;
  }

  .lg\:focus\:pr-2\/6:focus{
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:pb-2\/6:focus{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:pl-2\/6:focus{
    padding-left     : 33.333333% !important;
  }

  .lg\:focus\:pt-3\/6:focus{
    padding-top     : 50% !important;
  }

  .lg\:focus\:pr-3\/6:focus{
    padding-right     : 50% !important;
  }

  .lg\:focus\:pb-3\/6:focus{
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:pl-3\/6:focus{
    padding-left     : 50% !important;
  }

  .lg\:focus\:pt-4\/6:focus{
    padding-top     : 66.666667% !important;
  }

  .lg\:focus\:pr-4\/6:focus{
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:pb-4\/6:focus{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:pl-4\/6:focus{
    padding-left     : 66.666667% !important;
  }

  .lg\:focus\:pt-5\/6:focus{
    padding-top     : 83.333333% !important;
  }

  .lg\:focus\:pr-5\/6:focus{
    padding-right     : 83.333333% !important;
  }

  .lg\:focus\:pb-5\/6:focus{
    padding-bottom     : 83.333333% !important;
  }

  .lg\:focus\:pl-5\/6:focus{
    padding-left     : 83.333333% !important;
  }

  .lg\:focus\:pt-1\/12:focus{
    padding-top     : 8.333333% !important;
  }

  .lg\:focus\:pr-1\/12:focus{
    padding-right     : 8.333333% !important;
  }

  .lg\:focus\:pb-1\/12:focus{
    padding-bottom     : 8.333333% !important;
  }

  .lg\:focus\:pl-1\/12:focus{
    padding-left     : 8.333333% !important;
  }

  .lg\:focus\:pt-2\/12:focus{
    padding-top     : 16.666667% !important;
  }

  .lg\:focus\:pr-2\/12:focus{
    padding-right     : 16.666667% !important;
  }

  .lg\:focus\:pb-2\/12:focus{
    padding-bottom     : 16.666667% !important;
  }

  .lg\:focus\:pl-2\/12:focus{
    padding-left     : 16.666667% !important;
  }

  .lg\:focus\:pt-3\/12:focus{
    padding-top     : 25% !important;
  }

  .lg\:focus\:pr-3\/12:focus{
    padding-right     : 25% !important;
  }

  .lg\:focus\:pb-3\/12:focus{
    padding-bottom     : 25% !important;
  }

  .lg\:focus\:pl-3\/12:focus{
    padding-left     : 25% !important;
  }

  .lg\:focus\:pt-4\/12:focus{
    padding-top     : 33.333333% !important;
  }

  .lg\:focus\:pr-4\/12:focus{
    padding-right     : 33.333333% !important;
  }

  .lg\:focus\:pb-4\/12:focus{
    padding-bottom     : 33.333333% !important;
  }

  .lg\:focus\:pl-4\/12:focus{
    padding-left     : 33.333333% !important;
  }

  .lg\:focus\:pt-5\/12:focus{
    padding-top     : 41.666667% !important;
  }

  .lg\:focus\:pr-5\/12:focus{
    padding-right     : 41.666667% !important;
  }

  .lg\:focus\:pb-5\/12:focus{
    padding-bottom     : 41.666667% !important;
  }

  .lg\:focus\:pl-5\/12:focus{
    padding-left     : 41.666667% !important;
  }

  .lg\:focus\:pt-6\/12:focus{
    padding-top     : 50% !important;
  }

  .lg\:focus\:pr-6\/12:focus{
    padding-right     : 50% !important;
  }

  .lg\:focus\:pb-6\/12:focus{
    padding-bottom     : 50% !important;
  }

  .lg\:focus\:pl-6\/12:focus{
    padding-left     : 50% !important;
  }

  .lg\:focus\:pt-7\/12:focus{
    padding-top     : 58.333333% !important;
  }

  .lg\:focus\:pr-7\/12:focus{
    padding-right     : 58.333333% !important;
  }

  .lg\:focus\:pb-7\/12:focus{
    padding-bottom     : 58.333333% !important;
  }

  .lg\:focus\:pl-7\/12:focus{
    padding-left     : 58.333333% !important;
  }

  .lg\:focus\:pt-8\/12:focus{
    padding-top     : 66.666667% !important;
  }

  .lg\:focus\:pr-8\/12:focus{
    padding-right     : 66.666667% !important;
  }

  .lg\:focus\:pb-8\/12:focus{
    padding-bottom     : 66.666667% !important;
  }

  .lg\:focus\:pl-8\/12:focus{
    padding-left     : 66.666667% !important;
  }

  .lg\:focus\:pt-9\/12:focus{
    padding-top     : 75% !important;
  }

  .lg\:focus\:pr-9\/12:focus{
    padding-right     : 75% !important;
  }

  .lg\:focus\:pb-9\/12:focus{
    padding-bottom     : 75% !important;
  }

  .lg\:focus\:pl-9\/12:focus{
    padding-left     : 75% !important;
  }

  .lg\:focus\:pt-10\/12:focus{
    padding-top     : 83.333333% !important;
  }

  .lg\:focus\:pr-10\/12:focus{
    padding-right     : 83.333333% !important;
  }

  .lg\:focus\:pb-10\/12:focus{
    padding-bottom     : 83.333333% !important;
  }

  .lg\:focus\:pl-10\/12:focus{
    padding-left     : 83.333333% !important;
  }

  .lg\:focus\:pt-11\/12:focus{
    padding-top     : 91.666667% !important;
  }

  .lg\:focus\:pr-11\/12:focus{
    padding-right     : 91.666667% !important;
  }

  .lg\:focus\:pb-11\/12:focus{
    padding-bottom     : 91.666667% !important;
  }

  .lg\:focus\:pl-11\/12:focus{
    padding-left     : 91.666667% !important;
  }

  .lg\:focus\:pt-full:focus{
    padding-top     : 100% !important;
  }

  .lg\:focus\:pr-full:focus{
    padding-right     : 100% !important;
  }

  .lg\:focus\:pb-full:focus{
    padding-bottom     : 100% !important;
  }

  .lg\:focus\:pl-full:focus{
    padding-left     : 100% !important;
  }

  .lg\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .lg\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .lg\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color     : transparent !important;
  }

  .lg\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:hover\:placeholder-transparent:hover::-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:hover\:placeholder-transparent:hover::placeholder{
    color     : transparent !important;
  }

  .lg\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-white:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-black:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-cool-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-red-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-orange-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-yellow-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-green-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-teal-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-indigo-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-purple-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-pink-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-brand:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-brand:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-brand:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:hover\:placeholder-blue-brand:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color     : transparent !important;
  }

  .lg\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color     : transparent !important;
  }

  .lg\:focus\:placeholder-transparent:focus::placeholder{
    color     : transparent !important;
  }

  .lg\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-cool-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-red-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-orange-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-yellow-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-green-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-teal-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-indigo-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-purple-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-pink-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-brand:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-brand:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-brand:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:placeholder-blue-brand:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .lg\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:hover\:placeholder-opacity-0:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:hover\:placeholder-opacity-25:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:hover\:placeholder-opacity-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:hover\:placeholder-opacity-75:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:hover\:placeholder-opacity-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .lg\:pointer-events-none{
    pointer-events     : none !important;
  }

  .lg\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .group:hover .lg\:group-hover\:pointer-events-none{
    pointer-events     : none !important;
  }

  .group:hover .lg\:group-hover\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .lg\:hover\:pointer-events-none:hover{
    pointer-events     : none !important;
  }

  .lg\:hover\:pointer-events-auto:hover{
    pointer-events     : auto !important;
  }

  .lg\:focus\:pointer-events-none:focus{
    pointer-events     : none !important;
  }

  .lg\:focus\:pointer-events-auto:focus{
    pointer-events     : auto !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;
  }

  .group:hover .lg\:group-hover\:static{
    position     : static !important;
  }

  .group:hover .lg\:group-hover\:fixed{
    position     : fixed !important;
  }

  .group:hover .lg\:group-hover\:absolute{
    position     : absolute !important;
  }

  .group:hover .lg\:group-hover\:relative{
    position     : relative !important;
  }

  .group:hover .lg\:group-hover\:sticky{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .lg\:hover\:static:hover{
    position     : static !important;
  }

  .lg\:hover\:fixed:hover{
    position     : fixed !important;
  }

  .lg\:hover\:absolute:hover{
    position     : absolute !important;
  }

  .lg\:hover\:relative:hover{
    position     : relative !important;
  }

  .lg\:hover\:sticky:hover{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .lg\:focus\:static:focus{
    position     : static !important;
  }

  .lg\:focus\:fixed:focus{
    position     : fixed !important;
  }

  .lg\:focus\:absolute:focus{
    position     : absolute !important;
  }

  .lg\:focus\:relative:focus{
    position     : relative !important;
  }

  .lg\:focus\:sticky:focus{
    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-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .lg\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .lg\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !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-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-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .lg\:inset-x-20{
    right     : 5rem !important;
    left     : 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-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .lg\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .lg\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !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\: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-20{
    top     : 5rem !important;
  }

  .lg\:right-20{
    right     : 5rem !important;
  }

  .lg\:bottom-20{
    bottom     : 5rem !important;
  }

  .lg\:left-20{
    left     : 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-28{
    top     : 7rem !important;
  }

  .lg\:right-28{
    right     : 7rem !important;
  }

  .lg\:bottom-28{
    bottom     : 7rem !important;
  }

  .lg\:left-28{
    left     : 7rem !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-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-96{
    top     : 24rem !important;
  }

  .lg\:right-96{
    right     : 24rem !important;
  }

  .lg\:bottom-96{
    bottom     : 24rem !important;
  }

  .lg\:left-96{
    left     : 24rem !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;
  }

  .group:hover .lg\:group-hover\:inset-0{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .lg\:group-hover\:inset-1{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-2{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-3{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-4{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:inset-5{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-6{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-7{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-8{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:inset-9{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-10{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-11{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-12{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:inset-13{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-14{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-15{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-16{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:inset-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:inset-32{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:inset-36{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:inset-40{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:inset-44{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:inset-48{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:inset-52{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:inset-56{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:inset-60{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:inset-64{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:inset-72{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:inset-80{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:inset-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:inset-auto{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .group:hover .lg\:group-hover\:inset-px{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .lg\:group-hover\:inset-0\.5{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:inset-1\.5{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:inset-2\.5{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:inset-3\.5{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/2{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/3{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-2\/3{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/4{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-2\/4{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-3\/4{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/5{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .lg\:group-hover\:inset-2\/5{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .lg\:group-hover\:inset-3\/5{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .lg\:group-hover\:inset-4\/5{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/6{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-2\/6{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-3\/6{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-4\/6{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-5\/6{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-1\/12{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-2\/12{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-3\/12{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-4\/12{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-5\/12{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-6\/12{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-7\/12{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-8\/12{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-9\/12{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-10\/12{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-11\/12{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-full{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-0{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:inset-x-0{
    right     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-4{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-4{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-5{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-5{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-6{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-6{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-7{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-7{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-8{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-8{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-9{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-9{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-10{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-10{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-11{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-11{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-12{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-12{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-13{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-13{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-14{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-14{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-15{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-15{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-16{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-16{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-20{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-24{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-24{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-32{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-32{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-36{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-36{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-40{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-40{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-44{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-44{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-48{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-48{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-52{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-52{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-56{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-56{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-60{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-60{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-64{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-64{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-72{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-72{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-80{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-80{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-auto{
    top     : auto !important;
    bottom     : auto !important;
  }

  .group:hover .lg\:group-hover\:inset-x-auto{
    right     : auto !important;
    left     : auto !important;
  }

  .group:hover .lg\:group-hover\:inset-y-px{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:inset-x-px{
    right     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .lg\:group-hover\:inset-y-0\.5{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-0\.5{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\.5{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\.5{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\.5{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\.5{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3\.5{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3\.5{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/2{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/2{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/3{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/3{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\/3{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\/3{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/4{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/4{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\/4{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\/4{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3\/4{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3\/4{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/5{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/5{
    right     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\/5{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\/5{
    right     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3\/5{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3\/5{
    right     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-4\/5{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-4\/5{
    right     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/6{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/6{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\/6{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\/6{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3\/6{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3\/6{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-4\/6{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-4\/6{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-5\/6{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-5\/6{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-1\/12{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-1\/12{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-2\/12{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-2\/12{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-3\/12{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-3\/12{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-4\/12{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-4\/12{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-5\/12{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-5\/12{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-6\/12{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-6\/12{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-7\/12{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-7\/12{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-8\/12{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-8\/12{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-9\/12{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-9\/12{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-10\/12{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-10\/12{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-11\/12{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-11\/12{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:inset-y-full{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:inset-x-full{
    right     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .lg\:group-hover\:top-0{
    top     : 0 !important;
  }

  .group:hover .lg\:group-hover\:right-0{
    right     : 0 !important;
  }

  .group:hover .lg\:group-hover\:bottom-0{
    bottom     : 0 !important;
  }

  .group:hover .lg\:group-hover\:left-0{
    left     : 0 !important;
  }

  .group:hover .lg\:group-hover\:top-1{
    top     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:right-1{
    right     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-1{
    bottom     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:left-1{
    left     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:top-2{
    top     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:right-2{
    right     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-2{
    bottom     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:left-2{
    left     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:top-3{
    top     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:right-3{
    right     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-3{
    bottom     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:left-3{
    left     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:top-4{
    top     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:right-4{
    right     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-4{
    bottom     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:left-4{
    left     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:top-5{
    top     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:right-5{
    right     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-5{
    bottom     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:left-5{
    left     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:top-6{
    top     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:right-6{
    right     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-6{
    bottom     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:left-6{
    left     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:top-7{
    top     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:right-7{
    right     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-7{
    bottom     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:left-7{
    left     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:top-8{
    top     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:right-8{
    right     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-8{
    bottom     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:left-8{
    left     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:top-9{
    top     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:right-9{
    right     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-9{
    bottom     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:left-9{
    left     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:top-10{
    top     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:right-10{
    right     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-10{
    bottom     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:left-10{
    left     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:top-11{
    top     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:right-11{
    right     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-11{
    bottom     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:left-11{
    left     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:top-12{
    top     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:right-12{
    right     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-12{
    bottom     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:left-12{
    left     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:top-13{
    top     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:right-13{
    right     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-13{
    bottom     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:left-13{
    left     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:top-14{
    top     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:right-14{
    right     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-14{
    bottom     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:left-14{
    left     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:top-15{
    top     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:right-15{
    right     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-15{
    bottom     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:left-15{
    left     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:top-16{
    top     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:right-16{
    right     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-16{
    bottom     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:left-16{
    left     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:top-20{
    top     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:right-20{
    right     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-20{
    bottom     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:left-20{
    left     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:top-24{
    top     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:right-24{
    right     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-24{
    bottom     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:left-24{
    left     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:top-28{
    top     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:right-28{
    right     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-28{
    bottom     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:left-28{
    left     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:top-32{
    top     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:right-32{
    right     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-32{
    bottom     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:left-32{
    left     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:top-36{
    top     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:right-36{
    right     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-36{
    bottom     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:left-36{
    left     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:top-40{
    top     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:right-40{
    right     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-40{
    bottom     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:left-40{
    left     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:top-44{
    top     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:right-44{
    right     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-44{
    bottom     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:left-44{
    left     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:top-48{
    top     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:right-48{
    right     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-48{
    bottom     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:left-48{
    left     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:top-52{
    top     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:right-52{
    right     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-52{
    bottom     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:left-52{
    left     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:top-56{
    top     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:right-56{
    right     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-56{
    bottom     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:left-56{
    left     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:top-60{
    top     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:right-60{
    right     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-60{
    bottom     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:left-60{
    left     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:top-64{
    top     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:right-64{
    right     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-64{
    bottom     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:left-64{
    left     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:top-72{
    top     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:right-72{
    right     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-72{
    bottom     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:left-72{
    left     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:top-80{
    top     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:right-80{
    right     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-80{
    bottom     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:left-80{
    left     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:top-96{
    top     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:right-96{
    right     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-96{
    bottom     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:left-96{
    left     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:top-auto{
    top     : auto !important;
  }

  .group:hover .lg\:group-hover\:right-auto{
    right     : auto !important;
  }

  .group:hover .lg\:group-hover\:bottom-auto{
    bottom     : auto !important;
  }

  .group:hover .lg\:group-hover\:left-auto{
    left     : auto !important;
  }

  .group:hover .lg\:group-hover\:top-px{
    top     : 1px !important;
  }

  .group:hover .lg\:group-hover\:right-px{
    right     : 1px !important;
  }

  .group:hover .lg\:group-hover\:bottom-px{
    bottom     : 1px !important;
  }

  .group:hover .lg\:group-hover\:left-px{
    left     : 1px !important;
  }

  .group:hover .lg\:group-hover\:top-0\.5{
    top     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:right-0\.5{
    right     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-0\.5{
    bottom     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:left-0\.5{
    left     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:top-1\.5{
    top     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:right-1\.5{
    right     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\.5{
    bottom     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:left-1\.5{
    left     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:top-2\.5{
    top     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:right-2\.5{
    right     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\.5{
    bottom     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:left-2\.5{
    left     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:top-3\.5{
    top     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:right-3\.5{
    right     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:bottom-3\.5{
    bottom     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:left-3\.5{
    left     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:top-1\/2{
    top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/2{
    right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/2{
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/2{
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:top-1\/3{
    top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/3{
    right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/3{
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/3{
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-2\/3{
    top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-2\/3{
    right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\/3{
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-2\/3{
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-1\/4{
    top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/4{
    right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/4{
    bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/4{
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:top-2\/4{
    top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:right-2\/4{
    right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\/4{
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:left-2\/4{
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:top-3\/4{
    top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:right-3\/4{
    right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:bottom-3\/4{
    bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:left-3\/4{
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:top-1\/5{
    top     : 20% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/5{
    right     : 20% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/5{
    bottom     : 20% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/5{
    left     : 20% !important;
  }

  .group:hover .lg\:group-hover\:top-2\/5{
    top     : 40% !important;
  }

  .group:hover .lg\:group-hover\:right-2\/5{
    right     : 40% !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\/5{
    bottom     : 40% !important;
  }

  .group:hover .lg\:group-hover\:left-2\/5{
    left     : 40% !important;
  }

  .group:hover .lg\:group-hover\:top-3\/5{
    top     : 60% !important;
  }

  .group:hover .lg\:group-hover\:right-3\/5{
    right     : 60% !important;
  }

  .group:hover .lg\:group-hover\:bottom-3\/5{
    bottom     : 60% !important;
  }

  .group:hover .lg\:group-hover\:left-3\/5{
    left     : 60% !important;
  }

  .group:hover .lg\:group-hover\:top-4\/5{
    top     : 80% !important;
  }

  .group:hover .lg\:group-hover\:right-4\/5{
    right     : 80% !important;
  }

  .group:hover .lg\:group-hover\:bottom-4\/5{
    bottom     : 80% !important;
  }

  .group:hover .lg\:group-hover\:left-4\/5{
    left     : 80% !important;
  }

  .group:hover .lg\:group-hover\:top-1\/6{
    top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/6{
    right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/6{
    bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/6{
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-2\/6{
    top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-2\/6{
    right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\/6{
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-2\/6{
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-3\/6{
    top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:right-3\/6{
    right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:bottom-3\/6{
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:left-3\/6{
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:top-4\/6{
    top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-4\/6{
    right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-4\/6{
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-4\/6{
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-5\/6{
    top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-5\/6{
    right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-5\/6{
    bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-5\/6{
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-1\/12{
    top     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-1\/12{
    right     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-1\/12{
    bottom     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-1\/12{
    left     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-2\/12{
    top     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-2\/12{
    right     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-2\/12{
    bottom     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-2\/12{
    left     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-3\/12{
    top     : 25% !important;
  }

  .group:hover .lg\:group-hover\:right-3\/12{
    right     : 25% !important;
  }

  .group:hover .lg\:group-hover\:bottom-3\/12{
    bottom     : 25% !important;
  }

  .group:hover .lg\:group-hover\:left-3\/12{
    left     : 25% !important;
  }

  .group:hover .lg\:group-hover\:top-4\/12{
    top     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-4\/12{
    right     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-4\/12{
    bottom     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-4\/12{
    left     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-5\/12{
    top     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-5\/12{
    right     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-5\/12{
    bottom     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-5\/12{
    left     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-6\/12{
    top     : 50% !important;
  }

  .group:hover .lg\:group-hover\:right-6\/12{
    right     : 50% !important;
  }

  .group:hover .lg\:group-hover\:bottom-6\/12{
    bottom     : 50% !important;
  }

  .group:hover .lg\:group-hover\:left-6\/12{
    left     : 50% !important;
  }

  .group:hover .lg\:group-hover\:top-7\/12{
    top     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-7\/12{
    right     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-7\/12{
    bottom     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-7\/12{
    left     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-8\/12{
    top     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-8\/12{
    right     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-8\/12{
    bottom     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-8\/12{
    left     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-9\/12{
    top     : 75% !important;
  }

  .group:hover .lg\:group-hover\:right-9\/12{
    right     : 75% !important;
  }

  .group:hover .lg\:group-hover\:bottom-9\/12{
    bottom     : 75% !important;
  }

  .group:hover .lg\:group-hover\:left-9\/12{
    left     : 75% !important;
  }

  .group:hover .lg\:group-hover\:top-10\/12{
    top     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:right-10\/12{
    right     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:bottom-10\/12{
    bottom     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:left-10\/12{
    left     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:top-11\/12{
    top     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:right-11\/12{
    right     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:bottom-11\/12{
    bottom     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:left-11\/12{
    left     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:top-full{
    top     : 100% !important;
  }

  .group:hover .lg\:group-hover\:right-full{
    right     : 100% !important;
  }

  .group:hover .lg\:group-hover\:bottom-full{
    bottom     : 100% !important;
  }

  .group:hover .lg\:group-hover\:left-full{
    left     : 100% !important;
  }

  .lg\:hover\:inset-0:hover{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .lg\:hover\:inset-1:hover{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .lg\:hover\:inset-2:hover{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .lg\:hover\:inset-3:hover{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .lg\:hover\:inset-4:hover{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .lg\:hover\:inset-5:hover{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .lg\:hover\:inset-6:hover{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .lg\:hover\:inset-7:hover{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .lg\:hover\:inset-8:hover{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .lg\:hover\:inset-9:hover{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .lg\:hover\:inset-10:hover{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .lg\:hover\:inset-11:hover{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .lg\:hover\:inset-12:hover{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .lg\:hover\:inset-13:hover{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .lg\:hover\:inset-14:hover{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .lg\:hover\:inset-15:hover{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .lg\:hover\:inset-16:hover{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .lg\:hover\:inset-20:hover{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .lg\:hover\:inset-24:hover{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .lg\:hover\:inset-28:hover{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .lg\:hover\:inset-32:hover{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .lg\:hover\:inset-36:hover{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .lg\:hover\:inset-40:hover{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .lg\:hover\:inset-44:hover{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .lg\:hover\:inset-48:hover{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .lg\:hover\:inset-52:hover{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .lg\:hover\:inset-56:hover{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .lg\:hover\:inset-60:hover{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .lg\:hover\:inset-64:hover{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .lg\:hover\:inset-72:hover{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .lg\:hover\:inset-80:hover{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .lg\:hover\:inset-96:hover{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .lg\:hover\:inset-auto:hover{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .lg\:hover\:inset-px:hover{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .lg\:hover\:inset-0\.5:hover{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .lg\:hover\:inset-1\.5:hover{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .lg\:hover\:inset-2\.5:hover{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .lg\:hover\:inset-3\.5:hover{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .lg\:hover\:inset-1\/2:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-1\/3:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-2\/3:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-1\/4:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .lg\:hover\:inset-2\/4:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-3\/4:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .lg\:hover\:inset-1\/5:hover{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .lg\:hover\:inset-2\/5:hover{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .lg\:hover\:inset-3\/5:hover{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .lg\:hover\:inset-4\/5:hover{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .lg\:hover\:inset-1\/6:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:hover\:inset-2\/6:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-3\/6:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-4\/6:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-5\/6:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:hover\:inset-1\/12:hover{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .lg\:hover\:inset-2\/12:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:hover\:inset-3\/12:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .lg\:hover\:inset-4\/12:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-5\/12:hover{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .lg\:hover\:inset-6\/12:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-7\/12:hover{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .lg\:hover\:inset-8\/12:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-9\/12:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .lg\:hover\:inset-10\/12:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:hover\:inset-11\/12:hover{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .lg\:hover\:inset-full:hover{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .lg\:hover\:inset-y-0:hover{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .lg\:hover\:inset-x-0:hover{
    right     : 0 !important;
    left     : 0 !important;
  }

  .lg\:hover\:inset-y-1:hover{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .lg\:hover\:inset-x-1:hover{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .lg\:hover\:inset-y-2:hover{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .lg\:hover\:inset-x-2:hover{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .lg\:hover\:inset-y-3:hover{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .lg\:hover\:inset-x-3:hover{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .lg\:hover\:inset-y-4:hover{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .lg\:hover\:inset-x-4:hover{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .lg\:hover\:inset-y-5:hover{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .lg\:hover\:inset-x-5:hover{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .lg\:hover\:inset-y-6:hover{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .lg\:hover\:inset-x-6:hover{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .lg\:hover\:inset-y-7:hover{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .lg\:hover\:inset-x-7:hover{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .lg\:hover\:inset-y-8:hover{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .lg\:hover\:inset-x-8:hover{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .lg\:hover\:inset-y-9:hover{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .lg\:hover\:inset-x-9:hover{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .lg\:hover\:inset-y-10:hover{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .lg\:hover\:inset-x-10:hover{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .lg\:hover\:inset-y-11:hover{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .lg\:hover\:inset-x-11:hover{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .lg\:hover\:inset-y-12:hover{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .lg\:hover\:inset-x-12:hover{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .lg\:hover\:inset-y-13:hover{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .lg\:hover\:inset-x-13:hover{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .lg\:hover\:inset-y-14:hover{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .lg\:hover\:inset-x-14:hover{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .lg\:hover\:inset-y-15:hover{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .lg\:hover\:inset-x-15:hover{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .lg\:hover\:inset-y-16:hover{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .lg\:hover\:inset-x-16:hover{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .lg\:hover\:inset-y-20:hover{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .lg\:hover\:inset-x-20:hover{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .lg\:hover\:inset-y-24:hover{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .lg\:hover\:inset-x-24:hover{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .lg\:hover\:inset-y-28:hover{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .lg\:hover\:inset-x-28:hover{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .lg\:hover\:inset-y-32:hover{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .lg\:hover\:inset-x-32:hover{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .lg\:hover\:inset-y-36:hover{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .lg\:hover\:inset-x-36:hover{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .lg\:hover\:inset-y-40:hover{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .lg\:hover\:inset-x-40:hover{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .lg\:hover\:inset-y-44:hover{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .lg\:hover\:inset-x-44:hover{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .lg\:hover\:inset-y-48:hover{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .lg\:hover\:inset-x-48:hover{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .lg\:hover\:inset-y-52:hover{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .lg\:hover\:inset-x-52:hover{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .lg\:hover\:inset-y-56:hover{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .lg\:hover\:inset-x-56:hover{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .lg\:hover\:inset-y-60:hover{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .lg\:hover\:inset-x-60:hover{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .lg\:hover\:inset-y-64:hover{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .lg\:hover\:inset-x-64:hover{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .lg\:hover\:inset-y-72:hover{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .lg\:hover\:inset-x-72:hover{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .lg\:hover\:inset-y-80:hover{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .lg\:hover\:inset-x-80:hover{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .lg\:hover\:inset-y-96:hover{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .lg\:hover\:inset-x-96:hover{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .lg\:hover\:inset-y-auto:hover{
    top     : auto !important;
    bottom     : auto !important;
  }

  .lg\:hover\:inset-x-auto:hover{
    right     : auto !important;
    left     : auto !important;
  }

  .lg\:hover\:inset-y-px:hover{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .lg\:hover\:inset-x-px:hover{
    right     : 1px !important;
    left     : 1px !important;
  }

  .lg\:hover\:inset-y-0\.5:hover{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .lg\:hover\:inset-x-0\.5:hover{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .lg\:hover\:inset-y-1\.5:hover{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .lg\:hover\:inset-x-1\.5:hover{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .lg\:hover\:inset-y-2\.5:hover{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .lg\:hover\:inset-x-2\.5:hover{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .lg\:hover\:inset-y-3\.5:hover{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .lg\:hover\:inset-x-3\.5:hover{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .lg\:hover\:inset-y-1\/2:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:hover\:inset-x-1\/2:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-y-1\/3:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:inset-x-1\/3:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-y-2\/3:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:inset-x-2\/3:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-y-1\/4:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .lg\:hover\:inset-x-1\/4:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .lg\:hover\:inset-y-2\/4:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:hover\:inset-x-2\/4:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-y-3\/4:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .lg\:hover\:inset-x-3\/4:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .lg\:hover\:inset-y-1\/5:hover{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .lg\:hover\:inset-x-1\/5:hover{
    right     : 20% !important;
    left     : 20% !important;
  }

  .lg\:hover\:inset-y-2\/5:hover{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .lg\:hover\:inset-x-2\/5:hover{
    right     : 40% !important;
    left     : 40% !important;
  }

  .lg\:hover\:inset-y-3\/5:hover{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .lg\:hover\:inset-x-3\/5:hover{
    right     : 60% !important;
    left     : 60% !important;
  }

  .lg\:hover\:inset-y-4\/5:hover{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .lg\:hover\:inset-x-4\/5:hover{
    right     : 80% !important;
    left     : 80% !important;
  }

  .lg\:hover\:inset-y-1\/6:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .lg\:hover\:inset-x-1\/6:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:hover\:inset-y-2\/6:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:inset-x-2\/6:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-y-3\/6:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:hover\:inset-x-3\/6:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-y-4\/6:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:inset-x-4\/6:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-y-5\/6:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .lg\:hover\:inset-x-5\/6:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:hover\:inset-y-1\/12:hover{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .lg\:hover\:inset-x-1\/12:hover{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .lg\:hover\:inset-y-2\/12:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .lg\:hover\:inset-x-2\/12:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:hover\:inset-y-3\/12:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .lg\:hover\:inset-x-3\/12:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .lg\:hover\:inset-y-4\/12:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:inset-x-4\/12:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:hover\:inset-y-5\/12:hover{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .lg\:hover\:inset-x-5\/12:hover{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .lg\:hover\:inset-y-6\/12:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:hover\:inset-x-6\/12:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:hover\:inset-y-7\/12:hover{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .lg\:hover\:inset-x-7\/12:hover{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .lg\:hover\:inset-y-8\/12:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:inset-x-8\/12:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:hover\:inset-y-9\/12:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .lg\:hover\:inset-x-9\/12:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .lg\:hover\:inset-y-10\/12:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .lg\:hover\:inset-x-10\/12:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:hover\:inset-y-11\/12:hover{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .lg\:hover\:inset-x-11\/12:hover{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .lg\:hover\:inset-y-full:hover{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .lg\:hover\:inset-x-full:hover{
    right     : 100% !important;
    left     : 100% !important;
  }

  .lg\:hover\:top-0:hover{
    top     : 0 !important;
  }

  .lg\:hover\:right-0:hover{
    right     : 0 !important;
  }

  .lg\:hover\:bottom-0:hover{
    bottom     : 0 !important;
  }

  .lg\:hover\:left-0:hover{
    left     : 0 !important;
  }

  .lg\:hover\:top-1:hover{
    top     : 0.25rem !important;
  }

  .lg\:hover\:right-1:hover{
    right     : 0.25rem !important;
  }

  .lg\:hover\:bottom-1:hover{
    bottom     : 0.25rem !important;
  }

  .lg\:hover\:left-1:hover{
    left     : 0.25rem !important;
  }

  .lg\:hover\:top-2:hover{
    top     : 0.5rem !important;
  }

  .lg\:hover\:right-2:hover{
    right     : 0.5rem !important;
  }

  .lg\:hover\:bottom-2:hover{
    bottom     : 0.5rem !important;
  }

  .lg\:hover\:left-2:hover{
    left     : 0.5rem !important;
  }

  .lg\:hover\:top-3:hover{
    top     : 0.75rem !important;
  }

  .lg\:hover\:right-3:hover{
    right     : 0.75rem !important;
  }

  .lg\:hover\:bottom-3:hover{
    bottom     : 0.75rem !important;
  }

  .lg\:hover\:left-3:hover{
    left     : 0.75rem !important;
  }

  .lg\:hover\:top-4:hover{
    top     : 1rem !important;
  }

  .lg\:hover\:right-4:hover{
    right     : 1rem !important;
  }

  .lg\:hover\:bottom-4:hover{
    bottom     : 1rem !important;
  }

  .lg\:hover\:left-4:hover{
    left     : 1rem !important;
  }

  .lg\:hover\:top-5:hover{
    top     : 1.25rem !important;
  }

  .lg\:hover\:right-5:hover{
    right     : 1.25rem !important;
  }

  .lg\:hover\:bottom-5:hover{
    bottom     : 1.25rem !important;
  }

  .lg\:hover\:left-5:hover{
    left     : 1.25rem !important;
  }

  .lg\:hover\:top-6:hover{
    top     : 1.5rem !important;
  }

  .lg\:hover\:right-6:hover{
    right     : 1.5rem !important;
  }

  .lg\:hover\:bottom-6:hover{
    bottom     : 1.5rem !important;
  }

  .lg\:hover\:left-6:hover{
    left     : 1.5rem !important;
  }

  .lg\:hover\:top-7:hover{
    top     : 1.75rem !important;
  }

  .lg\:hover\:right-7:hover{
    right     : 1.75rem !important;
  }

  .lg\:hover\:bottom-7:hover{
    bottom     : 1.75rem !important;
  }

  .lg\:hover\:left-7:hover{
    left     : 1.75rem !important;
  }

  .lg\:hover\:top-8:hover{
    top     : 2rem !important;
  }

  .lg\:hover\:right-8:hover{
    right     : 2rem !important;
  }

  .lg\:hover\:bottom-8:hover{
    bottom     : 2rem !important;
  }

  .lg\:hover\:left-8:hover{
    left     : 2rem !important;
  }

  .lg\:hover\:top-9:hover{
    top     : 2.25rem !important;
  }

  .lg\:hover\:right-9:hover{
    right     : 2.25rem !important;
  }

  .lg\:hover\:bottom-9:hover{
    bottom     : 2.25rem !important;
  }

  .lg\:hover\:left-9:hover{
    left     : 2.25rem !important;
  }

  .lg\:hover\:top-10:hover{
    top     : 2.5rem !important;
  }

  .lg\:hover\:right-10:hover{
    right     : 2.5rem !important;
  }

  .lg\:hover\:bottom-10:hover{
    bottom     : 2.5rem !important;
  }

  .lg\:hover\:left-10:hover{
    left     : 2.5rem !important;
  }

  .lg\:hover\:top-11:hover{
    top     : 2.75rem !important;
  }

  .lg\:hover\:right-11:hover{
    right     : 2.75rem !important;
  }

  .lg\:hover\:bottom-11:hover{
    bottom     : 2.75rem !important;
  }

  .lg\:hover\:left-11:hover{
    left     : 2.75rem !important;
  }

  .lg\:hover\:top-12:hover{
    top     : 3rem !important;
  }

  .lg\:hover\:right-12:hover{
    right     : 3rem !important;
  }

  .lg\:hover\:bottom-12:hover{
    bottom     : 3rem !important;
  }

  .lg\:hover\:left-12:hover{
    left     : 3rem !important;
  }

  .lg\:hover\:top-13:hover{
    top     : 3.25rem !important;
  }

  .lg\:hover\:right-13:hover{
    right     : 3.25rem !important;
  }

  .lg\:hover\:bottom-13:hover{
    bottom     : 3.25rem !important;
  }

  .lg\:hover\:left-13:hover{
    left     : 3.25rem !important;
  }

  .lg\:hover\:top-14:hover{
    top     : 3.5rem !important;
  }

  .lg\:hover\:right-14:hover{
    right     : 3.5rem !important;
  }

  .lg\:hover\:bottom-14:hover{
    bottom     : 3.5rem !important;
  }

  .lg\:hover\:left-14:hover{
    left     : 3.5rem !important;
  }

  .lg\:hover\:top-15:hover{
    top     : 3.75rem !important;
  }

  .lg\:hover\:right-15:hover{
    right     : 3.75rem !important;
  }

  .lg\:hover\:bottom-15:hover{
    bottom     : 3.75rem !important;
  }

  .lg\:hover\:left-15:hover{
    left     : 3.75rem !important;
  }

  .lg\:hover\:top-16:hover{
    top     : 4rem !important;
  }

  .lg\:hover\:right-16:hover{
    right     : 4rem !important;
  }

  .lg\:hover\:bottom-16:hover{
    bottom     : 4rem !important;
  }

  .lg\:hover\:left-16:hover{
    left     : 4rem !important;
  }

  .lg\:hover\:top-20:hover{
    top     : 5rem !important;
  }

  .lg\:hover\:right-20:hover{
    right     : 5rem !important;
  }

  .lg\:hover\:bottom-20:hover{
    bottom     : 5rem !important;
  }

  .lg\:hover\:left-20:hover{
    left     : 5rem !important;
  }

  .lg\:hover\:top-24:hover{
    top     : 6rem !important;
  }

  .lg\:hover\:right-24:hover{
    right     : 6rem !important;
  }

  .lg\:hover\:bottom-24:hover{
    bottom     : 6rem !important;
  }

  .lg\:hover\:left-24:hover{
    left     : 6rem !important;
  }

  .lg\:hover\:top-28:hover{
    top     : 7rem !important;
  }

  .lg\:hover\:right-28:hover{
    right     : 7rem !important;
  }

  .lg\:hover\:bottom-28:hover{
    bottom     : 7rem !important;
  }

  .lg\:hover\:left-28:hover{
    left     : 7rem !important;
  }

  .lg\:hover\:top-32:hover{
    top     : 8rem !important;
  }

  .lg\:hover\:right-32:hover{
    right     : 8rem !important;
  }

  .lg\:hover\:bottom-32:hover{
    bottom     : 8rem !important;
  }

  .lg\:hover\:left-32:hover{
    left     : 8rem !important;
  }

  .lg\:hover\:top-36:hover{
    top     : 9rem !important;
  }

  .lg\:hover\:right-36:hover{
    right     : 9rem !important;
  }

  .lg\:hover\:bottom-36:hover{
    bottom     : 9rem !important;
  }

  .lg\:hover\:left-36:hover{
    left     : 9rem !important;
  }

  .lg\:hover\:top-40:hover{
    top     : 10rem !important;
  }

  .lg\:hover\:right-40:hover{
    right     : 10rem !important;
  }

  .lg\:hover\:bottom-40:hover{
    bottom     : 10rem !important;
  }

  .lg\:hover\:left-40:hover{
    left     : 10rem !important;
  }

  .lg\:hover\:top-44:hover{
    top     : 11rem !important;
  }

  .lg\:hover\:right-44:hover{
    right     : 11rem !important;
  }

  .lg\:hover\:bottom-44:hover{
    bottom     : 11rem !important;
  }

  .lg\:hover\:left-44:hover{
    left     : 11rem !important;
  }

  .lg\:hover\:top-48:hover{
    top     : 12rem !important;
  }

  .lg\:hover\:right-48:hover{
    right     : 12rem !important;
  }

  .lg\:hover\:bottom-48:hover{
    bottom     : 12rem !important;
  }

  .lg\:hover\:left-48:hover{
    left     : 12rem !important;
  }

  .lg\:hover\:top-52:hover{
    top     : 13rem !important;
  }

  .lg\:hover\:right-52:hover{
    right     : 13rem !important;
  }

  .lg\:hover\:bottom-52:hover{
    bottom     : 13rem !important;
  }

  .lg\:hover\:left-52:hover{
    left     : 13rem !important;
  }

  .lg\:hover\:top-56:hover{
    top     : 14rem !important;
  }

  .lg\:hover\:right-56:hover{
    right     : 14rem !important;
  }

  .lg\:hover\:bottom-56:hover{
    bottom     : 14rem !important;
  }

  .lg\:hover\:left-56:hover{
    left     : 14rem !important;
  }

  .lg\:hover\:top-60:hover{
    top     : 15rem !important;
  }

  .lg\:hover\:right-60:hover{
    right     : 15rem !important;
  }

  .lg\:hover\:bottom-60:hover{
    bottom     : 15rem !important;
  }

  .lg\:hover\:left-60:hover{
    left     : 15rem !important;
  }

  .lg\:hover\:top-64:hover{
    top     : 16rem !important;
  }

  .lg\:hover\:right-64:hover{
    right     : 16rem !important;
  }

  .lg\:hover\:bottom-64:hover{
    bottom     : 16rem !important;
  }

  .lg\:hover\:left-64:hover{
    left     : 16rem !important;
  }

  .lg\:hover\:top-72:hover{
    top     : 18rem !important;
  }

  .lg\:hover\:right-72:hover{
    right     : 18rem !important;
  }

  .lg\:hover\:bottom-72:hover{
    bottom     : 18rem !important;
  }

  .lg\:hover\:left-72:hover{
    left     : 18rem !important;
  }

  .lg\:hover\:top-80:hover{
    top     : 20rem !important;
  }

  .lg\:hover\:right-80:hover{
    right     : 20rem !important;
  }

  .lg\:hover\:bottom-80:hover{
    bottom     : 20rem !important;
  }

  .lg\:hover\:left-80:hover{
    left     : 20rem !important;
  }

  .lg\:hover\:top-96:hover{
    top     : 24rem !important;
  }

  .lg\:hover\:right-96:hover{
    right     : 24rem !important;
  }

  .lg\:hover\:bottom-96:hover{
    bottom     : 24rem !important;
  }

  .lg\:hover\:left-96:hover{
    left     : 24rem !important;
  }

  .lg\:hover\:top-auto:hover{
    top     : auto !important;
  }

  .lg\:hover\:right-auto:hover{
    right     : auto !important;
  }

  .lg\:hover\:bottom-auto:hover{
    bottom     : auto !important;
  }

  .lg\:hover\:left-auto:hover{
    left     : auto !important;
  }

  .lg\:hover\:top-px:hover{
    top     : 1px !important;
  }

  .lg\:hover\:right-px:hover{
    right     : 1px !important;
  }

  .lg\:hover\:bottom-px:hover{
    bottom     : 1px !important;
  }

  .lg\:hover\:left-px:hover{
    left     : 1px !important;
  }

  .lg\:hover\:top-0\.5:hover{
    top     : 0.125rem !important;
  }

  .lg\:hover\:right-0\.5:hover{
    right     : 0.125rem !important;
  }

  .lg\:hover\:bottom-0\.5:hover{
    bottom     : 0.125rem !important;
  }

  .lg\:hover\:left-0\.5:hover{
    left     : 0.125rem !important;
  }

  .lg\:hover\:top-1\.5:hover{
    top     : 0.375rem !important;
  }

  .lg\:hover\:right-1\.5:hover{
    right     : 0.375rem !important;
  }

  .lg\:hover\:bottom-1\.5:hover{
    bottom     : 0.375rem !important;
  }

  .lg\:hover\:left-1\.5:hover{
    left     : 0.375rem !important;
  }

  .lg\:hover\:top-2\.5:hover{
    top     : 0.625rem !important;
  }

  .lg\:hover\:right-2\.5:hover{
    right     : 0.625rem !important;
  }

  .lg\:hover\:bottom-2\.5:hover{
    bottom     : 0.625rem !important;
  }

  .lg\:hover\:left-2\.5:hover{
    left     : 0.625rem !important;
  }

  .lg\:hover\:top-3\.5:hover{
    top     : 0.875rem !important;
  }

  .lg\:hover\:right-3\.5:hover{
    right     : 0.875rem !important;
  }

  .lg\:hover\:bottom-3\.5:hover{
    bottom     : 0.875rem !important;
  }

  .lg\:hover\:left-3\.5:hover{
    left     : 0.875rem !important;
  }

  .lg\:hover\:top-1\/2:hover{
    top     : 50% !important;
  }

  .lg\:hover\:right-1\/2:hover{
    right     : 50% !important;
  }

  .lg\:hover\:bottom-1\/2:hover{
    bottom     : 50% !important;
  }

  .lg\:hover\:left-1\/2:hover{
    left     : 50% !important;
  }

  .lg\:hover\:top-1\/3:hover{
    top     : 33.333333% !important;
  }

  .lg\:hover\:right-1\/3:hover{
    right     : 33.333333% !important;
  }

  .lg\:hover\:bottom-1\/3:hover{
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:left-1\/3:hover{
    left     : 33.333333% !important;
  }

  .lg\:hover\:top-2\/3:hover{
    top     : 66.666667% !important;
  }

  .lg\:hover\:right-2\/3:hover{
    right     : 66.666667% !important;
  }

  .lg\:hover\:bottom-2\/3:hover{
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:left-2\/3:hover{
    left     : 66.666667% !important;
  }

  .lg\:hover\:top-1\/4:hover{
    top     : 25% !important;
  }

  .lg\:hover\:right-1\/4:hover{
    right     : 25% !important;
  }

  .lg\:hover\:bottom-1\/4:hover{
    bottom     : 25% !important;
  }

  .lg\:hover\:left-1\/4:hover{
    left     : 25% !important;
  }

  .lg\:hover\:top-2\/4:hover{
    top     : 50% !important;
  }

  .lg\:hover\:right-2\/4:hover{
    right     : 50% !important;
  }

  .lg\:hover\:bottom-2\/4:hover{
    bottom     : 50% !important;
  }

  .lg\:hover\:left-2\/4:hover{
    left     : 50% !important;
  }

  .lg\:hover\:top-3\/4:hover{
    top     : 75% !important;
  }

  .lg\:hover\:right-3\/4:hover{
    right     : 75% !important;
  }

  .lg\:hover\:bottom-3\/4:hover{
    bottom     : 75% !important;
  }

  .lg\:hover\:left-3\/4:hover{
    left     : 75% !important;
  }

  .lg\:hover\:top-1\/5:hover{
    top     : 20% !important;
  }

  .lg\:hover\:right-1\/5:hover{
    right     : 20% !important;
  }

  .lg\:hover\:bottom-1\/5:hover{
    bottom     : 20% !important;
  }

  .lg\:hover\:left-1\/5:hover{
    left     : 20% !important;
  }

  .lg\:hover\:top-2\/5:hover{
    top     : 40% !important;
  }

  .lg\:hover\:right-2\/5:hover{
    right     : 40% !important;
  }

  .lg\:hover\:bottom-2\/5:hover{
    bottom     : 40% !important;
  }

  .lg\:hover\:left-2\/5:hover{
    left     : 40% !important;
  }

  .lg\:hover\:top-3\/5:hover{
    top     : 60% !important;
  }

  .lg\:hover\:right-3\/5:hover{
    right     : 60% !important;
  }

  .lg\:hover\:bottom-3\/5:hover{
    bottom     : 60% !important;
  }

  .lg\:hover\:left-3\/5:hover{
    left     : 60% !important;
  }

  .lg\:hover\:top-4\/5:hover{
    top     : 80% !important;
  }

  .lg\:hover\:right-4\/5:hover{
    right     : 80% !important;
  }

  .lg\:hover\:bottom-4\/5:hover{
    bottom     : 80% !important;
  }

  .lg\:hover\:left-4\/5:hover{
    left     : 80% !important;
  }

  .lg\:hover\:top-1\/6:hover{
    top     : 16.666667% !important;
  }

  .lg\:hover\:right-1\/6:hover{
    right     : 16.666667% !important;
  }

  .lg\:hover\:bottom-1\/6:hover{
    bottom     : 16.666667% !important;
  }

  .lg\:hover\:left-1\/6:hover{
    left     : 16.666667% !important;
  }

  .lg\:hover\:top-2\/6:hover{
    top     : 33.333333% !important;
  }

  .lg\:hover\:right-2\/6:hover{
    right     : 33.333333% !important;
  }

  .lg\:hover\:bottom-2\/6:hover{
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:left-2\/6:hover{
    left     : 33.333333% !important;
  }

  .lg\:hover\:top-3\/6:hover{
    top     : 50% !important;
  }

  .lg\:hover\:right-3\/6:hover{
    right     : 50% !important;
  }

  .lg\:hover\:bottom-3\/6:hover{
    bottom     : 50% !important;
  }

  .lg\:hover\:left-3\/6:hover{
    left     : 50% !important;
  }

  .lg\:hover\:top-4\/6:hover{
    top     : 66.666667% !important;
  }

  .lg\:hover\:right-4\/6:hover{
    right     : 66.666667% !important;
  }

  .lg\:hover\:bottom-4\/6:hover{
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:left-4\/6:hover{
    left     : 66.666667% !important;
  }

  .lg\:hover\:top-5\/6:hover{
    top     : 83.333333% !important;
  }

  .lg\:hover\:right-5\/6:hover{
    right     : 83.333333% !important;
  }

  .lg\:hover\:bottom-5\/6:hover{
    bottom     : 83.333333% !important;
  }

  .lg\:hover\:left-5\/6:hover{
    left     : 83.333333% !important;
  }

  .lg\:hover\:top-1\/12:hover{
    top     : 8.333333% !important;
  }

  .lg\:hover\:right-1\/12:hover{
    right     : 8.333333% !important;
  }

  .lg\:hover\:bottom-1\/12:hover{
    bottom     : 8.333333% !important;
  }

  .lg\:hover\:left-1\/12:hover{
    left     : 8.333333% !important;
  }

  .lg\:hover\:top-2\/12:hover{
    top     : 16.666667% !important;
  }

  .lg\:hover\:right-2\/12:hover{
    right     : 16.666667% !important;
  }

  .lg\:hover\:bottom-2\/12:hover{
    bottom     : 16.666667% !important;
  }

  .lg\:hover\:left-2\/12:hover{
    left     : 16.666667% !important;
  }

  .lg\:hover\:top-3\/12:hover{
    top     : 25% !important;
  }

  .lg\:hover\:right-3\/12:hover{
    right     : 25% !important;
  }

  .lg\:hover\:bottom-3\/12:hover{
    bottom     : 25% !important;
  }

  .lg\:hover\:left-3\/12:hover{
    left     : 25% !important;
  }

  .lg\:hover\:top-4\/12:hover{
    top     : 33.333333% !important;
  }

  .lg\:hover\:right-4\/12:hover{
    right     : 33.333333% !important;
  }

  .lg\:hover\:bottom-4\/12:hover{
    bottom     : 33.333333% !important;
  }

  .lg\:hover\:left-4\/12:hover{
    left     : 33.333333% !important;
  }

  .lg\:hover\:top-5\/12:hover{
    top     : 41.666667% !important;
  }

  .lg\:hover\:right-5\/12:hover{
    right     : 41.666667% !important;
  }

  .lg\:hover\:bottom-5\/12:hover{
    bottom     : 41.666667% !important;
  }

  .lg\:hover\:left-5\/12:hover{
    left     : 41.666667% !important;
  }

  .lg\:hover\:top-6\/12:hover{
    top     : 50% !important;
  }

  .lg\:hover\:right-6\/12:hover{
    right     : 50% !important;
  }

  .lg\:hover\:bottom-6\/12:hover{
    bottom     : 50% !important;
  }

  .lg\:hover\:left-6\/12:hover{
    left     : 50% !important;
  }

  .lg\:hover\:top-7\/12:hover{
    top     : 58.333333% !important;
  }

  .lg\:hover\:right-7\/12:hover{
    right     : 58.333333% !important;
  }

  .lg\:hover\:bottom-7\/12:hover{
    bottom     : 58.333333% !important;
  }

  .lg\:hover\:left-7\/12:hover{
    left     : 58.333333% !important;
  }

  .lg\:hover\:top-8\/12:hover{
    top     : 66.666667% !important;
  }

  .lg\:hover\:right-8\/12:hover{
    right     : 66.666667% !important;
  }

  .lg\:hover\:bottom-8\/12:hover{
    bottom     : 66.666667% !important;
  }

  .lg\:hover\:left-8\/12:hover{
    left     : 66.666667% !important;
  }

  .lg\:hover\:top-9\/12:hover{
    top     : 75% !important;
  }

  .lg\:hover\:right-9\/12:hover{
    right     : 75% !important;
  }

  .lg\:hover\:bottom-9\/12:hover{
    bottom     : 75% !important;
  }

  .lg\:hover\:left-9\/12:hover{
    left     : 75% !important;
  }

  .lg\:hover\:top-10\/12:hover{
    top     : 83.333333% !important;
  }

  .lg\:hover\:right-10\/12:hover{
    right     : 83.333333% !important;
  }

  .lg\:hover\:bottom-10\/12:hover{
    bottom     : 83.333333% !important;
  }

  .lg\:hover\:left-10\/12:hover{
    left     : 83.333333% !important;
  }

  .lg\:hover\:top-11\/12:hover{
    top     : 91.666667% !important;
  }

  .lg\:hover\:right-11\/12:hover{
    right     : 91.666667% !important;
  }

  .lg\:hover\:bottom-11\/12:hover{
    bottom     : 91.666667% !important;
  }

  .lg\:hover\:left-11\/12:hover{
    left     : 91.666667% !important;
  }

  .lg\:hover\:top-full:hover{
    top     : 100% !important;
  }

  .lg\:hover\:right-full:hover{
    right     : 100% !important;
  }

  .lg\:hover\:bottom-full:hover{
    bottom     : 100% !important;
  }

  .lg\:hover\:left-full:hover{
    left     : 100% !important;
  }

  .lg\:focus\:inset-0:focus{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .lg\:focus\:inset-1:focus{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .lg\:focus\:inset-2:focus{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .lg\:focus\:inset-3:focus{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .lg\:focus\:inset-4:focus{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .lg\:focus\:inset-5:focus{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .lg\:focus\:inset-6:focus{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .lg\:focus\:inset-7:focus{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .lg\:focus\:inset-8:focus{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .lg\:focus\:inset-9:focus{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .lg\:focus\:inset-10:focus{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .lg\:focus\:inset-11:focus{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .lg\:focus\:inset-12:focus{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .lg\:focus\:inset-13:focus{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .lg\:focus\:inset-14:focus{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .lg\:focus\:inset-15:focus{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .lg\:focus\:inset-16:focus{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .lg\:focus\:inset-20:focus{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .lg\:focus\:inset-24:focus{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .lg\:focus\:inset-28:focus{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .lg\:focus\:inset-32:focus{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .lg\:focus\:inset-36:focus{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .lg\:focus\:inset-40:focus{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .lg\:focus\:inset-44:focus{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .lg\:focus\:inset-48:focus{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .lg\:focus\:inset-52:focus{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .lg\:focus\:inset-56:focus{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .lg\:focus\:inset-60:focus{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .lg\:focus\:inset-64:focus{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .lg\:focus\:inset-72:focus{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .lg\:focus\:inset-80:focus{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .lg\:focus\:inset-96:focus{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .lg\:focus\:inset-auto:focus{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .lg\:focus\:inset-px:focus{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .lg\:focus\:inset-0\.5:focus{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .lg\:focus\:inset-1\.5:focus{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .lg\:focus\:inset-2\.5:focus{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .lg\:focus\:inset-3\.5:focus{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .lg\:focus\:inset-1\/2:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-1\/3:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-2\/3:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-1\/4:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .lg\:focus\:inset-2\/4:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-3\/4:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .lg\:focus\:inset-1\/5:focus{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .lg\:focus\:inset-2\/5:focus{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .lg\:focus\:inset-3\/5:focus{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .lg\:focus\:inset-4\/5:focus{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .lg\:focus\:inset-1\/6:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:focus\:inset-2\/6:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-3\/6:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-4\/6:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-5\/6:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:focus\:inset-1\/12:focus{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .lg\:focus\:inset-2\/12:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:focus\:inset-3\/12:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .lg\:focus\:inset-4\/12:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-5\/12:focus{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .lg\:focus\:inset-6\/12:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-7\/12:focus{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .lg\:focus\:inset-8\/12:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-9\/12:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .lg\:focus\:inset-10\/12:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:focus\:inset-11\/12:focus{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .lg\:focus\:inset-full:focus{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .lg\:focus\:inset-y-0:focus{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .lg\:focus\:inset-x-0:focus{
    right     : 0 !important;
    left     : 0 !important;
  }

  .lg\:focus\:inset-y-1:focus{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .lg\:focus\:inset-x-1:focus{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .lg\:focus\:inset-y-2:focus{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .lg\:focus\:inset-x-2:focus{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .lg\:focus\:inset-y-3:focus{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .lg\:focus\:inset-x-3:focus{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .lg\:focus\:inset-y-4:focus{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .lg\:focus\:inset-x-4:focus{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .lg\:focus\:inset-y-5:focus{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .lg\:focus\:inset-x-5:focus{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .lg\:focus\:inset-y-6:focus{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .lg\:focus\:inset-x-6:focus{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .lg\:focus\:inset-y-7:focus{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .lg\:focus\:inset-x-7:focus{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .lg\:focus\:inset-y-8:focus{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .lg\:focus\:inset-x-8:focus{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .lg\:focus\:inset-y-9:focus{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .lg\:focus\:inset-x-9:focus{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .lg\:focus\:inset-y-10:focus{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .lg\:focus\:inset-x-10:focus{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .lg\:focus\:inset-y-11:focus{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .lg\:focus\:inset-x-11:focus{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .lg\:focus\:inset-y-12:focus{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .lg\:focus\:inset-x-12:focus{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .lg\:focus\:inset-y-13:focus{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .lg\:focus\:inset-x-13:focus{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .lg\:focus\:inset-y-14:focus{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .lg\:focus\:inset-x-14:focus{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .lg\:focus\:inset-y-15:focus{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .lg\:focus\:inset-x-15:focus{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .lg\:focus\:inset-y-16:focus{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .lg\:focus\:inset-x-16:focus{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .lg\:focus\:inset-y-20:focus{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .lg\:focus\:inset-x-20:focus{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .lg\:focus\:inset-y-24:focus{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .lg\:focus\:inset-x-24:focus{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .lg\:focus\:inset-y-28:focus{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .lg\:focus\:inset-x-28:focus{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .lg\:focus\:inset-y-32:focus{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .lg\:focus\:inset-x-32:focus{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .lg\:focus\:inset-y-36:focus{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .lg\:focus\:inset-x-36:focus{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .lg\:focus\:inset-y-40:focus{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .lg\:focus\:inset-x-40:focus{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .lg\:focus\:inset-y-44:focus{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .lg\:focus\:inset-x-44:focus{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .lg\:focus\:inset-y-48:focus{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .lg\:focus\:inset-x-48:focus{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .lg\:focus\:inset-y-52:focus{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .lg\:focus\:inset-x-52:focus{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .lg\:focus\:inset-y-56:focus{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .lg\:focus\:inset-x-56:focus{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .lg\:focus\:inset-y-60:focus{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .lg\:focus\:inset-x-60:focus{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .lg\:focus\:inset-y-64:focus{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .lg\:focus\:inset-x-64:focus{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .lg\:focus\:inset-y-72:focus{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .lg\:focus\:inset-x-72:focus{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .lg\:focus\:inset-y-80:focus{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .lg\:focus\:inset-x-80:focus{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .lg\:focus\:inset-y-96:focus{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .lg\:focus\:inset-x-96:focus{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .lg\:focus\:inset-y-auto:focus{
    top     : auto !important;
    bottom     : auto !important;
  }

  .lg\:focus\:inset-x-auto:focus{
    right     : auto !important;
    left     : auto !important;
  }

  .lg\:focus\:inset-y-px:focus{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .lg\:focus\:inset-x-px:focus{
    right     : 1px !important;
    left     : 1px !important;
  }

  .lg\:focus\:inset-y-0\.5:focus{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .lg\:focus\:inset-x-0\.5:focus{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .lg\:focus\:inset-y-1\.5:focus{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .lg\:focus\:inset-x-1\.5:focus{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .lg\:focus\:inset-y-2\.5:focus{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .lg\:focus\:inset-x-2\.5:focus{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .lg\:focus\:inset-y-3\.5:focus{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .lg\:focus\:inset-x-3\.5:focus{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .lg\:focus\:inset-y-1\/2:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:focus\:inset-x-1\/2:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-y-1\/3:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:inset-x-1\/3:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-y-2\/3:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:inset-x-2\/3:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-y-1\/4:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .lg\:focus\:inset-x-1\/4:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .lg\:focus\:inset-y-2\/4:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:focus\:inset-x-2\/4:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-y-3\/4:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .lg\:focus\:inset-x-3\/4:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .lg\:focus\:inset-y-1\/5:focus{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .lg\:focus\:inset-x-1\/5:focus{
    right     : 20% !important;
    left     : 20% !important;
  }

  .lg\:focus\:inset-y-2\/5:focus{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .lg\:focus\:inset-x-2\/5:focus{
    right     : 40% !important;
    left     : 40% !important;
  }

  .lg\:focus\:inset-y-3\/5:focus{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .lg\:focus\:inset-x-3\/5:focus{
    right     : 60% !important;
    left     : 60% !important;
  }

  .lg\:focus\:inset-y-4\/5:focus{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .lg\:focus\:inset-x-4\/5:focus{
    right     : 80% !important;
    left     : 80% !important;
  }

  .lg\:focus\:inset-y-1\/6:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .lg\:focus\:inset-x-1\/6:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:focus\:inset-y-2\/6:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:inset-x-2\/6:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-y-3\/6:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:focus\:inset-x-3\/6:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-y-4\/6:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:inset-x-4\/6:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-y-5\/6:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .lg\:focus\:inset-x-5\/6:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:focus\:inset-y-1\/12:focus{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .lg\:focus\:inset-x-1\/12:focus{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .lg\:focus\:inset-y-2\/12:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .lg\:focus\:inset-x-2\/12:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .lg\:focus\:inset-y-3\/12:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .lg\:focus\:inset-x-3\/12:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .lg\:focus\:inset-y-4\/12:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:inset-x-4\/12:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .lg\:focus\:inset-y-5\/12:focus{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .lg\:focus\:inset-x-5\/12:focus{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .lg\:focus\:inset-y-6\/12:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .lg\:focus\:inset-x-6\/12:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .lg\:focus\:inset-y-7\/12:focus{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .lg\:focus\:inset-x-7\/12:focus{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .lg\:focus\:inset-y-8\/12:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:inset-x-8\/12:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .lg\:focus\:inset-y-9\/12:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .lg\:focus\:inset-x-9\/12:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .lg\:focus\:inset-y-10\/12:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .lg\:focus\:inset-x-10\/12:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .lg\:focus\:inset-y-11\/12:focus{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .lg\:focus\:inset-x-11\/12:focus{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .lg\:focus\:inset-y-full:focus{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .lg\:focus\:inset-x-full:focus{
    right     : 100% !important;
    left     : 100% !important;
  }

  .lg\:focus\:top-0:focus{
    top     : 0 !important;
  }

  .lg\:focus\:right-0:focus{
    right     : 0 !important;
  }

  .lg\:focus\:bottom-0:focus{
    bottom     : 0 !important;
  }

  .lg\:focus\:left-0:focus{
    left     : 0 !important;
  }

  .lg\:focus\:top-1:focus{
    top     : 0.25rem !important;
  }

  .lg\:focus\:right-1:focus{
    right     : 0.25rem !important;
  }

  .lg\:focus\:bottom-1:focus{
    bottom     : 0.25rem !important;
  }

  .lg\:focus\:left-1:focus{
    left     : 0.25rem !important;
  }

  .lg\:focus\:top-2:focus{
    top     : 0.5rem !important;
  }

  .lg\:focus\:right-2:focus{
    right     : 0.5rem !important;
  }

  .lg\:focus\:bottom-2:focus{
    bottom     : 0.5rem !important;
  }

  .lg\:focus\:left-2:focus{
    left     : 0.5rem !important;
  }

  .lg\:focus\:top-3:focus{
    top     : 0.75rem !important;
  }

  .lg\:focus\:right-3:focus{
    right     : 0.75rem !important;
  }

  .lg\:focus\:bottom-3:focus{
    bottom     : 0.75rem !important;
  }

  .lg\:focus\:left-3:focus{
    left     : 0.75rem !important;
  }

  .lg\:focus\:top-4:focus{
    top     : 1rem !important;
  }

  .lg\:focus\:right-4:focus{
    right     : 1rem !important;
  }

  .lg\:focus\:bottom-4:focus{
    bottom     : 1rem !important;
  }

  .lg\:focus\:left-4:focus{
    left     : 1rem !important;
  }

  .lg\:focus\:top-5:focus{
    top     : 1.25rem !important;
  }

  .lg\:focus\:right-5:focus{
    right     : 1.25rem !important;
  }

  .lg\:focus\:bottom-5:focus{
    bottom     : 1.25rem !important;
  }

  .lg\:focus\:left-5:focus{
    left     : 1.25rem !important;
  }

  .lg\:focus\:top-6:focus{
    top     : 1.5rem !important;
  }

  .lg\:focus\:right-6:focus{
    right     : 1.5rem !important;
  }

  .lg\:focus\:bottom-6:focus{
    bottom     : 1.5rem !important;
  }

  .lg\:focus\:left-6:focus{
    left     : 1.5rem !important;
  }

  .lg\:focus\:top-7:focus{
    top     : 1.75rem !important;
  }

  .lg\:focus\:right-7:focus{
    right     : 1.75rem !important;
  }

  .lg\:focus\:bottom-7:focus{
    bottom     : 1.75rem !important;
  }

  .lg\:focus\:left-7:focus{
    left     : 1.75rem !important;
  }

  .lg\:focus\:top-8:focus{
    top     : 2rem !important;
  }

  .lg\:focus\:right-8:focus{
    right     : 2rem !important;
  }

  .lg\:focus\:bottom-8:focus{
    bottom     : 2rem !important;
  }

  .lg\:focus\:left-8:focus{
    left     : 2rem !important;
  }

  .lg\:focus\:top-9:focus{
    top     : 2.25rem !important;
  }

  .lg\:focus\:right-9:focus{
    right     : 2.25rem !important;
  }

  .lg\:focus\:bottom-9:focus{
    bottom     : 2.25rem !important;
  }

  .lg\:focus\:left-9:focus{
    left     : 2.25rem !important;
  }

  .lg\:focus\:top-10:focus{
    top     : 2.5rem !important;
  }

  .lg\:focus\:right-10:focus{
    right     : 2.5rem !important;
  }

  .lg\:focus\:bottom-10:focus{
    bottom     : 2.5rem !important;
  }

  .lg\:focus\:left-10:focus{
    left     : 2.5rem !important;
  }

  .lg\:focus\:top-11:focus{
    top     : 2.75rem !important;
  }

  .lg\:focus\:right-11:focus{
    right     : 2.75rem !important;
  }

  .lg\:focus\:bottom-11:focus{
    bottom     : 2.75rem !important;
  }

  .lg\:focus\:left-11:focus{
    left     : 2.75rem !important;
  }

  .lg\:focus\:top-12:focus{
    top     : 3rem !important;
  }

  .lg\:focus\:right-12:focus{
    right     : 3rem !important;
  }

  .lg\:focus\:bottom-12:focus{
    bottom     : 3rem !important;
  }

  .lg\:focus\:left-12:focus{
    left     : 3rem !important;
  }

  .lg\:focus\:top-13:focus{
    top     : 3.25rem !important;
  }

  .lg\:focus\:right-13:focus{
    right     : 3.25rem !important;
  }

  .lg\:focus\:bottom-13:focus{
    bottom     : 3.25rem !important;
  }

  .lg\:focus\:left-13:focus{
    left     : 3.25rem !important;
  }

  .lg\:focus\:top-14:focus{
    top     : 3.5rem !important;
  }

  .lg\:focus\:right-14:focus{
    right     : 3.5rem !important;
  }

  .lg\:focus\:bottom-14:focus{
    bottom     : 3.5rem !important;
  }

  .lg\:focus\:left-14:focus{
    left     : 3.5rem !important;
  }

  .lg\:focus\:top-15:focus{
    top     : 3.75rem !important;
  }

  .lg\:focus\:right-15:focus{
    right     : 3.75rem !important;
  }

  .lg\:focus\:bottom-15:focus{
    bottom     : 3.75rem !important;
  }

  .lg\:focus\:left-15:focus{
    left     : 3.75rem !important;
  }

  .lg\:focus\:top-16:focus{
    top     : 4rem !important;
  }

  .lg\:focus\:right-16:focus{
    right     : 4rem !important;
  }

  .lg\:focus\:bottom-16:focus{
    bottom     : 4rem !important;
  }

  .lg\:focus\:left-16:focus{
    left     : 4rem !important;
  }

  .lg\:focus\:top-20:focus{
    top     : 5rem !important;
  }

  .lg\:focus\:right-20:focus{
    right     : 5rem !important;
  }

  .lg\:focus\:bottom-20:focus{
    bottom     : 5rem !important;
  }

  .lg\:focus\:left-20:focus{
    left     : 5rem !important;
  }

  .lg\:focus\:top-24:focus{
    top     : 6rem !important;
  }

  .lg\:focus\:right-24:focus{
    right     : 6rem !important;
  }

  .lg\:focus\:bottom-24:focus{
    bottom     : 6rem !important;
  }

  .lg\:focus\:left-24:focus{
    left     : 6rem !important;
  }

  .lg\:focus\:top-28:focus{
    top     : 7rem !important;
  }

  .lg\:focus\:right-28:focus{
    right     : 7rem !important;
  }

  .lg\:focus\:bottom-28:focus{
    bottom     : 7rem !important;
  }

  .lg\:focus\:left-28:focus{
    left     : 7rem !important;
  }

  .lg\:focus\:top-32:focus{
    top     : 8rem !important;
  }

  .lg\:focus\:right-32:focus{
    right     : 8rem !important;
  }

  .lg\:focus\:bottom-32:focus{
    bottom     : 8rem !important;
  }

  .lg\:focus\:left-32:focus{
    left     : 8rem !important;
  }

  .lg\:focus\:top-36:focus{
    top     : 9rem !important;
  }

  .lg\:focus\:right-36:focus{
    right     : 9rem !important;
  }

  .lg\:focus\:bottom-36:focus{
    bottom     : 9rem !important;
  }

  .lg\:focus\:left-36:focus{
    left     : 9rem !important;
  }

  .lg\:focus\:top-40:focus{
    top     : 10rem !important;
  }

  .lg\:focus\:right-40:focus{
    right     : 10rem !important;
  }

  .lg\:focus\:bottom-40:focus{
    bottom     : 10rem !important;
  }

  .lg\:focus\:left-40:focus{
    left     : 10rem !important;
  }

  .lg\:focus\:top-44:focus{
    top     : 11rem !important;
  }

  .lg\:focus\:right-44:focus{
    right     : 11rem !important;
  }

  .lg\:focus\:bottom-44:focus{
    bottom     : 11rem !important;
  }

  .lg\:focus\:left-44:focus{
    left     : 11rem !important;
  }

  .lg\:focus\:top-48:focus{
    top     : 12rem !important;
  }

  .lg\:focus\:right-48:focus{
    right     : 12rem !important;
  }

  .lg\:focus\:bottom-48:focus{
    bottom     : 12rem !important;
  }

  .lg\:focus\:left-48:focus{
    left     : 12rem !important;
  }

  .lg\:focus\:top-52:focus{
    top     : 13rem !important;
  }

  .lg\:focus\:right-52:focus{
    right     : 13rem !important;
  }

  .lg\:focus\:bottom-52:focus{
    bottom     : 13rem !important;
  }

  .lg\:focus\:left-52:focus{
    left     : 13rem !important;
  }

  .lg\:focus\:top-56:focus{
    top     : 14rem !important;
  }

  .lg\:focus\:right-56:focus{
    right     : 14rem !important;
  }

  .lg\:focus\:bottom-56:focus{
    bottom     : 14rem !important;
  }

  .lg\:focus\:left-56:focus{
    left     : 14rem !important;
  }

  .lg\:focus\:top-60:focus{
    top     : 15rem !important;
  }

  .lg\:focus\:right-60:focus{
    right     : 15rem !important;
  }

  .lg\:focus\:bottom-60:focus{
    bottom     : 15rem !important;
  }

  .lg\:focus\:left-60:focus{
    left     : 15rem !important;
  }

  .lg\:focus\:top-64:focus{
    top     : 16rem !important;
  }

  .lg\:focus\:right-64:focus{
    right     : 16rem !important;
  }

  .lg\:focus\:bottom-64:focus{
    bottom     : 16rem !important;
  }

  .lg\:focus\:left-64:focus{
    left     : 16rem !important;
  }

  .lg\:focus\:top-72:focus{
    top     : 18rem !important;
  }

  .lg\:focus\:right-72:focus{
    right     : 18rem !important;
  }

  .lg\:focus\:bottom-72:focus{
    bottom     : 18rem !important;
  }

  .lg\:focus\:left-72:focus{
    left     : 18rem !important;
  }

  .lg\:focus\:top-80:focus{
    top     : 20rem !important;
  }

  .lg\:focus\:right-80:focus{
    right     : 20rem !important;
  }

  .lg\:focus\:bottom-80:focus{
    bottom     : 20rem !important;
  }

  .lg\:focus\:left-80:focus{
    left     : 20rem !important;
  }

  .lg\:focus\:top-96:focus{
    top     : 24rem !important;
  }

  .lg\:focus\:right-96:focus{
    right     : 24rem !important;
  }

  .lg\:focus\:bottom-96:focus{
    bottom     : 24rem !important;
  }

  .lg\:focus\:left-96:focus{
    left     : 24rem !important;
  }

  .lg\:focus\:top-auto:focus{
    top     : auto !important;
  }

  .lg\:focus\:right-auto:focus{
    right     : auto !important;
  }

  .lg\:focus\:bottom-auto:focus{
    bottom     : auto !important;
  }

  .lg\:focus\:left-auto:focus{
    left     : auto !important;
  }

  .lg\:focus\:top-px:focus{
    top     : 1px !important;
  }

  .lg\:focus\:right-px:focus{
    right     : 1px !important;
  }

  .lg\:focus\:bottom-px:focus{
    bottom     : 1px !important;
  }

  .lg\:focus\:left-px:focus{
    left     : 1px !important;
  }

  .lg\:focus\:top-0\.5:focus{
    top     : 0.125rem !important;
  }

  .lg\:focus\:right-0\.5:focus{
    right     : 0.125rem !important;
  }

  .lg\:focus\:bottom-0\.5:focus{
    bottom     : 0.125rem !important;
  }

  .lg\:focus\:left-0\.5:focus{
    left     : 0.125rem !important;
  }

  .lg\:focus\:top-1\.5:focus{
    top     : 0.375rem !important;
  }

  .lg\:focus\:right-1\.5:focus{
    right     : 0.375rem !important;
  }

  .lg\:focus\:bottom-1\.5:focus{
    bottom     : 0.375rem !important;
  }

  .lg\:focus\:left-1\.5:focus{
    left     : 0.375rem !important;
  }

  .lg\:focus\:top-2\.5:focus{
    top     : 0.625rem !important;
  }

  .lg\:focus\:right-2\.5:focus{
    right     : 0.625rem !important;
  }

  .lg\:focus\:bottom-2\.5:focus{
    bottom     : 0.625rem !important;
  }

  .lg\:focus\:left-2\.5:focus{
    left     : 0.625rem !important;
  }

  .lg\:focus\:top-3\.5:focus{
    top     : 0.875rem !important;
  }

  .lg\:focus\:right-3\.5:focus{
    right     : 0.875rem !important;
  }

  .lg\:focus\:bottom-3\.5:focus{
    bottom     : 0.875rem !important;
  }

  .lg\:focus\:left-3\.5:focus{
    left     : 0.875rem !important;
  }

  .lg\:focus\:top-1\/2:focus{
    top     : 50% !important;
  }

  .lg\:focus\:right-1\/2:focus{
    right     : 50% !important;
  }

  .lg\:focus\:bottom-1\/2:focus{
    bottom     : 50% !important;
  }

  .lg\:focus\:left-1\/2:focus{
    left     : 50% !important;
  }

  .lg\:focus\:top-1\/3:focus{
    top     : 33.333333% !important;
  }

  .lg\:focus\:right-1\/3:focus{
    right     : 33.333333% !important;
  }

  .lg\:focus\:bottom-1\/3:focus{
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:left-1\/3:focus{
    left     : 33.333333% !important;
  }

  .lg\:focus\:top-2\/3:focus{
    top     : 66.666667% !important;
  }

  .lg\:focus\:right-2\/3:focus{
    right     : 66.666667% !important;
  }

  .lg\:focus\:bottom-2\/3:focus{
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:left-2\/3:focus{
    left     : 66.666667% !important;
  }

  .lg\:focus\:top-1\/4:focus{
    top     : 25% !important;
  }

  .lg\:focus\:right-1\/4:focus{
    right     : 25% !important;
  }

  .lg\:focus\:bottom-1\/4:focus{
    bottom     : 25% !important;
  }

  .lg\:focus\:left-1\/4:focus{
    left     : 25% !important;
  }

  .lg\:focus\:top-2\/4:focus{
    top     : 50% !important;
  }

  .lg\:focus\:right-2\/4:focus{
    right     : 50% !important;
  }

  .lg\:focus\:bottom-2\/4:focus{
    bottom     : 50% !important;
  }

  .lg\:focus\:left-2\/4:focus{
    left     : 50% !important;
  }

  .lg\:focus\:top-3\/4:focus{
    top     : 75% !important;
  }

  .lg\:focus\:right-3\/4:focus{
    right     : 75% !important;
  }

  .lg\:focus\:bottom-3\/4:focus{
    bottom     : 75% !important;
  }

  .lg\:focus\:left-3\/4:focus{
    left     : 75% !important;
  }

  .lg\:focus\:top-1\/5:focus{
    top     : 20% !important;
  }

  .lg\:focus\:right-1\/5:focus{
    right     : 20% !important;
  }

  .lg\:focus\:bottom-1\/5:focus{
    bottom     : 20% !important;
  }

  .lg\:focus\:left-1\/5:focus{
    left     : 20% !important;
  }

  .lg\:focus\:top-2\/5:focus{
    top     : 40% !important;
  }

  .lg\:focus\:right-2\/5:focus{
    right     : 40% !important;
  }

  .lg\:focus\:bottom-2\/5:focus{
    bottom     : 40% !important;
  }

  .lg\:focus\:left-2\/5:focus{
    left     : 40% !important;
  }

  .lg\:focus\:top-3\/5:focus{
    top     : 60% !important;
  }

  .lg\:focus\:right-3\/5:focus{
    right     : 60% !important;
  }

  .lg\:focus\:bottom-3\/5:focus{
    bottom     : 60% !important;
  }

  .lg\:focus\:left-3\/5:focus{
    left     : 60% !important;
  }

  .lg\:focus\:top-4\/5:focus{
    top     : 80% !important;
  }

  .lg\:focus\:right-4\/5:focus{
    right     : 80% !important;
  }

  .lg\:focus\:bottom-4\/5:focus{
    bottom     : 80% !important;
  }

  .lg\:focus\:left-4\/5:focus{
    left     : 80% !important;
  }

  .lg\:focus\:top-1\/6:focus{
    top     : 16.666667% !important;
  }

  .lg\:focus\:right-1\/6:focus{
    right     : 16.666667% !important;
  }

  .lg\:focus\:bottom-1\/6:focus{
    bottom     : 16.666667% !important;
  }

  .lg\:focus\:left-1\/6:focus{
    left     : 16.666667% !important;
  }

  .lg\:focus\:top-2\/6:focus{
    top     : 33.333333% !important;
  }

  .lg\:focus\:right-2\/6:focus{
    right     : 33.333333% !important;
  }

  .lg\:focus\:bottom-2\/6:focus{
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:left-2\/6:focus{
    left     : 33.333333% !important;
  }

  .lg\:focus\:top-3\/6:focus{
    top     : 50% !important;
  }

  .lg\:focus\:right-3\/6:focus{
    right     : 50% !important;
  }

  .lg\:focus\:bottom-3\/6:focus{
    bottom     : 50% !important;
  }

  .lg\:focus\:left-3\/6:focus{
    left     : 50% !important;
  }

  .lg\:focus\:top-4\/6:focus{
    top     : 66.666667% !important;
  }

  .lg\:focus\:right-4\/6:focus{
    right     : 66.666667% !important;
  }

  .lg\:focus\:bottom-4\/6:focus{
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:left-4\/6:focus{
    left     : 66.666667% !important;
  }

  .lg\:focus\:top-5\/6:focus{
    top     : 83.333333% !important;
  }

  .lg\:focus\:right-5\/6:focus{
    right     : 83.333333% !important;
  }

  .lg\:focus\:bottom-5\/6:focus{
    bottom     : 83.333333% !important;
  }

  .lg\:focus\:left-5\/6:focus{
    left     : 83.333333% !important;
  }

  .lg\:focus\:top-1\/12:focus{
    top     : 8.333333% !important;
  }

  .lg\:focus\:right-1\/12:focus{
    right     : 8.333333% !important;
  }

  .lg\:focus\:bottom-1\/12:focus{
    bottom     : 8.333333% !important;
  }

  .lg\:focus\:left-1\/12:focus{
    left     : 8.333333% !important;
  }

  .lg\:focus\:top-2\/12:focus{
    top     : 16.666667% !important;
  }

  .lg\:focus\:right-2\/12:focus{
    right     : 16.666667% !important;
  }

  .lg\:focus\:bottom-2\/12:focus{
    bottom     : 16.666667% !important;
  }

  .lg\:focus\:left-2\/12:focus{
    left     : 16.666667% !important;
  }

  .lg\:focus\:top-3\/12:focus{
    top     : 25% !important;
  }

  .lg\:focus\:right-3\/12:focus{
    right     : 25% !important;
  }

  .lg\:focus\:bottom-3\/12:focus{
    bottom     : 25% !important;
  }

  .lg\:focus\:left-3\/12:focus{
    left     : 25% !important;
  }

  .lg\:focus\:top-4\/12:focus{
    top     : 33.333333% !important;
  }

  .lg\:focus\:right-4\/12:focus{
    right     : 33.333333% !important;
  }

  .lg\:focus\:bottom-4\/12:focus{
    bottom     : 33.333333% !important;
  }

  .lg\:focus\:left-4\/12:focus{
    left     : 33.333333% !important;
  }

  .lg\:focus\:top-5\/12:focus{
    top     : 41.666667% !important;
  }

  .lg\:focus\:right-5\/12:focus{
    right     : 41.666667% !important;
  }

  .lg\:focus\:bottom-5\/12:focus{
    bottom     : 41.666667% !important;
  }

  .lg\:focus\:left-5\/12:focus{
    left     : 41.666667% !important;
  }

  .lg\:focus\:top-6\/12:focus{
    top     : 50% !important;
  }

  .lg\:focus\:right-6\/12:focus{
    right     : 50% !important;
  }

  .lg\:focus\:bottom-6\/12:focus{
    bottom     : 50% !important;
  }

  .lg\:focus\:left-6\/12:focus{
    left     : 50% !important;
  }

  .lg\:focus\:top-7\/12:focus{
    top     : 58.333333% !important;
  }

  .lg\:focus\:right-7\/12:focus{
    right     : 58.333333% !important;
  }

  .lg\:focus\:bottom-7\/12:focus{
    bottom     : 58.333333% !important;
  }

  .lg\:focus\:left-7\/12:focus{
    left     : 58.333333% !important;
  }

  .lg\:focus\:top-8\/12:focus{
    top     : 66.666667% !important;
  }

  .lg\:focus\:right-8\/12:focus{
    right     : 66.666667% !important;
  }

  .lg\:focus\:bottom-8\/12:focus{
    bottom     : 66.666667% !important;
  }

  .lg\:focus\:left-8\/12:focus{
    left     : 66.666667% !important;
  }

  .lg\:focus\:top-9\/12:focus{
    top     : 75% !important;
  }

  .lg\:focus\:right-9\/12:focus{
    right     : 75% !important;
  }

  .lg\:focus\:bottom-9\/12:focus{
    bottom     : 75% !important;
  }

  .lg\:focus\:left-9\/12:focus{
    left     : 75% !important;
  }

  .lg\:focus\:top-10\/12:focus{
    top     : 83.333333% !important;
  }

  .lg\:focus\:right-10\/12:focus{
    right     : 83.333333% !important;
  }

  .lg\:focus\:bottom-10\/12:focus{
    bottom     : 83.333333% !important;
  }

  .lg\:focus\:left-10\/12:focus{
    left     : 83.333333% !important;
  }

  .lg\:focus\:top-11\/12:focus{
    top     : 91.666667% !important;
  }

  .lg\:focus\:right-11\/12:focus{
    right     : 91.666667% !important;
  }

  .lg\:focus\:bottom-11\/12:focus{
    bottom     : 91.666667% !important;
  }

  .lg\:focus\:left-11\/12:focus{
    left     : 91.666667% !important;
  }

  .lg\:focus\:top-full:focus{
    top     : 100% !important;
  }

  .lg\:focus\:right-full:focus{
    right     : 100% !important;
  }

  .lg\:focus\:bottom-full:focus{
    bottom     : 100% !important;
  }

  .lg\:focus\:left-full:focus{
    left     : 100% !important;
  }

  .lg\:resize-none{
    resize     : none !important;
  }

  .lg\:resize-y{
    resize     : vertical !important;
  }

  .lg\:resize-x{
    resize     : horizontal !important;
  }

  .lg\:resize{
    resize     : both !important;
  }

  .group:hover .lg\:group-hover\:resize-none{
    resize     : none !important;
  }

  .group:hover .lg\:group-hover\:resize-y{
    resize     : vertical !important;
  }

  .group:hover .lg\:group-hover\:resize-x{
    resize     : horizontal !important;
  }

  .group:hover .lg\:group-hover\:resize{
    resize     : both !important;
  }

  .lg\:hover\:resize-none:hover{
    resize     : none !important;
  }

  .lg\:hover\:resize-y:hover{
    resize     : vertical !important;
  }

  .lg\:hover\:resize-x:hover{
    resize     : horizontal !important;
  }

  .lg\:hover\:resize:hover{
    resize     : both !important;
  }

  .lg\:focus\:resize-none:focus{
    resize     : none !important;
  }

  .lg\:focus\:resize-y:focus{
    resize     : vertical !important;
  }

  .lg\:focus\:resize-x:focus{
    resize     : horizontal !important;
  }

  .lg\:focus\:resize:focus{
    resize     : both !important;
  }

  .lg\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .lg\:shadow-none{
    box-shadow     : none !important;
  }

  .lg\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .lg\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .lg\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .lg\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .lg\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .lg\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .lg\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .lg\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .lg\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .lg\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .lg\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .lg\:group-hover\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .lg\:group-hover\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .group:hover .lg\:group-hover\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-none{
    box-shadow     : none !important;
  }

  .group:hover .lg\:group-hover\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .group:hover .lg\:group-hover\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .lg\:hover\:shadow-xs:hover{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:shadow-sm:hover{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:shadow:hover{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:shadow-md:hover{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:shadow-lg:hover{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:shadow-xl:hover{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:hover\:shadow-2xl:hover{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:hover\:shadow-inner:hover{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:shadow-outline:hover{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .lg\:hover\:shadow-none:hover{
    box-shadow     : none !important;
  }

  .lg\:hover\:shadow-solid:hover{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .lg\:hover\:shadow-outline-gray:hover{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-blue:hover{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-teal:hover{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-green:hover{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-yellow:hover{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-orange:hover{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-red:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-pink:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-purple:hover{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .lg\:hover\:shadow-outline-indigo:hover{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .lg\:focus\:shadow-xs:focus{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:shadow-sm:focus{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:shadow:focus{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:shadow-md:focus{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:shadow-lg:focus{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:shadow-xl:focus{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:focus\:shadow-2xl:focus{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:focus\:shadow-inner:focus{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:shadow-outline:focus{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .lg\:focus\:shadow-none:focus{
    box-shadow     : none !important;
  }

  .lg\:focus\:shadow-solid:focus{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .lg\:focus\:shadow-outline-gray:focus{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-blue:focus{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-teal:focus{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-green:focus{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-yellow:focus{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-orange:focus{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-red:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-pink:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-purple:focus{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .lg\:focus\:shadow-outline-indigo:focus{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .lg\:fill-current{
    fill     : currentColor !important;
  }

  .group:hover .lg\:group-hover\:fill-current{
    fill     : currentColor !important;
  }

  .lg\:hover\:fill-current:hover{
    fill     : currentColor !important;
  }

  .lg\:focus\:fill-current:focus{
    fill     : currentColor !important;
  }

  .lg\:stroke-current{
    stroke     : currentColor !important;
  }

  .group:hover .lg\:group-hover\:stroke-current{
    stroke     : currentColor !important;
  }

  .lg\:hover\:stroke-current:hover{
    stroke     : currentColor !important;
  }

  .lg\:focus\:stroke-current:focus{
    stroke     : currentColor !important;
  }

  .lg\:stroke-0{
    stroke-width     : 0 !important;
  }

  .lg\:stroke-1{
    stroke-width     : 1 !important;
  }

  .lg\:stroke-2{
    stroke-width     : 2 !important;
  }

  .group:hover .lg\:group-hover\:stroke-0{
    stroke-width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:stroke-1{
    stroke-width     : 1 !important;
  }

  .group:hover .lg\:group-hover\:stroke-2{
    stroke-width     : 2 !important;
  }

  .lg\:hover\:stroke-0:hover{
    stroke-width     : 0 !important;
  }

  .lg\:hover\:stroke-1:hover{
    stroke-width     : 1 !important;
  }

  .lg\:hover\:stroke-2:hover{
    stroke-width     : 2 !important;
  }

  .lg\:focus\:stroke-0:focus{
    stroke-width     : 0 !important;
  }

  .lg\:focus\:stroke-1:focus{
    stroke-width     : 1 !important;
  }

  .lg\:focus\:stroke-2:focus{
    stroke-width     : 2 !important;
  }

  .lg\:table-auto{
    table-layout     : auto !important;
  }

  .lg\:table-fixed{
    table-layout     : fixed !important;
  }

  .group:hover .lg\:group-hover\:table-auto{
    table-layout     : auto !important;
  }

  .group:hover .lg\:group-hover\:table-fixed{
    table-layout     : fixed !important;
  }

  .lg\:hover\:table-auto:hover{
    table-layout     : auto !important;
  }

  .lg\:hover\:table-fixed:hover{
    table-layout     : fixed !important;
  }

  .lg\:focus\:table-auto:focus{
    table-layout     : auto !important;
  }

  .lg\:focus\:table-fixed:focus{
    table-layout     : fixed !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;
  }

  .group:hover .lg\:group-hover\:text-left{
    text-align     : left !important;
  }

  .group:hover .lg\:group-hover\:text-center{
    text-align     : center !important;
  }

  .group:hover .lg\:group-hover\:text-right{
    text-align     : right !important;
  }

  .group:hover .lg\:group-hover\:text-justify{
    text-align     : justify !important;
  }

  .lg\:hover\:text-left:hover{
    text-align     : left !important;
  }

  .lg\:hover\:text-center:hover{
    text-align     : center !important;
  }

  .lg\:hover\:text-right:hover{
    text-align     : right !important;
  }

  .lg\:hover\:text-justify:hover{
    text-align     : justify !important;
  }

  .lg\:focus\:text-left:focus{
    text-align     : left !important;
  }

  .lg\:focus\:text-center:focus{
    text-align     : center !important;
  }

  .lg\:focus\:text-right:focus{
    text-align     : right !important;
  }

  .lg\:focus\:text-justify:focus{
    text-align     : justify !important;
  }

  .lg\:text-transparent{
    color     : transparent !important;
  }

  .lg\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .lg\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .lg\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .lg\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .lg\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .lg\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .lg\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .lg\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .lg\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .lg\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .lg\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .lg\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .lg\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .lg\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .lg\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .lg\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .lg\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .lg\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .lg\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .lg\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .lg\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .lg\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .lg\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .lg\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .lg\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .lg\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .lg\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .lg\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .lg\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .lg\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .lg\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .lg\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .lg\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .lg\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .lg\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .lg\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .lg\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .lg\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .lg\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .lg\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .lg\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .lg\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .lg\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .lg\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .lg\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .lg\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .lg\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .lg\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .lg\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .lg\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .lg\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .lg\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .lg\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .lg\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .lg\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .lg\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .lg\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .lg\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .lg\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .lg\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .lg\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .lg\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .lg\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .lg\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .lg\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .lg\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .lg\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .lg\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .lg\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .lg\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .lg\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .lg\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .lg\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .lg\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .lg\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .lg\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .lg\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .lg\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .lg\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .lg\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-transparent{
    color     : transparent !important;
  }

  .group:hover .lg\:group-hover\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .group:hover .lg\:group-hover\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-transparent:hover{
    color     : transparent !important;
  }

  .lg\:hover\:text-white:hover{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-black:hover{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-cool-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-100:hover{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-200:hover{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-400:hover{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-500:hover{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-600:hover{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-700:hover{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-800:hover{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-red-900:hover{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-50:hover{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-100:hover{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-200:hover{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-300:hover{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-400:hover{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-500:hover{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-600:hover{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-700:hover{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-800:hover{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-orange-900:hover{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-100:hover{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-200:hover{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-300:hover{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-400:hover{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-500:hover{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-600:hover{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-700:hover{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-800:hover{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-yellow-900:hover{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-50:hover{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-100:hover{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-200:hover{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-300:hover{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-400:hover{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-500:hover{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-600:hover{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-700:hover{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-800:hover{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-green-900:hover{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-50:hover{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-100:hover{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-200:hover{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-300:hover{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-400:hover{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-500:hover{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-600:hover{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-700:hover{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-800:hover{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-teal-900:hover{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-50:hover{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-100:hover{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-200:hover{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-300:hover{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-400:hover{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-500:hover{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-600:hover{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-700:hover{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-800:hover{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-900:hover{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-50:hover{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-100:hover{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-200:hover{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-300:hover{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-400:hover{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-500:hover{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-600:hover{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-700:hover{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-800:hover{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-indigo-900:hover{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-50:hover{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-100:hover{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-200:hover{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-300:hover{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-400:hover{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-500:hover{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-600:hover{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-700:hover{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-800:hover{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-purple-900:hover{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-100:hover{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-200:hover{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-400:hover{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-500:hover{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-600:hover{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-700:hover{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-800:hover{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-pink-900:hover{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .lg\:hover\:text-blue-brand:hover{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-transparent:focus{
    color     : transparent !important;
  }

  .lg\:focus\:text-white:focus{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-black:focus{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-cool-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-100:focus{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-200:focus{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-400:focus{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-500:focus{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-600:focus{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-700:focus{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-800:focus{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-red-900:focus{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-50:focus{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-100:focus{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-200:focus{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-300:focus{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-400:focus{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-500:focus{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-600:focus{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-700:focus{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-800:focus{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-orange-900:focus{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-100:focus{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-200:focus{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-300:focus{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-400:focus{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-500:focus{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-600:focus{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-700:focus{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-800:focus{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-yellow-900:focus{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-50:focus{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-100:focus{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-200:focus{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-300:focus{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-400:focus{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-500:focus{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-600:focus{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-700:focus{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-800:focus{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-green-900:focus{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-50:focus{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-100:focus{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-200:focus{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-300:focus{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-400:focus{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-500:focus{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-600:focus{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-700:focus{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-800:focus{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-teal-900:focus{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-50:focus{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-100:focus{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-200:focus{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-300:focus{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-400:focus{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-500:focus{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-600:focus{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-700:focus{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-800:focus{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-900:focus{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-50:focus{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-100:focus{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-200:focus{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-300:focus{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-400:focus{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-500:focus{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-600:focus{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-700:focus{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-800:focus{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-indigo-900:focus{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-50:focus{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-100:focus{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-200:focus{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-300:focus{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-400:focus{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-500:focus{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-600:focus{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-700:focus{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-800:focus{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-purple-900:focus{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-100:focus{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-200:focus{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-400:focus{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-500:focus{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-600:focus{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-700:focus{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-800:focus{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-pink-900:focus{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .lg\:focus\:text-blue-brand:focus{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .lg\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .lg\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .lg\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .lg\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .lg\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .group:hover .lg\:group-hover\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .group:hover .lg\:group-hover\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .group:hover .lg\:group-hover\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .group:hover .lg\:group-hover\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .group:hover .lg\:group-hover\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .lg\:hover\:text-opacity-0:hover{
    --text-opacity     : 0 !important;
  }

  .lg\:hover\:text-opacity-25:hover{
    --text-opacity     : 0.25 !important;
  }

  .lg\:hover\:text-opacity-50:hover{
    --text-opacity     : 0.5 !important;
  }

  .lg\:hover\:text-opacity-75:hover{
    --text-opacity     : 0.75 !important;
  }

  .lg\:hover\:text-opacity-100:hover{
    --text-opacity     : 1 !important;
  }

  .lg\:focus\:text-opacity-0:focus{
    --text-opacity     : 0 !important;
  }

  .lg\:focus\:text-opacity-25:focus{
    --text-opacity     : 0.25 !important;
  }

  .lg\:focus\:text-opacity-50:focus{
    --text-opacity     : 0.5 !important;
  }

  .lg\:focus\:text-opacity-75:focus{
    --text-opacity     : 0.75 !important;
  }

  .lg\:focus\:text-opacity-100:focus{
    --text-opacity     : 1 !important;
  }

  .lg\:italic{
    font-style     : italic !important;
  }

  .lg\:not-italic{
    font-style     : normal !important;
  }

  .group:hover .lg\:group-hover\:italic{
    font-style     : italic !important;
  }

  .group:hover .lg\:group-hover\:not-italic{
    font-style     : normal !important;
  }

  .lg\:hover\:italic:hover{
    font-style     : italic !important;
  }

  .lg\:hover\:not-italic:hover{
    font-style     : normal !important;
  }

  .lg\:focus\:italic:focus{
    font-style     : italic !important;
  }

  .lg\:focus\:not-italic:focus{
    font-style     : normal !important;
  }

  .lg\:uppercase{
    text-transform     : uppercase !important;
  }

  .lg\:lowercase{
    text-transform     : lowercase !important;
  }

  .lg\:capitalize{
    text-transform     : capitalize !important;
  }

  .lg\:normal-case{
    text-transform     : none !important;
  }

  .group:hover .lg\:group-hover\:uppercase{
    text-transform     : uppercase !important;
  }

  .group:hover .lg\:group-hover\:lowercase{
    text-transform     : lowercase !important;
  }

  .group:hover .lg\:group-hover\:capitalize{
    text-transform     : capitalize !important;
  }

  .group:hover .lg\:group-hover\:normal-case{
    text-transform     : none !important;
  }

  .lg\:hover\:uppercase:hover{
    text-transform     : uppercase !important;
  }

  .lg\:hover\:lowercase:hover{
    text-transform     : lowercase !important;
  }

  .lg\:hover\:capitalize:hover{
    text-transform     : capitalize !important;
  }

  .lg\:hover\:normal-case:hover{
    text-transform     : none !important;
  }

  .lg\:focus\:uppercase:focus{
    text-transform     : uppercase !important;
  }

  .lg\:focus\:lowercase:focus{
    text-transform     : lowercase !important;
  }

  .lg\:focus\:capitalize:focus{
    text-transform     : capitalize !important;
  }

  .lg\:focus\:normal-case:focus{
    text-transform     : none !important;
  }

  .lg\:underline{
    text-decoration     : underline !important;
  }

  .lg\:line-through{
    text-decoration     : line-through !important;
  }

  .lg\:no-underline{
    text-decoration     : none !important;
  }

  .group:hover .lg\:group-hover\:underline{
    text-decoration     : underline !important;
  }

  .group:hover .lg\:group-hover\:line-through{
    text-decoration     : line-through !important;
  }

  .group:hover .lg\:group-hover\:no-underline{
    text-decoration     : none !important;
  }

  .lg\:hover\:underline:hover{
    text-decoration     : underline !important;
  }

  .lg\:hover\:line-through:hover{
    text-decoration     : line-through !important;
  }

  .lg\:hover\:no-underline:hover{
    text-decoration     : none !important;
  }

  .lg\:focus\:underline:focus{
    text-decoration     : underline !important;
  }

  .lg\:focus\:line-through:focus{
    text-decoration     : line-through !important;
  }

  .lg\:focus\:no-underline:focus{
    text-decoration     : none !important;
  }

  .lg\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .lg\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .group:hover .lg\:group-hover\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .group:hover .lg\:group-hover\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .lg\:hover\:antialiased:hover{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .lg\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .lg\:focus\:antialiased:focus{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .lg\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !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;
  }

  .group:hover .lg\:group-hover\:tracking-tighter{
    letter-spacing     : -0.05em !important;
  }

  .group:hover .lg\:group-hover\:tracking-tight{
    letter-spacing     : -0.025em !important;
  }

  .group:hover .lg\:group-hover\:tracking-normal{
    letter-spacing     : 0 !important;
  }

  .group:hover .lg\:group-hover\:tracking-wide{
    letter-spacing     : 0.025em !important;
  }

  .group:hover .lg\:group-hover\:tracking-wider{
    letter-spacing     : 0.05em !important;
  }

  .group:hover .lg\:group-hover\:tracking-widest{
    letter-spacing     : 0.1em !important;
  }

  .lg\:hover\:tracking-tighter:hover{
    letter-spacing     : -0.05em !important;
  }

  .lg\:hover\:tracking-tight:hover{
    letter-spacing     : -0.025em !important;
  }

  .lg\:hover\:tracking-normal:hover{
    letter-spacing     : 0 !important;
  }

  .lg\:hover\:tracking-wide:hover{
    letter-spacing     : 0.025em !important;
  }

  .lg\:hover\:tracking-wider:hover{
    letter-spacing     : 0.05em !important;
  }

  .lg\:hover\:tracking-widest:hover{
    letter-spacing     : 0.1em !important;
  }

  .lg\:focus\:tracking-tighter:focus{
    letter-spacing     : -0.05em !important;
  }

  .lg\:focus\:tracking-tight:focus{
    letter-spacing     : -0.025em !important;
  }

  .lg\:focus\:tracking-normal:focus{
    letter-spacing     : 0 !important;
  }

  .lg\:focus\:tracking-wide:focus{
    letter-spacing     : 0.025em !important;
  }

  .lg\:focus\:tracking-wider:focus{
    letter-spacing     : 0.05em !important;
  }

  .lg\:focus\:tracking-widest:focus{
    letter-spacing     : 0.1em !important;
  }

  .lg\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .lg\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .lg\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .lg\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .group:hover .lg\:group-hover\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .group:hover .lg\:group-hover\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .group:hover .lg\:group-hover\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .group:hover .lg\:group-hover\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .lg\:hover\:select-none:hover{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .lg\:hover\:select-text:hover{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .lg\:hover\:select-all:hover{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .lg\:hover\:select-auto:hover{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .lg\:focus\:select-none:focus{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .lg\:focus\:select-text:focus{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .lg\:focus\:select-all:focus{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .lg\:focus\:select-auto:focus{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .lg\:align-baseline{
    vertical-align     : baseline !important;
  }

  .lg\:align-top{
    vertical-align     : top !important;
  }

  .lg\:align-middle{
    vertical-align     : middle !important;
  }

  .lg\:align-bottom{
    vertical-align     : bottom !important;
  }

  .lg\:align-text-top{
    vertical-align     : text-top !important;
  }

  .lg\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .group:hover .lg\:group-hover\:align-baseline{
    vertical-align     : baseline !important;
  }

  .group:hover .lg\:group-hover\:align-top{
    vertical-align     : top !important;
  }

  .group:hover .lg\:group-hover\:align-middle{
    vertical-align     : middle !important;
  }

  .group:hover .lg\:group-hover\:align-bottom{
    vertical-align     : bottom !important;
  }

  .group:hover .lg\:group-hover\:align-text-top{
    vertical-align     : text-top !important;
  }

  .group:hover .lg\:group-hover\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .lg\:hover\:align-baseline:hover{
    vertical-align     : baseline !important;
  }

  .lg\:hover\:align-top:hover{
    vertical-align     : top !important;
  }

  .lg\:hover\:align-middle:hover{
    vertical-align     : middle !important;
  }

  .lg\:hover\:align-bottom:hover{
    vertical-align     : bottom !important;
  }

  .lg\:hover\:align-text-top:hover{
    vertical-align     : text-top !important;
  }

  .lg\:hover\:align-text-bottom:hover{
    vertical-align     : text-bottom !important;
  }

  .lg\:focus\:align-baseline:focus{
    vertical-align     : baseline !important;
  }

  .lg\:focus\:align-top:focus{
    vertical-align     : top !important;
  }

  .lg\:focus\:align-middle:focus{
    vertical-align     : middle !important;
  }

  .lg\:focus\:align-bottom:focus{
    vertical-align     : bottom !important;
  }

  .lg\:focus\:align-text-top:focus{
    vertical-align     : text-top !important;
  }

  .lg\:focus\:align-text-bottom:focus{
    vertical-align     : text-bottom !important;
  }

  .lg\:visible{
    visibility     : visible !important;
  }

  .lg\:invisible{
    visibility     : hidden !important;
  }

  .group:hover .lg\:group-hover\:visible{
    visibility     : visible !important;
  }

  .group:hover .lg\:group-hover\:invisible{
    visibility     : hidden !important;
  }

  .lg\:hover\:visible:hover{
    visibility     : visible !important;
  }

  .lg\:hover\:invisible:hover{
    visibility     : hidden !important;
  }

  .lg\:focus\:visible:focus{
    visibility     : visible !important;
  }

  .lg\:focus\:invisible:focus{
    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;
  }

  .group:hover .lg\:group-hover\:whitespace-normal{
    white-space     : normal !important;
  }

  .group:hover .lg\:group-hover\:whitespace-no-wrap{
    white-space     : nowrap !important;
  }

  .group:hover .lg\:group-hover\:whitespace-pre{
    white-space     : pre !important;
  }

  .group:hover .lg\:group-hover\:whitespace-pre-line{
    white-space     : pre-line !important;
  }

  .group:hover .lg\:group-hover\:whitespace-pre-wrap{
    white-space     : pre-wrap !important;
  }

  .lg\:hover\:whitespace-normal:hover{
    white-space     : normal !important;
  }

  .lg\:hover\:whitespace-no-wrap:hover{
    white-space     : nowrap !important;
  }

  .lg\:hover\:whitespace-pre:hover{
    white-space     : pre !important;
  }

  .lg\:hover\:whitespace-pre-line:hover{
    white-space     : pre-line !important;
  }

  .lg\:hover\:whitespace-pre-wrap:hover{
    white-space     : pre-wrap !important;
  }

  .lg\:focus\:whitespace-normal:focus{
    white-space     : normal !important;
  }

  .lg\:focus\:whitespace-no-wrap:focus{
    white-space     : nowrap !important;
  }

  .lg\:focus\:whitespace-pre:focus{
    white-space     : pre !important;
  }

  .lg\:focus\:whitespace-pre-line:focus{
    white-space     : pre-line !important;
  }

  .lg\:focus\:whitespace-pre-wrap:focus{
    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;
  }

  .group:hover .lg\:group-hover\:break-normal{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .group:hover .lg\:group-hover\:break-words{
    overflow-wrap     : break-word !important;
  }

  .group:hover .lg\:group-hover\:break-all{
    word-break     : break-all !important;
  }

  .group:hover .lg\:group-hover\:truncate{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .lg\:hover\:break-normal:hover{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .lg\:hover\:break-words:hover{
    overflow-wrap     : break-word !important;
  }

  .lg\:hover\:break-all:hover{
    word-break     : break-all !important;
  }

  .lg\:hover\:truncate:hover{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .lg\:focus\:break-normal:focus{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .lg\:focus\:break-words:focus{
    overflow-wrap     : break-word !important;
  }

  .lg\:focus\:break-all:focus{
    word-break     : break-all !important;
  }

  .lg\:focus\:truncate:focus{
    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-20{
    width     : 5rem !important;
  }

  .lg\:w-24{
    width     : 6rem !important;
  }

  .lg\:w-28{
    width     : 7rem !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-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-96{
    width     : 24rem !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-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;
  }

  .group:hover .lg\:group-hover\:w-0{
    width     : 0 !important;
  }

  .group:hover .lg\:group-hover\:w-1{
    width     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:w-2{
    width     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:w-3{
    width     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:w-4{
    width     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:w-5{
    width     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:w-6{
    width     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:w-7{
    width     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:w-8{
    width     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:w-9{
    width     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:w-10{
    width     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:w-11{
    width     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:w-12{
    width     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:w-13{
    width     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:w-14{
    width     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:w-15{
    width     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:w-16{
    width     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:w-20{
    width     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:w-24{
    width     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:w-28{
    width     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:w-32{
    width     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:w-36{
    width     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:w-40{
    width     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:w-44{
    width     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:w-48{
    width     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:w-52{
    width     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:w-56{
    width     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:w-60{
    width     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:w-64{
    width     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:w-72{
    width     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:w-80{
    width     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:w-96{
    width     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:w-auto{
    width     : auto !important;
  }

  .group:hover .lg\:group-hover\:w-px{
    width     : 1px !important;
  }

  .group:hover .lg\:group-hover\:w-0\.5{
    width     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:w-1\.5{
    width     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:w-2\.5{
    width     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:w-3\.5{
    width     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:w-1\/2{
    width     : 50% !important;
  }

  .group:hover .lg\:group-hover\:w-1\/3{
    width     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-2\/3{
    width     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-1\/4{
    width     : 25% !important;
  }

  .group:hover .lg\:group-hover\:w-2\/4{
    width     : 50% !important;
  }

  .group:hover .lg\:group-hover\:w-3\/4{
    width     : 75% !important;
  }

  .group:hover .lg\:group-hover\:w-1\/5{
    width     : 20% !important;
  }

  .group:hover .lg\:group-hover\:w-2\/5{
    width     : 40% !important;
  }

  .group:hover .lg\:group-hover\:w-3\/5{
    width     : 60% !important;
  }

  .group:hover .lg\:group-hover\:w-4\/5{
    width     : 80% !important;
  }

  .group:hover .lg\:group-hover\:w-1\/6{
    width     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-2\/6{
    width     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-3\/6{
    width     : 50% !important;
  }

  .group:hover .lg\:group-hover\:w-4\/6{
    width     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-5\/6{
    width     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-1\/12{
    width     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-2\/12{
    width     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-3\/12{
    width     : 25% !important;
  }

  .group:hover .lg\:group-hover\:w-4\/12{
    width     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-5\/12{
    width     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-6\/12{
    width     : 50% !important;
  }

  .group:hover .lg\:group-hover\:w-7\/12{
    width     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-8\/12{
    width     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-9\/12{
    width     : 75% !important;
  }

  .group:hover .lg\:group-hover\:w-10\/12{
    width     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:w-11\/12{
    width     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:w-full{
    width     : 100% !important;
  }

  .group:hover .lg\:group-hover\:w-screen{
    width     : 100vw !important;
  }

  .group:hover .lg\:group-hover\:w-min-content{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .group:hover .lg\:group-hover\:w-max-content{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .lg\:hover\:w-0:hover{
    width     : 0 !important;
  }

  .lg\:hover\:w-1:hover{
    width     : 0.25rem !important;
  }

  .lg\:hover\:w-2:hover{
    width     : 0.5rem !important;
  }

  .lg\:hover\:w-3:hover{
    width     : 0.75rem !important;
  }

  .lg\:hover\:w-4:hover{
    width     : 1rem !important;
  }

  .lg\:hover\:w-5:hover{
    width     : 1.25rem !important;
  }

  .lg\:hover\:w-6:hover{
    width     : 1.5rem !important;
  }

  .lg\:hover\:w-7:hover{
    width     : 1.75rem !important;
  }

  .lg\:hover\:w-8:hover{
    width     : 2rem !important;
  }

  .lg\:hover\:w-9:hover{
    width     : 2.25rem !important;
  }

  .lg\:hover\:w-10:hover{
    width     : 2.5rem !important;
  }

  .lg\:hover\:w-11:hover{
    width     : 2.75rem !important;
  }

  .lg\:hover\:w-12:hover{
    width     : 3rem !important;
  }

  .lg\:hover\:w-13:hover{
    width     : 3.25rem !important;
  }

  .lg\:hover\:w-14:hover{
    width     : 3.5rem !important;
  }

  .lg\:hover\:w-15:hover{
    width     : 3.75rem !important;
  }

  .lg\:hover\:w-16:hover{
    width     : 4rem !important;
  }

  .lg\:hover\:w-20:hover{
    width     : 5rem !important;
  }

  .lg\:hover\:w-24:hover{
    width     : 6rem !important;
  }

  .lg\:hover\:w-28:hover{
    width     : 7rem !important;
  }

  .lg\:hover\:w-32:hover{
    width     : 8rem !important;
  }

  .lg\:hover\:w-36:hover{
    width     : 9rem !important;
  }

  .lg\:hover\:w-40:hover{
    width     : 10rem !important;
  }

  .lg\:hover\:w-44:hover{
    width     : 11rem !important;
  }

  .lg\:hover\:w-48:hover{
    width     : 12rem !important;
  }

  .lg\:hover\:w-52:hover{
    width     : 13rem !important;
  }

  .lg\:hover\:w-56:hover{
    width     : 14rem !important;
  }

  .lg\:hover\:w-60:hover{
    width     : 15rem !important;
  }

  .lg\:hover\:w-64:hover{
    width     : 16rem !important;
  }

  .lg\:hover\:w-72:hover{
    width     : 18rem !important;
  }

  .lg\:hover\:w-80:hover{
    width     : 20rem !important;
  }

  .lg\:hover\:w-96:hover{
    width     : 24rem !important;
  }

  .lg\:hover\:w-auto:hover{
    width     : auto !important;
  }

  .lg\:hover\:w-px:hover{
    width     : 1px !important;
  }

  .lg\:hover\:w-0\.5:hover{
    width     : 0.125rem !important;
  }

  .lg\:hover\:w-1\.5:hover{
    width     : 0.375rem !important;
  }

  .lg\:hover\:w-2\.5:hover{
    width     : 0.625rem !important;
  }

  .lg\:hover\:w-3\.5:hover{
    width     : 0.875rem !important;
  }

  .lg\:hover\:w-1\/2:hover{
    width     : 50% !important;
  }

  .lg\:hover\:w-1\/3:hover{
    width     : 33.333333% !important;
  }

  .lg\:hover\:w-2\/3:hover{
    width     : 66.666667% !important;
  }

  .lg\:hover\:w-1\/4:hover{
    width     : 25% !important;
  }

  .lg\:hover\:w-2\/4:hover{
    width     : 50% !important;
  }

  .lg\:hover\:w-3\/4:hover{
    width     : 75% !important;
  }

  .lg\:hover\:w-1\/5:hover{
    width     : 20% !important;
  }

  .lg\:hover\:w-2\/5:hover{
    width     : 40% !important;
  }

  .lg\:hover\:w-3\/5:hover{
    width     : 60% !important;
  }

  .lg\:hover\:w-4\/5:hover{
    width     : 80% !important;
  }

  .lg\:hover\:w-1\/6:hover{
    width     : 16.666667% !important;
  }

  .lg\:hover\:w-2\/6:hover{
    width     : 33.333333% !important;
  }

  .lg\:hover\:w-3\/6:hover{
    width     : 50% !important;
  }

  .lg\:hover\:w-4\/6:hover{
    width     : 66.666667% !important;
  }

  .lg\:hover\:w-5\/6:hover{
    width     : 83.333333% !important;
  }

  .lg\:hover\:w-1\/12:hover{
    width     : 8.333333% !important;
  }

  .lg\:hover\:w-2\/12:hover{
    width     : 16.666667% !important;
  }

  .lg\:hover\:w-3\/12:hover{
    width     : 25% !important;
  }

  .lg\:hover\:w-4\/12:hover{
    width     : 33.333333% !important;
  }

  .lg\:hover\:w-5\/12:hover{
    width     : 41.666667% !important;
  }

  .lg\:hover\:w-6\/12:hover{
    width     : 50% !important;
  }

  .lg\:hover\:w-7\/12:hover{
    width     : 58.333333% !important;
  }

  .lg\:hover\:w-8\/12:hover{
    width     : 66.666667% !important;
  }

  .lg\:hover\:w-9\/12:hover{
    width     : 75% !important;
  }

  .lg\:hover\:w-10\/12:hover{
    width     : 83.333333% !important;
  }

  .lg\:hover\:w-11\/12:hover{
    width     : 91.666667% !important;
  }

  .lg\:hover\:w-full:hover{
    width     : 100% !important;
  }

  .lg\:hover\:w-screen:hover{
    width     : 100vw !important;
  }

  .lg\:hover\:w-min-content:hover{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .lg\:hover\:w-max-content:hover{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .lg\:focus\:w-0:focus{
    width     : 0 !important;
  }

  .lg\:focus\:w-1:focus{
    width     : 0.25rem !important;
  }

  .lg\:focus\:w-2:focus{
    width     : 0.5rem !important;
  }

  .lg\:focus\:w-3:focus{
    width     : 0.75rem !important;
  }

  .lg\:focus\:w-4:focus{
    width     : 1rem !important;
  }

  .lg\:focus\:w-5:focus{
    width     : 1.25rem !important;
  }

  .lg\:focus\:w-6:focus{
    width     : 1.5rem !important;
  }

  .lg\:focus\:w-7:focus{
    width     : 1.75rem !important;
  }

  .lg\:focus\:w-8:focus{
    width     : 2rem !important;
  }

  .lg\:focus\:w-9:focus{
    width     : 2.25rem !important;
  }

  .lg\:focus\:w-10:focus{
    width     : 2.5rem !important;
  }

  .lg\:focus\:w-11:focus{
    width     : 2.75rem !important;
  }

  .lg\:focus\:w-12:focus{
    width     : 3rem !important;
  }

  .lg\:focus\:w-13:focus{
    width     : 3.25rem !important;
  }

  .lg\:focus\:w-14:focus{
    width     : 3.5rem !important;
  }

  .lg\:focus\:w-15:focus{
    width     : 3.75rem !important;
  }

  .lg\:focus\:w-16:focus{
    width     : 4rem !important;
  }

  .lg\:focus\:w-20:focus{
    width     : 5rem !important;
  }

  .lg\:focus\:w-24:focus{
    width     : 6rem !important;
  }

  .lg\:focus\:w-28:focus{
    width     : 7rem !important;
  }

  .lg\:focus\:w-32:focus{
    width     : 8rem !important;
  }

  .lg\:focus\:w-36:focus{
    width     : 9rem !important;
  }

  .lg\:focus\:w-40:focus{
    width     : 10rem !important;
  }

  .lg\:focus\:w-44:focus{
    width     : 11rem !important;
  }

  .lg\:focus\:w-48:focus{
    width     : 12rem !important;
  }

  .lg\:focus\:w-52:focus{
    width     : 13rem !important;
  }

  .lg\:focus\:w-56:focus{
    width     : 14rem !important;
  }

  .lg\:focus\:w-60:focus{
    width     : 15rem !important;
  }

  .lg\:focus\:w-64:focus{
    width     : 16rem !important;
  }

  .lg\:focus\:w-72:focus{
    width     : 18rem !important;
  }

  .lg\:focus\:w-80:focus{
    width     : 20rem !important;
  }

  .lg\:focus\:w-96:focus{
    width     : 24rem !important;
  }

  .lg\:focus\:w-auto:focus{
    width     : auto !important;
  }

  .lg\:focus\:w-px:focus{
    width     : 1px !important;
  }

  .lg\:focus\:w-0\.5:focus{
    width     : 0.125rem !important;
  }

  .lg\:focus\:w-1\.5:focus{
    width     : 0.375rem !important;
  }

  .lg\:focus\:w-2\.5:focus{
    width     : 0.625rem !important;
  }

  .lg\:focus\:w-3\.5:focus{
    width     : 0.875rem !important;
  }

  .lg\:focus\:w-1\/2:focus{
    width     : 50% !important;
  }

  .lg\:focus\:w-1\/3:focus{
    width     : 33.333333% !important;
  }

  .lg\:focus\:w-2\/3:focus{
    width     : 66.666667% !important;
  }

  .lg\:focus\:w-1\/4:focus{
    width     : 25% !important;
  }

  .lg\:focus\:w-2\/4:focus{
    width     : 50% !important;
  }

  .lg\:focus\:w-3\/4:focus{
    width     : 75% !important;
  }

  .lg\:focus\:w-1\/5:focus{
    width     : 20% !important;
  }

  .lg\:focus\:w-2\/5:focus{
    width     : 40% !important;
  }

  .lg\:focus\:w-3\/5:focus{
    width     : 60% !important;
  }

  .lg\:focus\:w-4\/5:focus{
    width     : 80% !important;
  }

  .lg\:focus\:w-1\/6:focus{
    width     : 16.666667% !important;
  }

  .lg\:focus\:w-2\/6:focus{
    width     : 33.333333% !important;
  }

  .lg\:focus\:w-3\/6:focus{
    width     : 50% !important;
  }

  .lg\:focus\:w-4\/6:focus{
    width     : 66.666667% !important;
  }

  .lg\:focus\:w-5\/6:focus{
    width     : 83.333333% !important;
  }

  .lg\:focus\:w-1\/12:focus{
    width     : 8.333333% !important;
  }

  .lg\:focus\:w-2\/12:focus{
    width     : 16.666667% !important;
  }

  .lg\:focus\:w-3\/12:focus{
    width     : 25% !important;
  }

  .lg\:focus\:w-4\/12:focus{
    width     : 33.333333% !important;
  }

  .lg\:focus\:w-5\/12:focus{
    width     : 41.666667% !important;
  }

  .lg\:focus\:w-6\/12:focus{
    width     : 50% !important;
  }

  .lg\:focus\:w-7\/12:focus{
    width     : 58.333333% !important;
  }

  .lg\:focus\:w-8\/12:focus{
    width     : 66.666667% !important;
  }

  .lg\:focus\:w-9\/12:focus{
    width     : 75% !important;
  }

  .lg\:focus\:w-10\/12:focus{
    width     : 83.333333% !important;
  }

  .lg\:focus\:w-11\/12:focus{
    width     : 91.666667% !important;
  }

  .lg\:focus\:w-full:focus{
    width     : 100% !important;
  }

  .lg\:focus\:w-screen:focus{
    width     : 100vw !important;
  }

  .lg\:focus\:w-min-content:focus{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .lg\:focus\:w-max-content:focus{
    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-auto{
    z-index     : auto !important;
  }

  .group:hover .lg\:group-hover\:z-0{
    z-index     : 0 !important;
  }

  .group:hover .lg\:group-hover\:z-10{
    z-index     : 10 !important;
  }

  .group:hover .lg\:group-hover\:z-20{
    z-index     : 20 !important;
  }

  .group:hover .lg\:group-hover\:z-30{
    z-index     : 30 !important;
  }

  .group:hover .lg\:group-hover\:z-40{
    z-index     : 40 !important;
  }

  .group:hover .lg\:group-hover\:z-50{
    z-index     : 50 !important;
  }

  .group:hover .lg\:group-hover\:z-auto{
    z-index     : auto !important;
  }

  .lg\:hover\:z-0:hover{
    z-index     : 0 !important;
  }

  .lg\:hover\:z-10:hover{
    z-index     : 10 !important;
  }

  .lg\:hover\:z-20:hover{
    z-index     : 20 !important;
  }

  .lg\:hover\:z-30:hover{
    z-index     : 30 !important;
  }

  .lg\:hover\:z-40:hover{
    z-index     : 40 !important;
  }

  .lg\:hover\:z-50:hover{
    z-index     : 50 !important;
  }

  .lg\:hover\:z-auto:hover{
    z-index     : auto !important;
  }

  .lg\:focus\:z-0:focus{
    z-index     : 0 !important;
  }

  .lg\:focus\:z-10:focus{
    z-index     : 10 !important;
  }

  .lg\:focus\:z-20:focus{
    z-index     : 20 !important;
  }

  .lg\:focus\:z-30:focus{
    z-index     : 30 !important;
  }

  .lg\:focus\:z-40:focus{
    z-index     : 40 !important;
  }

  .lg\:focus\:z-50:focus{
    z-index     : 50 !important;
  }

  .lg\:focus\:z-auto:focus{
    z-index     : auto !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-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .lg\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .lg\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !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-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-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !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\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .lg\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .lg\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .lg\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .lg\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .lg\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .lg\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .lg\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .lg\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .lg\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .lg\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .lg\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .lg\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .lg\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .lg\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .lg\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .lg\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .lg\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .lg\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .lg\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .lg\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .lg\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .lg\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .lg\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .lg\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .lg\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .lg\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .lg\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .lg\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .lg\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .lg\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .lg\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .lg\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .lg\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .lg\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .lg\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .lg\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .lg\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .lg\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .lg\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .lg\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .lg\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .lg\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .lg\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .lg\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .lg\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .lg\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .lg\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .lg\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .lg\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .lg\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .lg\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .lg\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .lg\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .lg\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .lg\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .lg\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .lg\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .lg\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .lg\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .lg\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .lg\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .lg\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .lg\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .lg\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .lg\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .lg\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .lg\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .lg\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .lg\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .lg\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .lg\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .lg\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .lg\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .lg\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .lg\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .lg\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .lg\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .lg\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .lg\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .lg\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .lg\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .lg\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .lg\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .lg\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .lg\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .lg\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .lg\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .lg\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .lg\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .lg\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .lg\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .group:hover .lg\:group-hover\:gap-0{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .group:hover .lg\:group-hover\:gap-1{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:gap-2{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:gap-3{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:gap-4{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:gap-5{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:gap-6{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:gap-7{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:gap-8{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:gap-9{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:gap-10{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:gap-11{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:gap-12{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:gap-13{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:gap-14{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:gap-15{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:gap-16{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:gap-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:gap-32{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:gap-36{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:gap-40{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:gap-44{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:gap-48{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:gap-52{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:gap-56{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:gap-60{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:gap-64{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:gap-72{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:gap-80{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:gap-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:gap-px{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .group:hover .lg\:group-hover\:gap-0\.5{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:gap-1\.5{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:gap-2\.5{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:gap-3\.5{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/2{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/3{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-2\/3{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/4{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:gap-2\/4{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:gap-3\/4{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/5{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .group:hover .lg\:group-hover\:gap-2\/5{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .group:hover .lg\:group-hover\:gap-3\/5{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .group:hover .lg\:group-hover\:gap-4\/5{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/6{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-2\/6{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-3\/6{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:gap-4\/6{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-5\/6{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-1\/12{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-2\/12{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-3\/12{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:gap-4\/12{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-5\/12{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-6\/12{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:gap-7\/12{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-8\/12{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-9\/12{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:gap-10\/12{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:gap-11\/12{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:gap-full{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .group:hover .lg\:group-hover\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .group:hover .lg\:group-hover\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .lg\:hover\:gap-0:hover{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .lg\:hover\:gap-1:hover{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .lg\:hover\:gap-2:hover{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .lg\:hover\:gap-3:hover{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .lg\:hover\:gap-4:hover{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .lg\:hover\:gap-5:hover{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .lg\:hover\:gap-6:hover{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .lg\:hover\:gap-7:hover{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .lg\:hover\:gap-8:hover{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .lg\:hover\:gap-9:hover{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .lg\:hover\:gap-10:hover{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .lg\:hover\:gap-11:hover{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .lg\:hover\:gap-12:hover{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .lg\:hover\:gap-13:hover{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .lg\:hover\:gap-14:hover{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .lg\:hover\:gap-15:hover{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .lg\:hover\:gap-16:hover{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .lg\:hover\:gap-20:hover{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .lg\:hover\:gap-24:hover{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .lg\:hover\:gap-28:hover{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .lg\:hover\:gap-32:hover{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .lg\:hover\:gap-36:hover{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .lg\:hover\:gap-40:hover{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .lg\:hover\:gap-44:hover{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .lg\:hover\:gap-48:hover{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .lg\:hover\:gap-52:hover{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .lg\:hover\:gap-56:hover{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .lg\:hover\:gap-60:hover{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .lg\:hover\:gap-64:hover{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .lg\:hover\:gap-72:hover{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .lg\:hover\:gap-80:hover{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .lg\:hover\:gap-96:hover{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .lg\:hover\:gap-px:hover{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .lg\:hover\:gap-0\.5:hover{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .lg\:hover\:gap-1\.5:hover{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .lg\:hover\:gap-2\.5:hover{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .lg\:hover\:gap-3\.5:hover{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .lg\:hover\:gap-1\/2:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:hover\:gap-1\/3:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:hover\:gap-2\/3:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:hover\:gap-1\/4:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .lg\:hover\:gap-2\/4:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:hover\:gap-3\/4:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .lg\:hover\:gap-1\/5:hover{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .lg\:hover\:gap-2\/5:hover{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .lg\:hover\:gap-3\/5:hover{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .lg\:hover\:gap-4\/5:hover{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .lg\:hover\:gap-1\/6:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .lg\:hover\:gap-2\/6:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:hover\:gap-3\/6:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:hover\:gap-4\/6:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:hover\:gap-5\/6:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .lg\:hover\:gap-1\/12:hover{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .lg\:hover\:gap-2\/12:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .lg\:hover\:gap-3\/12:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .lg\:hover\:gap-4\/12:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:hover\:gap-5\/12:hover{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .lg\:hover\:gap-6\/12:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:hover\:gap-7\/12:hover{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .lg\:hover\:gap-8\/12:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:hover\:gap-9\/12:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .lg\:hover\:gap-10\/12:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .lg\:hover\:gap-11\/12:hover{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .lg\:hover\:gap-full:hover{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .lg\:hover\:col-gap-0:hover{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .lg\:hover\:col-gap-1:hover{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .lg\:hover\:col-gap-2:hover{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .lg\:hover\:col-gap-3:hover{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .lg\:hover\:col-gap-4:hover{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .lg\:hover\:col-gap-5:hover{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .lg\:hover\:col-gap-6:hover{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .lg\:hover\:col-gap-7:hover{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .lg\:hover\:col-gap-8:hover{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .lg\:hover\:col-gap-9:hover{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .lg\:hover\:col-gap-10:hover{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .lg\:hover\:col-gap-11:hover{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .lg\:hover\:col-gap-12:hover{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .lg\:hover\:col-gap-13:hover{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .lg\:hover\:col-gap-14:hover{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .lg\:hover\:col-gap-15:hover{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .lg\:hover\:col-gap-16:hover{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .lg\:hover\:col-gap-20:hover{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .lg\:hover\:col-gap-24:hover{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .lg\:hover\:col-gap-28:hover{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .lg\:hover\:col-gap-32:hover{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .lg\:hover\:col-gap-36:hover{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .lg\:hover\:col-gap-40:hover{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .lg\:hover\:col-gap-44:hover{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .lg\:hover\:col-gap-48:hover{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .lg\:hover\:col-gap-52:hover{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .lg\:hover\:col-gap-56:hover{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .lg\:hover\:col-gap-60:hover{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .lg\:hover\:col-gap-64:hover{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .lg\:hover\:col-gap-72:hover{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .lg\:hover\:col-gap-80:hover{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .lg\:hover\:col-gap-96:hover{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .lg\:hover\:col-gap-px:hover{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .lg\:hover\:col-gap-0\.5:hover{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .lg\:hover\:col-gap-1\.5:hover{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .lg\:hover\:col-gap-2\.5:hover{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .lg\:hover\:col-gap-3\.5:hover{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .lg\:hover\:col-gap-1\/2:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:hover\:col-gap-1\/3:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:hover\:col-gap-2\/3:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:hover\:col-gap-1\/4:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:hover\:col-gap-2\/4:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:hover\:col-gap-3\/4:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:hover\:col-gap-1\/5:hover{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .lg\:hover\:col-gap-2\/5:hover{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .lg\:hover\:col-gap-3\/5:hover{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .lg\:hover\:col-gap-4\/5:hover{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .lg\:hover\:col-gap-1\/6:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:hover\:col-gap-2\/6:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:hover\:col-gap-3\/6:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:hover\:col-gap-4\/6:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:hover\:col-gap-5\/6:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:hover\:col-gap-1\/12:hover{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .lg\:hover\:col-gap-2\/12:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:hover\:col-gap-3\/12:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:hover\:col-gap-4\/12:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:hover\:col-gap-5\/12:hover{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .lg\:hover\:col-gap-6\/12:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:hover\:col-gap-7\/12:hover{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .lg\:hover\:col-gap-8\/12:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:hover\:col-gap-9\/12:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:hover\:col-gap-10\/12:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:hover\:col-gap-11\/12:hover{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .lg\:hover\:col-gap-full:hover{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .lg\:hover\:row-gap-0:hover{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .lg\:hover\:row-gap-1:hover{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .lg\:hover\:row-gap-2:hover{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .lg\:hover\:row-gap-3:hover{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .lg\:hover\:row-gap-4:hover{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .lg\:hover\:row-gap-5:hover{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .lg\:hover\:row-gap-6:hover{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .lg\:hover\:row-gap-7:hover{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .lg\:hover\:row-gap-8:hover{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .lg\:hover\:row-gap-9:hover{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .lg\:hover\:row-gap-10:hover{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .lg\:hover\:row-gap-11:hover{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .lg\:hover\:row-gap-12:hover{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .lg\:hover\:row-gap-13:hover{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .lg\:hover\:row-gap-14:hover{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .lg\:hover\:row-gap-15:hover{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .lg\:hover\:row-gap-16:hover{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .lg\:hover\:row-gap-20:hover{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .lg\:hover\:row-gap-24:hover{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .lg\:hover\:row-gap-28:hover{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .lg\:hover\:row-gap-32:hover{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .lg\:hover\:row-gap-36:hover{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .lg\:hover\:row-gap-40:hover{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .lg\:hover\:row-gap-44:hover{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .lg\:hover\:row-gap-48:hover{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .lg\:hover\:row-gap-52:hover{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .lg\:hover\:row-gap-56:hover{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .lg\:hover\:row-gap-60:hover{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .lg\:hover\:row-gap-64:hover{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .lg\:hover\:row-gap-72:hover{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .lg\:hover\:row-gap-80:hover{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .lg\:hover\:row-gap-96:hover{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .lg\:hover\:row-gap-px:hover{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .lg\:hover\:row-gap-0\.5:hover{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .lg\:hover\:row-gap-1\.5:hover{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .lg\:hover\:row-gap-2\.5:hover{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .lg\:hover\:row-gap-3\.5:hover{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .lg\:hover\:row-gap-1\/2:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:hover\:row-gap-1\/3:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:hover\:row-gap-2\/3:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:hover\:row-gap-1\/4:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:hover\:row-gap-2\/4:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:hover\:row-gap-3\/4:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:hover\:row-gap-1\/5:hover{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .lg\:hover\:row-gap-2\/5:hover{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .lg\:hover\:row-gap-3\/5:hover{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .lg\:hover\:row-gap-4\/5:hover{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .lg\:hover\:row-gap-1\/6:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:hover\:row-gap-2\/6:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:hover\:row-gap-3\/6:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:hover\:row-gap-4\/6:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:hover\:row-gap-5\/6:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:hover\:row-gap-1\/12:hover{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .lg\:hover\:row-gap-2\/12:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:hover\:row-gap-3\/12:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:hover\:row-gap-4\/12:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:hover\:row-gap-5\/12:hover{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .lg\:hover\:row-gap-6\/12:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:hover\:row-gap-7\/12:hover{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .lg\:hover\:row-gap-8\/12:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:hover\:row-gap-9\/12:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:hover\:row-gap-10\/12:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:hover\:row-gap-11\/12:hover{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .lg\:hover\:row-gap-full:hover{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .lg\:focus\:gap-0:focus{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .lg\:focus\:gap-1:focus{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .lg\:focus\:gap-2:focus{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .lg\:focus\:gap-3:focus{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .lg\:focus\:gap-4:focus{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .lg\:focus\:gap-5:focus{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .lg\:focus\:gap-6:focus{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .lg\:focus\:gap-7:focus{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .lg\:focus\:gap-8:focus{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .lg\:focus\:gap-9:focus{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .lg\:focus\:gap-10:focus{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .lg\:focus\:gap-11:focus{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .lg\:focus\:gap-12:focus{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .lg\:focus\:gap-13:focus{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .lg\:focus\:gap-14:focus{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .lg\:focus\:gap-15:focus{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .lg\:focus\:gap-16:focus{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .lg\:focus\:gap-20:focus{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .lg\:focus\:gap-24:focus{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .lg\:focus\:gap-28:focus{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .lg\:focus\:gap-32:focus{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .lg\:focus\:gap-36:focus{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .lg\:focus\:gap-40:focus{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .lg\:focus\:gap-44:focus{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .lg\:focus\:gap-48:focus{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .lg\:focus\:gap-52:focus{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .lg\:focus\:gap-56:focus{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .lg\:focus\:gap-60:focus{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .lg\:focus\:gap-64:focus{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .lg\:focus\:gap-72:focus{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .lg\:focus\:gap-80:focus{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .lg\:focus\:gap-96:focus{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .lg\:focus\:gap-px:focus{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .lg\:focus\:gap-0\.5:focus{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .lg\:focus\:gap-1\.5:focus{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .lg\:focus\:gap-2\.5:focus{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .lg\:focus\:gap-3\.5:focus{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .lg\:focus\:gap-1\/2:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:focus\:gap-1\/3:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:focus\:gap-2\/3:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:focus\:gap-1\/4:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .lg\:focus\:gap-2\/4:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:focus\:gap-3\/4:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .lg\:focus\:gap-1\/5:focus{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .lg\:focus\:gap-2\/5:focus{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .lg\:focus\:gap-3\/5:focus{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .lg\:focus\:gap-4\/5:focus{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .lg\:focus\:gap-1\/6:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .lg\:focus\:gap-2\/6:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:focus\:gap-3\/6:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:focus\:gap-4\/6:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:focus\:gap-5\/6:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .lg\:focus\:gap-1\/12:focus{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .lg\:focus\:gap-2\/12:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .lg\:focus\:gap-3\/12:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .lg\:focus\:gap-4\/12:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .lg\:focus\:gap-5\/12:focus{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .lg\:focus\:gap-6\/12:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .lg\:focus\:gap-7\/12:focus{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .lg\:focus\:gap-8\/12:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .lg\:focus\:gap-9\/12:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .lg\:focus\:gap-10\/12:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .lg\:focus\:gap-11\/12:focus{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .lg\:focus\:gap-full:focus{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .lg\:focus\:col-gap-0:focus{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .lg\:focus\:col-gap-1:focus{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .lg\:focus\:col-gap-2:focus{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .lg\:focus\:col-gap-3:focus{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .lg\:focus\:col-gap-4:focus{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .lg\:focus\:col-gap-5:focus{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .lg\:focus\:col-gap-6:focus{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .lg\:focus\:col-gap-7:focus{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .lg\:focus\:col-gap-8:focus{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .lg\:focus\:col-gap-9:focus{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .lg\:focus\:col-gap-10:focus{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .lg\:focus\:col-gap-11:focus{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .lg\:focus\:col-gap-12:focus{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .lg\:focus\:col-gap-13:focus{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .lg\:focus\:col-gap-14:focus{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .lg\:focus\:col-gap-15:focus{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .lg\:focus\:col-gap-16:focus{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .lg\:focus\:col-gap-20:focus{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .lg\:focus\:col-gap-24:focus{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .lg\:focus\:col-gap-28:focus{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .lg\:focus\:col-gap-32:focus{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .lg\:focus\:col-gap-36:focus{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .lg\:focus\:col-gap-40:focus{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .lg\:focus\:col-gap-44:focus{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .lg\:focus\:col-gap-48:focus{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .lg\:focus\:col-gap-52:focus{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .lg\:focus\:col-gap-56:focus{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .lg\:focus\:col-gap-60:focus{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .lg\:focus\:col-gap-64:focus{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .lg\:focus\:col-gap-72:focus{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .lg\:focus\:col-gap-80:focus{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .lg\:focus\:col-gap-96:focus{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .lg\:focus\:col-gap-px:focus{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .lg\:focus\:col-gap-0\.5:focus{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .lg\:focus\:col-gap-1\.5:focus{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .lg\:focus\:col-gap-2\.5:focus{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .lg\:focus\:col-gap-3\.5:focus{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .lg\:focus\:col-gap-1\/2:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:focus\:col-gap-1\/3:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:focus\:col-gap-2\/3:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:focus\:col-gap-1\/4:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:focus\:col-gap-2\/4:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:focus\:col-gap-3\/4:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:focus\:col-gap-1\/5:focus{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .lg\:focus\:col-gap-2\/5:focus{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .lg\:focus\:col-gap-3\/5:focus{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .lg\:focus\:col-gap-4\/5:focus{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .lg\:focus\:col-gap-1\/6:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:focus\:col-gap-2\/6:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:focus\:col-gap-3\/6:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:focus\:col-gap-4\/6:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:focus\:col-gap-5\/6:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:focus\:col-gap-1\/12:focus{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .lg\:focus\:col-gap-2\/12:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .lg\:focus\:col-gap-3\/12:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .lg\:focus\:col-gap-4\/12:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .lg\:focus\:col-gap-5\/12:focus{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .lg\:focus\:col-gap-6\/12:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .lg\:focus\:col-gap-7\/12:focus{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .lg\:focus\:col-gap-8\/12:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .lg\:focus\:col-gap-9\/12:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .lg\:focus\:col-gap-10\/12:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .lg\:focus\:col-gap-11\/12:focus{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .lg\:focus\:col-gap-full:focus{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .lg\:focus\:row-gap-0:focus{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .lg\:focus\:row-gap-1:focus{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .lg\:focus\:row-gap-2:focus{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .lg\:focus\:row-gap-3:focus{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .lg\:focus\:row-gap-4:focus{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .lg\:focus\:row-gap-5:focus{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .lg\:focus\:row-gap-6:focus{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .lg\:focus\:row-gap-7:focus{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .lg\:focus\:row-gap-8:focus{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .lg\:focus\:row-gap-9:focus{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .lg\:focus\:row-gap-10:focus{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .lg\:focus\:row-gap-11:focus{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .lg\:focus\:row-gap-12:focus{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .lg\:focus\:row-gap-13:focus{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .lg\:focus\:row-gap-14:focus{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .lg\:focus\:row-gap-15:focus{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .lg\:focus\:row-gap-16:focus{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .lg\:focus\:row-gap-20:focus{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .lg\:focus\:row-gap-24:focus{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .lg\:focus\:row-gap-28:focus{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .lg\:focus\:row-gap-32:focus{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .lg\:focus\:row-gap-36:focus{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .lg\:focus\:row-gap-40:focus{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .lg\:focus\:row-gap-44:focus{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .lg\:focus\:row-gap-48:focus{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .lg\:focus\:row-gap-52:focus{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .lg\:focus\:row-gap-56:focus{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .lg\:focus\:row-gap-60:focus{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .lg\:focus\:row-gap-64:focus{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .lg\:focus\:row-gap-72:focus{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .lg\:focus\:row-gap-80:focus{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .lg\:focus\:row-gap-96:focus{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .lg\:focus\:row-gap-px:focus{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .lg\:focus\:row-gap-0\.5:focus{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .lg\:focus\:row-gap-1\.5:focus{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .lg\:focus\:row-gap-2\.5:focus{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .lg\:focus\:row-gap-3\.5:focus{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .lg\:focus\:row-gap-1\/2:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:focus\:row-gap-1\/3:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:focus\:row-gap-2\/3:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:focus\:row-gap-1\/4:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:focus\:row-gap-2\/4:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:focus\:row-gap-3\/4:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:focus\:row-gap-1\/5:focus{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .lg\:focus\:row-gap-2\/5:focus{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .lg\:focus\:row-gap-3\/5:focus{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .lg\:focus\:row-gap-4\/5:focus{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .lg\:focus\:row-gap-1\/6:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:focus\:row-gap-2\/6:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:focus\:row-gap-3\/6:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:focus\:row-gap-4\/6:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:focus\:row-gap-5\/6:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:focus\:row-gap-1\/12:focus{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .lg\:focus\:row-gap-2\/12:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .lg\:focus\:row-gap-3\/12:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .lg\:focus\:row-gap-4\/12:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .lg\:focus\:row-gap-5\/12:focus{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .lg\:focus\:row-gap-6\/12:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .lg\:focus\:row-gap-7\/12:focus{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .lg\:focus\:row-gap-8\/12:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .lg\:focus\:row-gap-9\/12:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .lg\:focus\:row-gap-10\/12:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .lg\:focus\:row-gap-11\/12:focus{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .lg\:focus\:row-gap-full:focus{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !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;
  }

  .group:hover .lg\:group-hover\:grid-flow-row{
    grid-auto-flow     : row !important;
  }

  .group:hover .lg\:group-hover\:grid-flow-col{
    grid-auto-flow     : column !important;
  }

  .group:hover .lg\:group-hover\:grid-flow-row-dense{
    grid-auto-flow     : row dense !important;
  }

  .group:hover .lg\:group-hover\:grid-flow-col-dense{
    grid-auto-flow     : column dense !important;
  }

  .lg\:hover\:grid-flow-row:hover{
    grid-auto-flow     : row !important;
  }

  .lg\:hover\:grid-flow-col:hover{
    grid-auto-flow     : column !important;
  }

  .lg\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow     : row dense !important;
  }

  .lg\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow     : column dense !important;
  }

  .lg\:focus\:grid-flow-row:focus{
    grid-auto-flow     : row !important;
  }

  .lg\:focus\:grid-flow-col:focus{
    grid-auto-flow     : column !important;
  }

  .lg\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow     : row dense !important;
  }

  .lg\:focus\:grid-flow-col-dense:focus{
    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;
  }

  .group:hover .lg\:group-hover\:grid-cols-1{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-2{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-3{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-4{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-5{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-6{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-7{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-8{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-9{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-10{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-11{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-12{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-cols-none{
    grid-template-columns     : none !important;
  }

  .lg\:hover\:grid-cols-1:hover{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-2:hover{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-3:hover{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-4:hover{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-5:hover{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-6:hover{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-7:hover{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-8:hover{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-9:hover{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-10:hover{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-11:hover{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-12:hover{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-cols-none:hover{
    grid-template-columns     : none !important;
  }

  .lg\:focus\:grid-cols-1:focus{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-2:focus{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-3:focus{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-4:focus{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-5:focus{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-6:focus{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-7:focus{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-8:focus{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-9:focus{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-10:focus{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-11:focus{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-12:focus{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-cols-none:focus{
    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;
  }

  .group:hover .lg\:group-hover\:col-auto{
    grid-column     : auto !important;
  }

  .group:hover .lg\:group-hover\:col-span-1{
    grid-column     : span 1 / span 1 !important;
  }

  .group:hover .lg\:group-hover\:col-span-2{
    grid-column     : span 2 / span 2 !important;
  }

  .group:hover .lg\:group-hover\:col-span-3{
    grid-column     : span 3 / span 3 !important;
  }

  .group:hover .lg\:group-hover\:col-span-4{
    grid-column     : span 4 / span 4 !important;
  }

  .group:hover .lg\:group-hover\:col-span-5{
    grid-column     : span 5 / span 5 !important;
  }

  .group:hover .lg\:group-hover\:col-span-6{
    grid-column     : span 6 / span 6 !important;
  }

  .group:hover .lg\:group-hover\:col-span-7{
    grid-column     : span 7 / span 7 !important;
  }

  .group:hover .lg\:group-hover\:col-span-8{
    grid-column     : span 8 / span 8 !important;
  }

  .group:hover .lg\:group-hover\:col-span-9{
    grid-column     : span 9 / span 9 !important;
  }

  .group:hover .lg\:group-hover\:col-span-10{
    grid-column     : span 10 / span 10 !important;
  }

  .group:hover .lg\:group-hover\:col-span-11{
    grid-column     : span 11 / span 11 !important;
  }

  .group:hover .lg\:group-hover\:col-span-12{
    grid-column     : span 12 / span 12 !important;
  }

  .lg\:hover\:col-auto:hover{
    grid-column     : auto !important;
  }

  .lg\:hover\:col-span-1:hover{
    grid-column     : span 1 / span 1 !important;
  }

  .lg\:hover\:col-span-2:hover{
    grid-column     : span 2 / span 2 !important;
  }

  .lg\:hover\:col-span-3:hover{
    grid-column     : span 3 / span 3 !important;
  }

  .lg\:hover\:col-span-4:hover{
    grid-column     : span 4 / span 4 !important;
  }

  .lg\:hover\:col-span-5:hover{
    grid-column     : span 5 / span 5 !important;
  }

  .lg\:hover\:col-span-6:hover{
    grid-column     : span 6 / span 6 !important;
  }

  .lg\:hover\:col-span-7:hover{
    grid-column     : span 7 / span 7 !important;
  }

  .lg\:hover\:col-span-8:hover{
    grid-column     : span 8 / span 8 !important;
  }

  .lg\:hover\:col-span-9:hover{
    grid-column     : span 9 / span 9 !important;
  }

  .lg\:hover\:col-span-10:hover{
    grid-column     : span 10 / span 10 !important;
  }

  .lg\:hover\:col-span-11:hover{
    grid-column     : span 11 / span 11 !important;
  }

  .lg\:hover\:col-span-12:hover{
    grid-column     : span 12 / span 12 !important;
  }

  .lg\:focus\:col-auto:focus{
    grid-column     : auto !important;
  }

  .lg\:focus\:col-span-1:focus{
    grid-column     : span 1 / span 1 !important;
  }

  .lg\:focus\:col-span-2:focus{
    grid-column     : span 2 / span 2 !important;
  }

  .lg\:focus\:col-span-3:focus{
    grid-column     : span 3 / span 3 !important;
  }

  .lg\:focus\:col-span-4:focus{
    grid-column     : span 4 / span 4 !important;
  }

  .lg\:focus\:col-span-5:focus{
    grid-column     : span 5 / span 5 !important;
  }

  .lg\:focus\:col-span-6:focus{
    grid-column     : span 6 / span 6 !important;
  }

  .lg\:focus\:col-span-7:focus{
    grid-column     : span 7 / span 7 !important;
  }

  .lg\:focus\:col-span-8:focus{
    grid-column     : span 8 / span 8 !important;
  }

  .lg\:focus\:col-span-9:focus{
    grid-column     : span 9 / span 9 !important;
  }

  .lg\:focus\:col-span-10:focus{
    grid-column     : span 10 / span 10 !important;
  }

  .lg\:focus\:col-span-11:focus{
    grid-column     : span 11 / span 11 !important;
  }

  .lg\:focus\:col-span-12:focus{
    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;
  }

  .group:hover .lg\:group-hover\:col-start-1{
    grid-column-start     : 1 !important;
  }

  .group:hover .lg\:group-hover\:col-start-2{
    grid-column-start     : 2 !important;
  }

  .group:hover .lg\:group-hover\:col-start-3{
    grid-column-start     : 3 !important;
  }

  .group:hover .lg\:group-hover\:col-start-4{
    grid-column-start     : 4 !important;
  }

  .group:hover .lg\:group-hover\:col-start-5{
    grid-column-start     : 5 !important;
  }

  .group:hover .lg\:group-hover\:col-start-6{
    grid-column-start     : 6 !important;
  }

  .group:hover .lg\:group-hover\:col-start-7{
    grid-column-start     : 7 !important;
  }

  .group:hover .lg\:group-hover\:col-start-8{
    grid-column-start     : 8 !important;
  }

  .group:hover .lg\:group-hover\:col-start-9{
    grid-column-start     : 9 !important;
  }

  .group:hover .lg\:group-hover\:col-start-10{
    grid-column-start     : 10 !important;
  }

  .group:hover .lg\:group-hover\:col-start-11{
    grid-column-start     : 11 !important;
  }

  .group:hover .lg\:group-hover\:col-start-12{
    grid-column-start     : 12 !important;
  }

  .group:hover .lg\:group-hover\:col-start-13{
    grid-column-start     : 13 !important;
  }

  .group:hover .lg\:group-hover\:col-start-auto{
    grid-column-start     : auto !important;
  }

  .lg\:hover\:col-start-1:hover{
    grid-column-start     : 1 !important;
  }

  .lg\:hover\:col-start-2:hover{
    grid-column-start     : 2 !important;
  }

  .lg\:hover\:col-start-3:hover{
    grid-column-start     : 3 !important;
  }

  .lg\:hover\:col-start-4:hover{
    grid-column-start     : 4 !important;
  }

  .lg\:hover\:col-start-5:hover{
    grid-column-start     : 5 !important;
  }

  .lg\:hover\:col-start-6:hover{
    grid-column-start     : 6 !important;
  }

  .lg\:hover\:col-start-7:hover{
    grid-column-start     : 7 !important;
  }

  .lg\:hover\:col-start-8:hover{
    grid-column-start     : 8 !important;
  }

  .lg\:hover\:col-start-9:hover{
    grid-column-start     : 9 !important;
  }

  .lg\:hover\:col-start-10:hover{
    grid-column-start     : 10 !important;
  }

  .lg\:hover\:col-start-11:hover{
    grid-column-start     : 11 !important;
  }

  .lg\:hover\:col-start-12:hover{
    grid-column-start     : 12 !important;
  }

  .lg\:hover\:col-start-13:hover{
    grid-column-start     : 13 !important;
  }

  .lg\:hover\:col-start-auto:hover{
    grid-column-start     : auto !important;
  }

  .lg\:focus\:col-start-1:focus{
    grid-column-start     : 1 !important;
  }

  .lg\:focus\:col-start-2:focus{
    grid-column-start     : 2 !important;
  }

  .lg\:focus\:col-start-3:focus{
    grid-column-start     : 3 !important;
  }

  .lg\:focus\:col-start-4:focus{
    grid-column-start     : 4 !important;
  }

  .lg\:focus\:col-start-5:focus{
    grid-column-start     : 5 !important;
  }

  .lg\:focus\:col-start-6:focus{
    grid-column-start     : 6 !important;
  }

  .lg\:focus\:col-start-7:focus{
    grid-column-start     : 7 !important;
  }

  .lg\:focus\:col-start-8:focus{
    grid-column-start     : 8 !important;
  }

  .lg\:focus\:col-start-9:focus{
    grid-column-start     : 9 !important;
  }

  .lg\:focus\:col-start-10:focus{
    grid-column-start     : 10 !important;
  }

  .lg\:focus\:col-start-11:focus{
    grid-column-start     : 11 !important;
  }

  .lg\:focus\:col-start-12:focus{
    grid-column-start     : 12 !important;
  }

  .lg\:focus\:col-start-13:focus{
    grid-column-start     : 13 !important;
  }

  .lg\:focus\:col-start-auto:focus{
    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;
  }

  .group:hover .lg\:group-hover\:col-end-1{
    grid-column-end     : 1 !important;
  }

  .group:hover .lg\:group-hover\:col-end-2{
    grid-column-end     : 2 !important;
  }

  .group:hover .lg\:group-hover\:col-end-3{
    grid-column-end     : 3 !important;
  }

  .group:hover .lg\:group-hover\:col-end-4{
    grid-column-end     : 4 !important;
  }

  .group:hover .lg\:group-hover\:col-end-5{
    grid-column-end     : 5 !important;
  }

  .group:hover .lg\:group-hover\:col-end-6{
    grid-column-end     : 6 !important;
  }

  .group:hover .lg\:group-hover\:col-end-7{
    grid-column-end     : 7 !important;
  }

  .group:hover .lg\:group-hover\:col-end-8{
    grid-column-end     : 8 !important;
  }

  .group:hover .lg\:group-hover\:col-end-9{
    grid-column-end     : 9 !important;
  }

  .group:hover .lg\:group-hover\:col-end-10{
    grid-column-end     : 10 !important;
  }

  .group:hover .lg\:group-hover\:col-end-11{
    grid-column-end     : 11 !important;
  }

  .group:hover .lg\:group-hover\:col-end-12{
    grid-column-end     : 12 !important;
  }

  .group:hover .lg\:group-hover\:col-end-13{
    grid-column-end     : 13 !important;
  }

  .group:hover .lg\:group-hover\:col-end-auto{
    grid-column-end     : auto !important;
  }

  .lg\:hover\:col-end-1:hover{
    grid-column-end     : 1 !important;
  }

  .lg\:hover\:col-end-2:hover{
    grid-column-end     : 2 !important;
  }

  .lg\:hover\:col-end-3:hover{
    grid-column-end     : 3 !important;
  }

  .lg\:hover\:col-end-4:hover{
    grid-column-end     : 4 !important;
  }

  .lg\:hover\:col-end-5:hover{
    grid-column-end     : 5 !important;
  }

  .lg\:hover\:col-end-6:hover{
    grid-column-end     : 6 !important;
  }

  .lg\:hover\:col-end-7:hover{
    grid-column-end     : 7 !important;
  }

  .lg\:hover\:col-end-8:hover{
    grid-column-end     : 8 !important;
  }

  .lg\:hover\:col-end-9:hover{
    grid-column-end     : 9 !important;
  }

  .lg\:hover\:col-end-10:hover{
    grid-column-end     : 10 !important;
  }

  .lg\:hover\:col-end-11:hover{
    grid-column-end     : 11 !important;
  }

  .lg\:hover\:col-end-12:hover{
    grid-column-end     : 12 !important;
  }

  .lg\:hover\:col-end-13:hover{
    grid-column-end     : 13 !important;
  }

  .lg\:hover\:col-end-auto:hover{
    grid-column-end     : auto !important;
  }

  .lg\:focus\:col-end-1:focus{
    grid-column-end     : 1 !important;
  }

  .lg\:focus\:col-end-2:focus{
    grid-column-end     : 2 !important;
  }

  .lg\:focus\:col-end-3:focus{
    grid-column-end     : 3 !important;
  }

  .lg\:focus\:col-end-4:focus{
    grid-column-end     : 4 !important;
  }

  .lg\:focus\:col-end-5:focus{
    grid-column-end     : 5 !important;
  }

  .lg\:focus\:col-end-6:focus{
    grid-column-end     : 6 !important;
  }

  .lg\:focus\:col-end-7:focus{
    grid-column-end     : 7 !important;
  }

  .lg\:focus\:col-end-8:focus{
    grid-column-end     : 8 !important;
  }

  .lg\:focus\:col-end-9:focus{
    grid-column-end     : 9 !important;
  }

  .lg\:focus\:col-end-10:focus{
    grid-column-end     : 10 !important;
  }

  .lg\:focus\:col-end-11:focus{
    grid-column-end     : 11 !important;
  }

  .lg\:focus\:col-end-12:focus{
    grid-column-end     : 12 !important;
  }

  .lg\:focus\:col-end-13:focus{
    grid-column-end     : 13 !important;
  }

  .lg\:focus\:col-end-auto:focus{
    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;
  }

  .group:hover .lg\:group-hover\:grid-rows-1{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-2{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-3{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-4{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-5{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-6{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .lg\:group-hover\:grid-rows-none{
    grid-template-rows     : none !important;
  }

  .lg\:hover\:grid-rows-1:hover{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-2:hover{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-3:hover{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-4:hover{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-5:hover{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-6:hover{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:hover\:grid-rows-none:hover{
    grid-template-rows     : none !important;
  }

  .lg\:focus\:grid-rows-1:focus{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-2:focus{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-3:focus{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-4:focus{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-5:focus{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-6:focus{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:focus\:grid-rows-none:focus{
    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;
  }

  .group:hover .lg\:group-hover\:row-auto{
    grid-row     : auto !important;
  }

  .group:hover .lg\:group-hover\:row-span-1{
    grid-row     : span 1 / span 1 !important;
  }

  .group:hover .lg\:group-hover\:row-span-2{
    grid-row     : span 2 / span 2 !important;
  }

  .group:hover .lg\:group-hover\:row-span-3{
    grid-row     : span 3 / span 3 !important;
  }

  .group:hover .lg\:group-hover\:row-span-4{
    grid-row     : span 4 / span 4 !important;
  }

  .group:hover .lg\:group-hover\:row-span-5{
    grid-row     : span 5 / span 5 !important;
  }

  .group:hover .lg\:group-hover\:row-span-6{
    grid-row     : span 6 / span 6 !important;
  }

  .lg\:hover\:row-auto:hover{
    grid-row     : auto !important;
  }

  .lg\:hover\:row-span-1:hover{
    grid-row     : span 1 / span 1 !important;
  }

  .lg\:hover\:row-span-2:hover{
    grid-row     : span 2 / span 2 !important;
  }

  .lg\:hover\:row-span-3:hover{
    grid-row     : span 3 / span 3 !important;
  }

  .lg\:hover\:row-span-4:hover{
    grid-row     : span 4 / span 4 !important;
  }

  .lg\:hover\:row-span-5:hover{
    grid-row     : span 5 / span 5 !important;
  }

  .lg\:hover\:row-span-6:hover{
    grid-row     : span 6 / span 6 !important;
  }

  .lg\:focus\:row-auto:focus{
    grid-row     : auto !important;
  }

  .lg\:focus\:row-span-1:focus{
    grid-row     : span 1 / span 1 !important;
  }

  .lg\:focus\:row-span-2:focus{
    grid-row     : span 2 / span 2 !important;
  }

  .lg\:focus\:row-span-3:focus{
    grid-row     : span 3 / span 3 !important;
  }

  .lg\:focus\:row-span-4:focus{
    grid-row     : span 4 / span 4 !important;
  }

  .lg\:focus\:row-span-5:focus{
    grid-row     : span 5 / span 5 !important;
  }

  .lg\:focus\:row-span-6:focus{
    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;
  }

  .group:hover .lg\:group-hover\:row-start-1{
    grid-row-start     : 1 !important;
  }

  .group:hover .lg\:group-hover\:row-start-2{
    grid-row-start     : 2 !important;
  }

  .group:hover .lg\:group-hover\:row-start-3{
    grid-row-start     : 3 !important;
  }

  .group:hover .lg\:group-hover\:row-start-4{
    grid-row-start     : 4 !important;
  }

  .group:hover .lg\:group-hover\:row-start-5{
    grid-row-start     : 5 !important;
  }

  .group:hover .lg\:group-hover\:row-start-6{
    grid-row-start     : 6 !important;
  }

  .group:hover .lg\:group-hover\:row-start-7{
    grid-row-start     : 7 !important;
  }

  .group:hover .lg\:group-hover\:row-start-auto{
    grid-row-start     : auto !important;
  }

  .lg\:hover\:row-start-1:hover{
    grid-row-start     : 1 !important;
  }

  .lg\:hover\:row-start-2:hover{
    grid-row-start     : 2 !important;
  }

  .lg\:hover\:row-start-3:hover{
    grid-row-start     : 3 !important;
  }

  .lg\:hover\:row-start-4:hover{
    grid-row-start     : 4 !important;
  }

  .lg\:hover\:row-start-5:hover{
    grid-row-start     : 5 !important;
  }

  .lg\:hover\:row-start-6:hover{
    grid-row-start     : 6 !important;
  }

  .lg\:hover\:row-start-7:hover{
    grid-row-start     : 7 !important;
  }

  .lg\:hover\:row-start-auto:hover{
    grid-row-start     : auto !important;
  }

  .lg\:focus\:row-start-1:focus{
    grid-row-start     : 1 !important;
  }

  .lg\:focus\:row-start-2:focus{
    grid-row-start     : 2 !important;
  }

  .lg\:focus\:row-start-3:focus{
    grid-row-start     : 3 !important;
  }

  .lg\:focus\:row-start-4:focus{
    grid-row-start     : 4 !important;
  }

  .lg\:focus\:row-start-5:focus{
    grid-row-start     : 5 !important;
  }

  .lg\:focus\:row-start-6:focus{
    grid-row-start     : 6 !important;
  }

  .lg\:focus\:row-start-7:focus{
    grid-row-start     : 7 !important;
  }

  .lg\:focus\:row-start-auto:focus{
    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;
  }

  .group:hover .lg\:group-hover\:row-end-1{
    grid-row-end     : 1 !important;
  }

  .group:hover .lg\:group-hover\:row-end-2{
    grid-row-end     : 2 !important;
  }

  .group:hover .lg\:group-hover\:row-end-3{
    grid-row-end     : 3 !important;
  }

  .group:hover .lg\:group-hover\:row-end-4{
    grid-row-end     : 4 !important;
  }

  .group:hover .lg\:group-hover\:row-end-5{
    grid-row-end     : 5 !important;
  }

  .group:hover .lg\:group-hover\:row-end-6{
    grid-row-end     : 6 !important;
  }

  .group:hover .lg\:group-hover\:row-end-7{
    grid-row-end     : 7 !important;
  }

  .group:hover .lg\:group-hover\:row-end-auto{
    grid-row-end     : auto !important;
  }

  .lg\:hover\:row-end-1:hover{
    grid-row-end     : 1 !important;
  }

  .lg\:hover\:row-end-2:hover{
    grid-row-end     : 2 !important;
  }

  .lg\:hover\:row-end-3:hover{
    grid-row-end     : 3 !important;
  }

  .lg\:hover\:row-end-4:hover{
    grid-row-end     : 4 !important;
  }

  .lg\:hover\:row-end-5:hover{
    grid-row-end     : 5 !important;
  }

  .lg\:hover\:row-end-6:hover{
    grid-row-end     : 6 !important;
  }

  .lg\:hover\:row-end-7:hover{
    grid-row-end     : 7 !important;
  }

  .lg\:hover\:row-end-auto:hover{
    grid-row-end     : auto !important;
  }

  .lg\:focus\:row-end-1:focus{
    grid-row-end     : 1 !important;
  }

  .lg\:focus\:row-end-2:focus{
    grid-row-end     : 2 !important;
  }

  .lg\:focus\:row-end-3:focus{
    grid-row-end     : 3 !important;
  }

  .lg\:focus\:row-end-4:focus{
    grid-row-end     : 4 !important;
  }

  .lg\:focus\:row-end-5:focus{
    grid-row-end     : 5 !important;
  }

  .lg\:focus\:row-end-6:focus{
    grid-row-end     : 6 !important;
  }

  .lg\:focus\:row-end-7:focus{
    grid-row-end     : 7 !important;
  }

  .lg\:focus\:row-end-auto:focus{
    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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:transform-none{
    transform     : none !important;
  }

  .lg\:hover\:transform:hover{
    --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\:hover\:transform-none:hover{
    transform     : none !important;
  }

  .lg\:focus\:transform:focus{
    --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\:focus\:transform-none:focus{
    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;
  }

  .group:hover .lg\:group-hover\:origin-center{
    transform-origin     : center !important;
  }

  .group:hover .lg\:group-hover\:origin-top{
    transform-origin     : top !important;
  }

  .group:hover .lg\:group-hover\:origin-top-right{
    transform-origin     : top right !important;
  }

  .group:hover .lg\:group-hover\:origin-right{
    transform-origin     : right !important;
  }

  .group:hover .lg\:group-hover\:origin-bottom-right{
    transform-origin     : bottom right !important;
  }

  .group:hover .lg\:group-hover\:origin-bottom{
    transform-origin     : bottom !important;
  }

  .group:hover .lg\:group-hover\:origin-bottom-left{
    transform-origin     : bottom left !important;
  }

  .group:hover .lg\:group-hover\:origin-left{
    transform-origin     : left !important;
  }

  .group:hover .lg\:group-hover\:origin-top-left{
    transform-origin     : top left !important;
  }

  .lg\:hover\:origin-center:hover{
    transform-origin     : center !important;
  }

  .lg\:hover\:origin-top:hover{
    transform-origin     : top !important;
  }

  .lg\:hover\:origin-top-right:hover{
    transform-origin     : top right !important;
  }

  .lg\:hover\:origin-right:hover{
    transform-origin     : right !important;
  }

  .lg\:hover\:origin-bottom-right:hover{
    transform-origin     : bottom right !important;
  }

  .lg\:hover\:origin-bottom:hover{
    transform-origin     : bottom !important;
  }

  .lg\:hover\:origin-bottom-left:hover{
    transform-origin     : bottom left !important;
  }

  .lg\:hover\:origin-left:hover{
    transform-origin     : left !important;
  }

  .lg\:hover\:origin-top-left:hover{
    transform-origin     : top left !important;
  }

  .lg\:focus\:origin-center:focus{
    transform-origin     : center !important;
  }

  .lg\:focus\:origin-top:focus{
    transform-origin     : top !important;
  }

  .lg\:focus\:origin-top-right:focus{
    transform-origin     : top right !important;
  }

  .lg\:focus\:origin-right:focus{
    transform-origin     : right !important;
  }

  .lg\:focus\:origin-bottom-right:focus{
    transform-origin     : bottom right !important;
  }

  .lg\:focus\:origin-bottom:focus{
    transform-origin     : bottom !important;
  }

  .lg\:focus\:origin-bottom-left:focus{
    transform-origin     : bottom left !important;
  }

  .lg\:focus\:origin-left:focus{
    transform-origin     : left !important;
  }

  .lg\:focus\:origin-top-left:focus{
    transform-origin     : top left !important;
  }

  .lg\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .lg\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .lg\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .lg\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .lg\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .lg\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .lg\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .lg\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .lg\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .lg\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .lg\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .lg\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .lg\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .lg\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .lg\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .lg\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .lg\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .lg\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .lg\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .lg\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .lg\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .lg\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .lg\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .lg\:group-hover\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .group:hover .lg\:group-hover\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .group:hover .lg\:group-hover\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .group:hover .lg\:group-hover\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .group:hover .lg\:group-hover\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .group:hover .lg\:group-hover\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .group:hover .lg\:group-hover\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .lg\:group-hover\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .lg\:group-hover\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .lg\:group-hover\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .group:hover .lg\:group-hover\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .lg\:group-hover\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:hover\:scale-0:hover{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .lg\:hover\:scale-50:hover{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .lg\:hover\:scale-75:hover{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .lg\:hover\:scale-90:hover{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .lg\:hover\:scale-95:hover{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .lg\:hover\:scale-100:hover{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .lg\:hover\:scale-105:hover{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:hover\:scale-110:hover{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:hover\:scale-125:hover{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:hover\:scale-150:hover{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:hover\:scale-x-0:hover{
    --transform-scale-x     : 0 !important;
  }

  .lg\:hover\:scale-x-50:hover{
    --transform-scale-x     : .5 !important;
  }

  .lg\:hover\:scale-x-75:hover{
    --transform-scale-x     : .75 !important;
  }

  .lg\:hover\:scale-x-90:hover{
    --transform-scale-x     : .9 !important;
  }

  .lg\:hover\:scale-x-95:hover{
    --transform-scale-x     : .95 !important;
  }

  .lg\:hover\:scale-x-100:hover{
    --transform-scale-x     : 1 !important;
  }

  .lg\:hover\:scale-x-105:hover{
    --transform-scale-x     : 1.05 !important;
  }

  .lg\:hover\:scale-x-110:hover{
    --transform-scale-x     : 1.1 !important;
  }

  .lg\:hover\:scale-x-125:hover{
    --transform-scale-x     : 1.25 !important;
  }

  .lg\:hover\:scale-x-150:hover{
    --transform-scale-x     : 1.5 !important;
  }

  .lg\:hover\:scale-y-0:hover{
    --transform-scale-y     : 0 !important;
  }

  .lg\:hover\:scale-y-50:hover{
    --transform-scale-y     : .5 !important;
  }

  .lg\:hover\:scale-y-75:hover{
    --transform-scale-y     : .75 !important;
  }

  .lg\:hover\:scale-y-90:hover{
    --transform-scale-y     : .9 !important;
  }

  .lg\:hover\:scale-y-95:hover{
    --transform-scale-y     : .95 !important;
  }

  .lg\:hover\:scale-y-100:hover{
    --transform-scale-y     : 1 !important;
  }

  .lg\:hover\:scale-y-105:hover{
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:hover\:scale-y-110:hover{
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:hover\:scale-y-125:hover{
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:hover\:scale-y-150:hover{
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:focus\:scale-0:focus{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .lg\:focus\:scale-50:focus{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .lg\:focus\:scale-75:focus{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .lg\:focus\:scale-90:focus{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .lg\:focus\:scale-95:focus{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .lg\:focus\:scale-100:focus{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .lg\:focus\:scale-105:focus{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:focus\:scale-110:focus{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:focus\:scale-125:focus{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:focus\:scale-150:focus{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:focus\:scale-x-0:focus{
    --transform-scale-x     : 0 !important;
  }

  .lg\:focus\:scale-x-50:focus{
    --transform-scale-x     : .5 !important;
  }

  .lg\:focus\:scale-x-75:focus{
    --transform-scale-x     : .75 !important;
  }

  .lg\:focus\:scale-x-90:focus{
    --transform-scale-x     : .9 !important;
  }

  .lg\:focus\:scale-x-95:focus{
    --transform-scale-x     : .95 !important;
  }

  .lg\:focus\:scale-x-100:focus{
    --transform-scale-x     : 1 !important;
  }

  .lg\:focus\:scale-x-105:focus{
    --transform-scale-x     : 1.05 !important;
  }

  .lg\:focus\:scale-x-110:focus{
    --transform-scale-x     : 1.1 !important;
  }

  .lg\:focus\:scale-x-125:focus{
    --transform-scale-x     : 1.25 !important;
  }

  .lg\:focus\:scale-x-150:focus{
    --transform-scale-x     : 1.5 !important;
  }

  .lg\:focus\:scale-y-0:focus{
    --transform-scale-y     : 0 !important;
  }

  .lg\:focus\:scale-y-50:focus{
    --transform-scale-y     : .5 !important;
  }

  .lg\:focus\:scale-y-75:focus{
    --transform-scale-y     : .75 !important;
  }

  .lg\:focus\:scale-y-90:focus{
    --transform-scale-y     : .9 !important;
  }

  .lg\:focus\:scale-y-95:focus{
    --transform-scale-y     : .95 !important;
  }

  .lg\:focus\:scale-y-100:focus{
    --transform-scale-y     : 1 !important;
  }

  .lg\:focus\:scale-y-105:focus{
    --transform-scale-y     : 1.05 !important;
  }

  .lg\:focus\:scale-y-110:focus{
    --transform-scale-y     : 1.1 !important;
  }

  .lg\:focus\:scale-y-125:focus{
    --transform-scale-y     : 1.25 !important;
  }

  .lg\:focus\:scale-y-150:focus{
    --transform-scale-y     : 1.5 !important;
  }

  .lg\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .lg\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .lg\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .lg\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .lg\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .lg\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .lg\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .group:hover .lg\:group-hover\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .group:hover .lg\:group-hover\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .group:hover .lg\:group-hover\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .group:hover .lg\:group-hover\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .group:hover .lg\:group-hover\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .group:hover .lg\:group-hover\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .group:hover .lg\:group-hover\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .lg\:hover\:rotate-0:hover{
    --transform-rotate     : 0 !important;
  }

  .lg\:hover\:rotate-45:hover{
    --transform-rotate     : 45deg !important;
  }

  .lg\:hover\:rotate-90:hover{
    --transform-rotate     : 90deg !important;
  }

  .lg\:hover\:rotate-180:hover{
    --transform-rotate     : 180deg !important;
  }

  .lg\:hover\:-rotate-180:hover{
    --transform-rotate     : -180deg !important;
  }

  .lg\:hover\:-rotate-90:hover{
    --transform-rotate     : -90deg !important;
  }

  .lg\:hover\:-rotate-45:hover{
    --transform-rotate     : -45deg !important;
  }

  .lg\:focus\:rotate-0:focus{
    --transform-rotate     : 0 !important;
  }

  .lg\:focus\:rotate-45:focus{
    --transform-rotate     : 45deg !important;
  }

  .lg\:focus\:rotate-90:focus{
    --transform-rotate     : 90deg !important;
  }

  .lg\:focus\:rotate-180:focus{
    --transform-rotate     : 180deg !important;
  }

  .lg\:focus\:-rotate-180:focus{
    --transform-rotate     : -180deg !important;
  }

  .lg\:focus\:-rotate-90:focus{
    --transform-rotate     : -90deg !important;
  }

  .lg\:focus\:-rotate-45:focus{
    --transform-rotate     : -45deg !important;
  }

  .lg\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .lg\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .lg\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .lg\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .lg\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .lg\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .lg\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .lg\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .lg\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .lg\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .lg\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .lg\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .lg\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .lg\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .lg\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .lg\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .lg\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .lg\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .lg\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .lg\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .lg\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .lg\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .lg\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .lg\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .lg\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .lg\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .lg\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .lg\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .lg\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .lg\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .lg\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .lg\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .lg\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .lg\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .lg\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .lg\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .lg\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .lg\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .lg\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .lg\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .lg\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .lg\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .lg\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .lg\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .lg\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .lg\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .lg\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .lg\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .lg\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .lg\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .lg\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .lg\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .lg\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .lg\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .lg\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .lg\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .lg\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .lg\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .lg\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .lg\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .lg\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .lg\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .lg\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .lg\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .lg\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .lg\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .lg\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .lg\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .lg\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .lg\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .lg\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .lg\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .lg\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .lg\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .lg\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .lg\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .lg\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .lg\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .lg\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .lg\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .lg\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .lg\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .lg\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .lg\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .lg\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .lg\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .lg\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .lg\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .lg\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .lg\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .lg\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .lg\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .lg\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .lg\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .lg\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .lg\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .lg\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .lg\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .lg\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .lg\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .lg\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .lg\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .lg\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .lg\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .lg\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .lg\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .lg\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .lg\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .lg\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .lg\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .lg\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .lg\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .lg\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .lg\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .lg\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .lg\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .lg\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .lg\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .lg\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .lg\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .lg\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .lg\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .lg\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .lg\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .lg\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .lg\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .lg\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .lg\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .lg\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .lg\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .lg\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .lg\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .lg\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .lg\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .lg\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .lg\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .lg\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .lg\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .lg\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .lg\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .lg\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .lg\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .lg\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .lg\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .lg\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .lg\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .lg\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .lg\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .lg\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .lg\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .lg\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .lg\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .lg\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .lg\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .lg\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .lg\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .lg\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .lg\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .lg\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .lg\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .lg\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .lg\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .lg\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .lg\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .lg\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .lg\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .lg\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .lg\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .lg\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .lg\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .lg\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .lg\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .lg\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .lg\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .lg\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .lg\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .lg\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .lg\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .lg\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .lg\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .lg\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .lg\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .lg\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .lg\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .lg\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .lg\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .lg\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .lg\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .lg\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .lg\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .lg\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .lg\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .lg\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .lg\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .lg\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .lg\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .lg\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .lg\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .lg\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .lg\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .lg\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .lg\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .lg\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .lg\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .lg\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .lg\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .lg\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .lg\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .lg\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .lg\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .lg\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .lg\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .lg\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .lg\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .group:hover .lg\:group-hover\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .group:hover .lg\:group-hover\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .group:hover .lg\:group-hover\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .group:hover .lg\:group-hover\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .lg\:hover\:translate-x-0:hover{
    --transform-translate-x     : 0 !important;
  }

  .lg\:hover\:translate-x-1:hover{
    --transform-translate-x     : 0.25rem !important;
  }

  .lg\:hover\:translate-x-2:hover{
    --transform-translate-x     : 0.5rem !important;
  }

  .lg\:hover\:translate-x-3:hover{
    --transform-translate-x     : 0.75rem !important;
  }

  .lg\:hover\:translate-x-4:hover{
    --transform-translate-x     : 1rem !important;
  }

  .lg\:hover\:translate-x-5:hover{
    --transform-translate-x     : 1.25rem !important;
  }

  .lg\:hover\:translate-x-6:hover{
    --transform-translate-x     : 1.5rem !important;
  }

  .lg\:hover\:translate-x-7:hover{
    --transform-translate-x     : 1.75rem !important;
  }

  .lg\:hover\:translate-x-8:hover{
    --transform-translate-x     : 2rem !important;
  }

  .lg\:hover\:translate-x-9:hover{
    --transform-translate-x     : 2.25rem !important;
  }

  .lg\:hover\:translate-x-10:hover{
    --transform-translate-x     : 2.5rem !important;
  }

  .lg\:hover\:translate-x-11:hover{
    --transform-translate-x     : 2.75rem !important;
  }

  .lg\:hover\:translate-x-12:hover{
    --transform-translate-x     : 3rem !important;
  }

  .lg\:hover\:translate-x-13:hover{
    --transform-translate-x     : 3.25rem !important;
  }

  .lg\:hover\:translate-x-14:hover{
    --transform-translate-x     : 3.5rem !important;
  }

  .lg\:hover\:translate-x-15:hover{
    --transform-translate-x     : 3.75rem !important;
  }

  .lg\:hover\:translate-x-16:hover{
    --transform-translate-x     : 4rem !important;
  }

  .lg\:hover\:translate-x-20:hover{
    --transform-translate-x     : 5rem !important;
  }

  .lg\:hover\:translate-x-24:hover{
    --transform-translate-x     : 6rem !important;
  }

  .lg\:hover\:translate-x-28:hover{
    --transform-translate-x     : 7rem !important;
  }

  .lg\:hover\:translate-x-32:hover{
    --transform-translate-x     : 8rem !important;
  }

  .lg\:hover\:translate-x-36:hover{
    --transform-translate-x     : 9rem !important;
  }

  .lg\:hover\:translate-x-40:hover{
    --transform-translate-x     : 10rem !important;
  }

  .lg\:hover\:translate-x-44:hover{
    --transform-translate-x     : 11rem !important;
  }

  .lg\:hover\:translate-x-48:hover{
    --transform-translate-x     : 12rem !important;
  }

  .lg\:hover\:translate-x-52:hover{
    --transform-translate-x     : 13rem !important;
  }

  .lg\:hover\:translate-x-56:hover{
    --transform-translate-x     : 14rem !important;
  }

  .lg\:hover\:translate-x-60:hover{
    --transform-translate-x     : 15rem !important;
  }

  .lg\:hover\:translate-x-64:hover{
    --transform-translate-x     : 16rem !important;
  }

  .lg\:hover\:translate-x-72:hover{
    --transform-translate-x     : 18rem !important;
  }

  .lg\:hover\:translate-x-80:hover{
    --transform-translate-x     : 20rem !important;
  }

  .lg\:hover\:translate-x-96:hover{
    --transform-translate-x     : 24rem !important;
  }

  .lg\:hover\:translate-x-px:hover{
    --transform-translate-x     : 1px !important;
  }

  .lg\:hover\:translate-x-0\.5:hover{
    --transform-translate-x     : 0.125rem !important;
  }

  .lg\:hover\:translate-x-1\.5:hover{
    --transform-translate-x     : 0.375rem !important;
  }

  .lg\:hover\:translate-x-2\.5:hover{
    --transform-translate-x     : 0.625rem !important;
  }

  .lg\:hover\:translate-x-3\.5:hover{
    --transform-translate-x     : 0.875rem !important;
  }

  .lg\:hover\:translate-x-1\/2:hover{
    --transform-translate-x     : 50% !important;
  }

  .lg\:hover\:translate-x-1\/3:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:hover\:translate-x-2\/3:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:hover\:translate-x-1\/4:hover{
    --transform-translate-x     : 25% !important;
  }

  .lg\:hover\:translate-x-2\/4:hover{
    --transform-translate-x     : 50% !important;
  }

  .lg\:hover\:translate-x-3\/4:hover{
    --transform-translate-x     : 75% !important;
  }

  .lg\:hover\:translate-x-1\/5:hover{
    --transform-translate-x     : 20% !important;
  }

  .lg\:hover\:translate-x-2\/5:hover{
    --transform-translate-x     : 40% !important;
  }

  .lg\:hover\:translate-x-3\/5:hover{
    --transform-translate-x     : 60% !important;
  }

  .lg\:hover\:translate-x-4\/5:hover{
    --transform-translate-x     : 80% !important;
  }

  .lg\:hover\:translate-x-1\/6:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:hover\:translate-x-2\/6:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:hover\:translate-x-3\/6:hover{
    --transform-translate-x     : 50% !important;
  }

  .lg\:hover\:translate-x-4\/6:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:hover\:translate-x-5\/6:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:hover\:translate-x-1\/12:hover{
    --transform-translate-x     : 8.333333% !important;
  }

  .lg\:hover\:translate-x-2\/12:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:hover\:translate-x-3\/12:hover{
    --transform-translate-x     : 25% !important;
  }

  .lg\:hover\:translate-x-4\/12:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:hover\:translate-x-5\/12:hover{
    --transform-translate-x     : 41.666667% !important;
  }

  .lg\:hover\:translate-x-6\/12:hover{
    --transform-translate-x     : 50% !important;
  }

  .lg\:hover\:translate-x-7\/12:hover{
    --transform-translate-x     : 58.333333% !important;
  }

  .lg\:hover\:translate-x-8\/12:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:hover\:translate-x-9\/12:hover{
    --transform-translate-x     : 75% !important;
  }

  .lg\:hover\:translate-x-10\/12:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:hover\:translate-x-11\/12:hover{
    --transform-translate-x     : 91.666667% !important;
  }

  .lg\:hover\:translate-x-full:hover{
    --transform-translate-x     : 100% !important;
  }

  .lg\:hover\:-translate-x-1:hover{
    --transform-translate-x     : -0.25rem !important;
  }

  .lg\:hover\:-translate-x-2:hover{
    --transform-translate-x     : -0.5rem !important;
  }

  .lg\:hover\:-translate-x-3:hover{
    --transform-translate-x     : -0.75rem !important;
  }

  .lg\:hover\:-translate-x-4:hover{
    --transform-translate-x     : -1rem !important;
  }

  .lg\:hover\:-translate-x-5:hover{
    --transform-translate-x     : -1.25rem !important;
  }

  .lg\:hover\:-translate-x-6:hover{
    --transform-translate-x     : -1.5rem !important;
  }

  .lg\:hover\:-translate-x-7:hover{
    --transform-translate-x     : -1.75rem !important;
  }

  .lg\:hover\:-translate-x-8:hover{
    --transform-translate-x     : -2rem !important;
  }

  .lg\:hover\:-translate-x-9:hover{
    --transform-translate-x     : -2.25rem !important;
  }

  .lg\:hover\:-translate-x-10:hover{
    --transform-translate-x     : -2.5rem !important;
  }

  .lg\:hover\:-translate-x-11:hover{
    --transform-translate-x     : -2.75rem !important;
  }

  .lg\:hover\:-translate-x-12:hover{
    --transform-translate-x     : -3rem !important;
  }

  .lg\:hover\:-translate-x-13:hover{
    --transform-translate-x     : -3.25rem !important;
  }

  .lg\:hover\:-translate-x-14:hover{
    --transform-translate-x     : -3.5rem !important;
  }

  .lg\:hover\:-translate-x-15:hover{
    --transform-translate-x     : -3.75rem !important;
  }

  .lg\:hover\:-translate-x-16:hover{
    --transform-translate-x     : -4rem !important;
  }

  .lg\:hover\:-translate-x-20:hover{
    --transform-translate-x     : -5rem !important;
  }

  .lg\:hover\:-translate-x-24:hover{
    --transform-translate-x     : -6rem !important;
  }

  .lg\:hover\:-translate-x-28:hover{
    --transform-translate-x     : -7rem !important;
  }

  .lg\:hover\:-translate-x-32:hover{
    --transform-translate-x     : -8rem !important;
  }

  .lg\:hover\:-translate-x-36:hover{
    --transform-translate-x     : -9rem !important;
  }

  .lg\:hover\:-translate-x-40:hover{
    --transform-translate-x     : -10rem !important;
  }

  .lg\:hover\:-translate-x-44:hover{
    --transform-translate-x     : -11rem !important;
  }

  .lg\:hover\:-translate-x-48:hover{
    --transform-translate-x     : -12rem !important;
  }

  .lg\:hover\:-translate-x-52:hover{
    --transform-translate-x     : -13rem !important;
  }

  .lg\:hover\:-translate-x-56:hover{
    --transform-translate-x     : -14rem !important;
  }

  .lg\:hover\:-translate-x-60:hover{
    --transform-translate-x     : -15rem !important;
  }

  .lg\:hover\:-translate-x-64:hover{
    --transform-translate-x     : -16rem !important;
  }

  .lg\:hover\:-translate-x-72:hover{
    --transform-translate-x     : -18rem !important;
  }

  .lg\:hover\:-translate-x-80:hover{
    --transform-translate-x     : -20rem !important;
  }

  .lg\:hover\:-translate-x-96:hover{
    --transform-translate-x     : -24rem !important;
  }

  .lg\:hover\:-translate-x-px:hover{
    --transform-translate-x     : -1px !important;
  }

  .lg\:hover\:-translate-x-0\.5:hover{
    --transform-translate-x     : -0.125rem !important;
  }

  .lg\:hover\:-translate-x-1\.5:hover{
    --transform-translate-x     : -0.375rem !important;
  }

  .lg\:hover\:-translate-x-2\.5:hover{
    --transform-translate-x     : -0.625rem !important;
  }

  .lg\:hover\:-translate-x-3\.5:hover{
    --transform-translate-x     : -0.875rem !important;
  }

  .lg\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x     : -50% !important;
  }

  .lg\:hover\:-translate-x-1\/3:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:hover\:-translate-x-2\/3:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:hover\:-translate-x-1\/4:hover{
    --transform-translate-x     : -25% !important;
  }

  .lg\:hover\:-translate-x-2\/4:hover{
    --transform-translate-x     : -50% !important;
  }

  .lg\:hover\:-translate-x-3\/4:hover{
    --transform-translate-x     : -75% !important;
  }

  .lg\:hover\:-translate-x-1\/5:hover{
    --transform-translate-x     : -20% !important;
  }

  .lg\:hover\:-translate-x-2\/5:hover{
    --transform-translate-x     : -40% !important;
  }

  .lg\:hover\:-translate-x-3\/5:hover{
    --transform-translate-x     : -60% !important;
  }

  .lg\:hover\:-translate-x-4\/5:hover{
    --transform-translate-x     : -80% !important;
  }

  .lg\:hover\:-translate-x-1\/6:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:hover\:-translate-x-2\/6:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:hover\:-translate-x-3\/6:hover{
    --transform-translate-x     : -50% !important;
  }

  .lg\:hover\:-translate-x-4\/6:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:hover\:-translate-x-5\/6:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:hover\:-translate-x-1\/12:hover{
    --transform-translate-x     : -8.33333% !important;
  }

  .lg\:hover\:-translate-x-2\/12:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:hover\:-translate-x-3\/12:hover{
    --transform-translate-x     : -25% !important;
  }

  .lg\:hover\:-translate-x-4\/12:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:hover\:-translate-x-5\/12:hover{
    --transform-translate-x     : -41.66667% !important;
  }

  .lg\:hover\:-translate-x-6\/12:hover{
    --transform-translate-x     : -50% !important;
  }

  .lg\:hover\:-translate-x-7\/12:hover{
    --transform-translate-x     : -58.33333% !important;
  }

  .lg\:hover\:-translate-x-8\/12:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:hover\:-translate-x-9\/12:hover{
    --transform-translate-x     : -75% !important;
  }

  .lg\:hover\:-translate-x-10\/12:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:hover\:-translate-x-11\/12:hover{
    --transform-translate-x     : -91.66667% !important;
  }

  .lg\:hover\:-translate-x-full:hover{
    --transform-translate-x     : -100% !important;
  }

  .lg\:hover\:translate-y-0:hover{
    --transform-translate-y     : 0 !important;
  }

  .lg\:hover\:translate-y-1:hover{
    --transform-translate-y     : 0.25rem !important;
  }

  .lg\:hover\:translate-y-2:hover{
    --transform-translate-y     : 0.5rem !important;
  }

  .lg\:hover\:translate-y-3:hover{
    --transform-translate-y     : 0.75rem !important;
  }

  .lg\:hover\:translate-y-4:hover{
    --transform-translate-y     : 1rem !important;
  }

  .lg\:hover\:translate-y-5:hover{
    --transform-translate-y     : 1.25rem !important;
  }

  .lg\:hover\:translate-y-6:hover{
    --transform-translate-y     : 1.5rem !important;
  }

  .lg\:hover\:translate-y-7:hover{
    --transform-translate-y     : 1.75rem !important;
  }

  .lg\:hover\:translate-y-8:hover{
    --transform-translate-y     : 2rem !important;
  }

  .lg\:hover\:translate-y-9:hover{
    --transform-translate-y     : 2.25rem !important;
  }

  .lg\:hover\:translate-y-10:hover{
    --transform-translate-y     : 2.5rem !important;
  }

  .lg\:hover\:translate-y-11:hover{
    --transform-translate-y     : 2.75rem !important;
  }

  .lg\:hover\:translate-y-12:hover{
    --transform-translate-y     : 3rem !important;
  }

  .lg\:hover\:translate-y-13:hover{
    --transform-translate-y     : 3.25rem !important;
  }

  .lg\:hover\:translate-y-14:hover{
    --transform-translate-y     : 3.5rem !important;
  }

  .lg\:hover\:translate-y-15:hover{
    --transform-translate-y     : 3.75rem !important;
  }

  .lg\:hover\:translate-y-16:hover{
    --transform-translate-y     : 4rem !important;
  }

  .lg\:hover\:translate-y-20:hover{
    --transform-translate-y     : 5rem !important;
  }

  .lg\:hover\:translate-y-24:hover{
    --transform-translate-y     : 6rem !important;
  }

  .lg\:hover\:translate-y-28:hover{
    --transform-translate-y     : 7rem !important;
  }

  .lg\:hover\:translate-y-32:hover{
    --transform-translate-y     : 8rem !important;
  }

  .lg\:hover\:translate-y-36:hover{
    --transform-translate-y     : 9rem !important;
  }

  .lg\:hover\:translate-y-40:hover{
    --transform-translate-y     : 10rem !important;
  }

  .lg\:hover\:translate-y-44:hover{
    --transform-translate-y     : 11rem !important;
  }

  .lg\:hover\:translate-y-48:hover{
    --transform-translate-y     : 12rem !important;
  }

  .lg\:hover\:translate-y-52:hover{
    --transform-translate-y     : 13rem !important;
  }

  .lg\:hover\:translate-y-56:hover{
    --transform-translate-y     : 14rem !important;
  }

  .lg\:hover\:translate-y-60:hover{
    --transform-translate-y     : 15rem !important;
  }

  .lg\:hover\:translate-y-64:hover{
    --transform-translate-y     : 16rem !important;
  }

  .lg\:hover\:translate-y-72:hover{
    --transform-translate-y     : 18rem !important;
  }

  .lg\:hover\:translate-y-80:hover{
    --transform-translate-y     : 20rem !important;
  }

  .lg\:hover\:translate-y-96:hover{
    --transform-translate-y     : 24rem !important;
  }

  .lg\:hover\:translate-y-px:hover{
    --transform-translate-y     : 1px !important;
  }

  .lg\:hover\:translate-y-0\.5:hover{
    --transform-translate-y     : 0.125rem !important;
  }

  .lg\:hover\:translate-y-1\.5:hover{
    --transform-translate-y     : 0.375rem !important;
  }

  .lg\:hover\:translate-y-2\.5:hover{
    --transform-translate-y     : 0.625rem !important;
  }

  .lg\:hover\:translate-y-3\.5:hover{
    --transform-translate-y     : 0.875rem !important;
  }

  .lg\:hover\:translate-y-1\/2:hover{
    --transform-translate-y     : 50% !important;
  }

  .lg\:hover\:translate-y-1\/3:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:hover\:translate-y-2\/3:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:hover\:translate-y-1\/4:hover{
    --transform-translate-y     : 25% !important;
  }

  .lg\:hover\:translate-y-2\/4:hover{
    --transform-translate-y     : 50% !important;
  }

  .lg\:hover\:translate-y-3\/4:hover{
    --transform-translate-y     : 75% !important;
  }

  .lg\:hover\:translate-y-1\/5:hover{
    --transform-translate-y     : 20% !important;
  }

  .lg\:hover\:translate-y-2\/5:hover{
    --transform-translate-y     : 40% !important;
  }

  .lg\:hover\:translate-y-3\/5:hover{
    --transform-translate-y     : 60% !important;
  }

  .lg\:hover\:translate-y-4\/5:hover{
    --transform-translate-y     : 80% !important;
  }

  .lg\:hover\:translate-y-1\/6:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:hover\:translate-y-2\/6:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:hover\:translate-y-3\/6:hover{
    --transform-translate-y     : 50% !important;
  }

  .lg\:hover\:translate-y-4\/6:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:hover\:translate-y-5\/6:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:hover\:translate-y-1\/12:hover{
    --transform-translate-y     : 8.333333% !important;
  }

  .lg\:hover\:translate-y-2\/12:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:hover\:translate-y-3\/12:hover{
    --transform-translate-y     : 25% !important;
  }

  .lg\:hover\:translate-y-4\/12:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:hover\:translate-y-5\/12:hover{
    --transform-translate-y     : 41.666667% !important;
  }

  .lg\:hover\:translate-y-6\/12:hover{
    --transform-translate-y     : 50% !important;
  }

  .lg\:hover\:translate-y-7\/12:hover{
    --transform-translate-y     : 58.333333% !important;
  }

  .lg\:hover\:translate-y-8\/12:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:hover\:translate-y-9\/12:hover{
    --transform-translate-y     : 75% !important;
  }

  .lg\:hover\:translate-y-10\/12:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:hover\:translate-y-11\/12:hover{
    --transform-translate-y     : 91.666667% !important;
  }

  .lg\:hover\:translate-y-full:hover{
    --transform-translate-y     : 100% !important;
  }

  .lg\:hover\:-translate-y-1:hover{
    --transform-translate-y     : -0.25rem !important;
  }

  .lg\:hover\:-translate-y-2:hover{
    --transform-translate-y     : -0.5rem !important;
  }

  .lg\:hover\:-translate-y-3:hover{
    --transform-translate-y     : -0.75rem !important;
  }

  .lg\:hover\:-translate-y-4:hover{
    --transform-translate-y     : -1rem !important;
  }

  .lg\:hover\:-translate-y-5:hover{
    --transform-translate-y     : -1.25rem !important;
  }

  .lg\:hover\:-translate-y-6:hover{
    --transform-translate-y     : -1.5rem !important;
  }

  .lg\:hover\:-translate-y-7:hover{
    --transform-translate-y     : -1.75rem !important;
  }

  .lg\:hover\:-translate-y-8:hover{
    --transform-translate-y     : -2rem !important;
  }

  .lg\:hover\:-translate-y-9:hover{
    --transform-translate-y     : -2.25rem !important;
  }

  .lg\:hover\:-translate-y-10:hover{
    --transform-translate-y     : -2.5rem !important;
  }

  .lg\:hover\:-translate-y-11:hover{
    --transform-translate-y     : -2.75rem !important;
  }

  .lg\:hover\:-translate-y-12:hover{
    --transform-translate-y     : -3rem !important;
  }

  .lg\:hover\:-translate-y-13:hover{
    --transform-translate-y     : -3.25rem !important;
  }

  .lg\:hover\:-translate-y-14:hover{
    --transform-translate-y     : -3.5rem !important;
  }

  .lg\:hover\:-translate-y-15:hover{
    --transform-translate-y     : -3.75rem !important;
  }

  .lg\:hover\:-translate-y-16:hover{
    --transform-translate-y     : -4rem !important;
  }

  .lg\:hover\:-translate-y-20:hover{
    --transform-translate-y     : -5rem !important;
  }

  .lg\:hover\:-translate-y-24:hover{
    --transform-translate-y     : -6rem !important;
  }

  .lg\:hover\:-translate-y-28:hover{
    --transform-translate-y     : -7rem !important;
  }

  .lg\:hover\:-translate-y-32:hover{
    --transform-translate-y     : -8rem !important;
  }

  .lg\:hover\:-translate-y-36:hover{
    --transform-translate-y     : -9rem !important;
  }

  .lg\:hover\:-translate-y-40:hover{
    --transform-translate-y     : -10rem !important;
  }

  .lg\:hover\:-translate-y-44:hover{
    --transform-translate-y     : -11rem !important;
  }

  .lg\:hover\:-translate-y-48:hover{
    --transform-translate-y     : -12rem !important;
  }

  .lg\:hover\:-translate-y-52:hover{
    --transform-translate-y     : -13rem !important;
  }

  .lg\:hover\:-translate-y-56:hover{
    --transform-translate-y     : -14rem !important;
  }

  .lg\:hover\:-translate-y-60:hover{
    --transform-translate-y     : -15rem !important;
  }

  .lg\:hover\:-translate-y-64:hover{
    --transform-translate-y     : -16rem !important;
  }

  .lg\:hover\:-translate-y-72:hover{
    --transform-translate-y     : -18rem !important;
  }

  .lg\:hover\:-translate-y-80:hover{
    --transform-translate-y     : -20rem !important;
  }

  .lg\:hover\:-translate-y-96:hover{
    --transform-translate-y     : -24rem !important;
  }

  .lg\:hover\:-translate-y-px:hover{
    --transform-translate-y     : -1px !important;
  }

  .lg\:hover\:-translate-y-0\.5:hover{
    --transform-translate-y     : -0.125rem !important;
  }

  .lg\:hover\:-translate-y-1\.5:hover{
    --transform-translate-y     : -0.375rem !important;
  }

  .lg\:hover\:-translate-y-2\.5:hover{
    --transform-translate-y     : -0.625rem !important;
  }

  .lg\:hover\:-translate-y-3\.5:hover{
    --transform-translate-y     : -0.875rem !important;
  }

  .lg\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y     : -50% !important;
  }

  .lg\:hover\:-translate-y-1\/3:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:hover\:-translate-y-2\/3:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:hover\:-translate-y-1\/4:hover{
    --transform-translate-y     : -25% !important;
  }

  .lg\:hover\:-translate-y-2\/4:hover{
    --transform-translate-y     : -50% !important;
  }

  .lg\:hover\:-translate-y-3\/4:hover{
    --transform-translate-y     : -75% !important;
  }

  .lg\:hover\:-translate-y-1\/5:hover{
    --transform-translate-y     : -20% !important;
  }

  .lg\:hover\:-translate-y-2\/5:hover{
    --transform-translate-y     : -40% !important;
  }

  .lg\:hover\:-translate-y-3\/5:hover{
    --transform-translate-y     : -60% !important;
  }

  .lg\:hover\:-translate-y-4\/5:hover{
    --transform-translate-y     : -80% !important;
  }

  .lg\:hover\:-translate-y-1\/6:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:hover\:-translate-y-2\/6:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:hover\:-translate-y-3\/6:hover{
    --transform-translate-y     : -50% !important;
  }

  .lg\:hover\:-translate-y-4\/6:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:hover\:-translate-y-5\/6:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:hover\:-translate-y-1\/12:hover{
    --transform-translate-y     : -8.33333% !important;
  }

  .lg\:hover\:-translate-y-2\/12:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:hover\:-translate-y-3\/12:hover{
    --transform-translate-y     : -25% !important;
  }

  .lg\:hover\:-translate-y-4\/12:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:hover\:-translate-y-5\/12:hover{
    --transform-translate-y     : -41.66667% !important;
  }

  .lg\:hover\:-translate-y-6\/12:hover{
    --transform-translate-y     : -50% !important;
  }

  .lg\:hover\:-translate-y-7\/12:hover{
    --transform-translate-y     : -58.33333% !important;
  }

  .lg\:hover\:-translate-y-8\/12:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:hover\:-translate-y-9\/12:hover{
    --transform-translate-y     : -75% !important;
  }

  .lg\:hover\:-translate-y-10\/12:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:hover\:-translate-y-11\/12:hover{
    --transform-translate-y     : -91.66667% !important;
  }

  .lg\:hover\:-translate-y-full:hover{
    --transform-translate-y     : -100% !important;
  }

  .lg\:focus\:translate-x-0:focus{
    --transform-translate-x     : 0 !important;
  }

  .lg\:focus\:translate-x-1:focus{
    --transform-translate-x     : 0.25rem !important;
  }

  .lg\:focus\:translate-x-2:focus{
    --transform-translate-x     : 0.5rem !important;
  }

  .lg\:focus\:translate-x-3:focus{
    --transform-translate-x     : 0.75rem !important;
  }

  .lg\:focus\:translate-x-4:focus{
    --transform-translate-x     : 1rem !important;
  }

  .lg\:focus\:translate-x-5:focus{
    --transform-translate-x     : 1.25rem !important;
  }

  .lg\:focus\:translate-x-6:focus{
    --transform-translate-x     : 1.5rem !important;
  }

  .lg\:focus\:translate-x-7:focus{
    --transform-translate-x     : 1.75rem !important;
  }

  .lg\:focus\:translate-x-8:focus{
    --transform-translate-x     : 2rem !important;
  }

  .lg\:focus\:translate-x-9:focus{
    --transform-translate-x     : 2.25rem !important;
  }

  .lg\:focus\:translate-x-10:focus{
    --transform-translate-x     : 2.5rem !important;
  }

  .lg\:focus\:translate-x-11:focus{
    --transform-translate-x     : 2.75rem !important;
  }

  .lg\:focus\:translate-x-12:focus{
    --transform-translate-x     : 3rem !important;
  }

  .lg\:focus\:translate-x-13:focus{
    --transform-translate-x     : 3.25rem !important;
  }

  .lg\:focus\:translate-x-14:focus{
    --transform-translate-x     : 3.5rem !important;
  }

  .lg\:focus\:translate-x-15:focus{
    --transform-translate-x     : 3.75rem !important;
  }

  .lg\:focus\:translate-x-16:focus{
    --transform-translate-x     : 4rem !important;
  }

  .lg\:focus\:translate-x-20:focus{
    --transform-translate-x     : 5rem !important;
  }

  .lg\:focus\:translate-x-24:focus{
    --transform-translate-x     : 6rem !important;
  }

  .lg\:focus\:translate-x-28:focus{
    --transform-translate-x     : 7rem !important;
  }

  .lg\:focus\:translate-x-32:focus{
    --transform-translate-x     : 8rem !important;
  }

  .lg\:focus\:translate-x-36:focus{
    --transform-translate-x     : 9rem !important;
  }

  .lg\:focus\:translate-x-40:focus{
    --transform-translate-x     : 10rem !important;
  }

  .lg\:focus\:translate-x-44:focus{
    --transform-translate-x     : 11rem !important;
  }

  .lg\:focus\:translate-x-48:focus{
    --transform-translate-x     : 12rem !important;
  }

  .lg\:focus\:translate-x-52:focus{
    --transform-translate-x     : 13rem !important;
  }

  .lg\:focus\:translate-x-56:focus{
    --transform-translate-x     : 14rem !important;
  }

  .lg\:focus\:translate-x-60:focus{
    --transform-translate-x     : 15rem !important;
  }

  .lg\:focus\:translate-x-64:focus{
    --transform-translate-x     : 16rem !important;
  }

  .lg\:focus\:translate-x-72:focus{
    --transform-translate-x     : 18rem !important;
  }

  .lg\:focus\:translate-x-80:focus{
    --transform-translate-x     : 20rem !important;
  }

  .lg\:focus\:translate-x-96:focus{
    --transform-translate-x     : 24rem !important;
  }

  .lg\:focus\:translate-x-px:focus{
    --transform-translate-x     : 1px !important;
  }

  .lg\:focus\:translate-x-0\.5:focus{
    --transform-translate-x     : 0.125rem !important;
  }

  .lg\:focus\:translate-x-1\.5:focus{
    --transform-translate-x     : 0.375rem !important;
  }

  .lg\:focus\:translate-x-2\.5:focus{
    --transform-translate-x     : 0.625rem !important;
  }

  .lg\:focus\:translate-x-3\.5:focus{
    --transform-translate-x     : 0.875rem !important;
  }

  .lg\:focus\:translate-x-1\/2:focus{
    --transform-translate-x     : 50% !important;
  }

  .lg\:focus\:translate-x-1\/3:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:focus\:translate-x-2\/3:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:focus\:translate-x-1\/4:focus{
    --transform-translate-x     : 25% !important;
  }

  .lg\:focus\:translate-x-2\/4:focus{
    --transform-translate-x     : 50% !important;
  }

  .lg\:focus\:translate-x-3\/4:focus{
    --transform-translate-x     : 75% !important;
  }

  .lg\:focus\:translate-x-1\/5:focus{
    --transform-translate-x     : 20% !important;
  }

  .lg\:focus\:translate-x-2\/5:focus{
    --transform-translate-x     : 40% !important;
  }

  .lg\:focus\:translate-x-3\/5:focus{
    --transform-translate-x     : 60% !important;
  }

  .lg\:focus\:translate-x-4\/5:focus{
    --transform-translate-x     : 80% !important;
  }

  .lg\:focus\:translate-x-1\/6:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:focus\:translate-x-2\/6:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:focus\:translate-x-3\/6:focus{
    --transform-translate-x     : 50% !important;
  }

  .lg\:focus\:translate-x-4\/6:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:focus\:translate-x-5\/6:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:focus\:translate-x-1\/12:focus{
    --transform-translate-x     : 8.333333% !important;
  }

  .lg\:focus\:translate-x-2\/12:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .lg\:focus\:translate-x-3\/12:focus{
    --transform-translate-x     : 25% !important;
  }

  .lg\:focus\:translate-x-4\/12:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .lg\:focus\:translate-x-5\/12:focus{
    --transform-translate-x     : 41.666667% !important;
  }

  .lg\:focus\:translate-x-6\/12:focus{
    --transform-translate-x     : 50% !important;
  }

  .lg\:focus\:translate-x-7\/12:focus{
    --transform-translate-x     : 58.333333% !important;
  }

  .lg\:focus\:translate-x-8\/12:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .lg\:focus\:translate-x-9\/12:focus{
    --transform-translate-x     : 75% !important;
  }

  .lg\:focus\:translate-x-10\/12:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .lg\:focus\:translate-x-11\/12:focus{
    --transform-translate-x     : 91.666667% !important;
  }

  .lg\:focus\:translate-x-full:focus{
    --transform-translate-x     : 100% !important;
  }

  .lg\:focus\:-translate-x-1:focus{
    --transform-translate-x     : -0.25rem !important;
  }

  .lg\:focus\:-translate-x-2:focus{
    --transform-translate-x     : -0.5rem !important;
  }

  .lg\:focus\:-translate-x-3:focus{
    --transform-translate-x     : -0.75rem !important;
  }

  .lg\:focus\:-translate-x-4:focus{
    --transform-translate-x     : -1rem !important;
  }

  .lg\:focus\:-translate-x-5:focus{
    --transform-translate-x     : -1.25rem !important;
  }

  .lg\:focus\:-translate-x-6:focus{
    --transform-translate-x     : -1.5rem !important;
  }

  .lg\:focus\:-translate-x-7:focus{
    --transform-translate-x     : -1.75rem !important;
  }

  .lg\:focus\:-translate-x-8:focus{
    --transform-translate-x     : -2rem !important;
  }

  .lg\:focus\:-translate-x-9:focus{
    --transform-translate-x     : -2.25rem !important;
  }

  .lg\:focus\:-translate-x-10:focus{
    --transform-translate-x     : -2.5rem !important;
  }

  .lg\:focus\:-translate-x-11:focus{
    --transform-translate-x     : -2.75rem !important;
  }

  .lg\:focus\:-translate-x-12:focus{
    --transform-translate-x     : -3rem !important;
  }

  .lg\:focus\:-translate-x-13:focus{
    --transform-translate-x     : -3.25rem !important;
  }

  .lg\:focus\:-translate-x-14:focus{
    --transform-translate-x     : -3.5rem !important;
  }

  .lg\:focus\:-translate-x-15:focus{
    --transform-translate-x     : -3.75rem !important;
  }

  .lg\:focus\:-translate-x-16:focus{
    --transform-translate-x     : -4rem !important;
  }

  .lg\:focus\:-translate-x-20:focus{
    --transform-translate-x     : -5rem !important;
  }

  .lg\:focus\:-translate-x-24:focus{
    --transform-translate-x     : -6rem !important;
  }

  .lg\:focus\:-translate-x-28:focus{
    --transform-translate-x     : -7rem !important;
  }

  .lg\:focus\:-translate-x-32:focus{
    --transform-translate-x     : -8rem !important;
  }

  .lg\:focus\:-translate-x-36:focus{
    --transform-translate-x     : -9rem !important;
  }

  .lg\:focus\:-translate-x-40:focus{
    --transform-translate-x     : -10rem !important;
  }

  .lg\:focus\:-translate-x-44:focus{
    --transform-translate-x     : -11rem !important;
  }

  .lg\:focus\:-translate-x-48:focus{
    --transform-translate-x     : -12rem !important;
  }

  .lg\:focus\:-translate-x-52:focus{
    --transform-translate-x     : -13rem !important;
  }

  .lg\:focus\:-translate-x-56:focus{
    --transform-translate-x     : -14rem !important;
  }

  .lg\:focus\:-translate-x-60:focus{
    --transform-translate-x     : -15rem !important;
  }

  .lg\:focus\:-translate-x-64:focus{
    --transform-translate-x     : -16rem !important;
  }

  .lg\:focus\:-translate-x-72:focus{
    --transform-translate-x     : -18rem !important;
  }

  .lg\:focus\:-translate-x-80:focus{
    --transform-translate-x     : -20rem !important;
  }

  .lg\:focus\:-translate-x-96:focus{
    --transform-translate-x     : -24rem !important;
  }

  .lg\:focus\:-translate-x-px:focus{
    --transform-translate-x     : -1px !important;
  }

  .lg\:focus\:-translate-x-0\.5:focus{
    --transform-translate-x     : -0.125rem !important;
  }

  .lg\:focus\:-translate-x-1\.5:focus{
    --transform-translate-x     : -0.375rem !important;
  }

  .lg\:focus\:-translate-x-2\.5:focus{
    --transform-translate-x     : -0.625rem !important;
  }

  .lg\:focus\:-translate-x-3\.5:focus{
    --transform-translate-x     : -0.875rem !important;
  }

  .lg\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x     : -50% !important;
  }

  .lg\:focus\:-translate-x-1\/3:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:focus\:-translate-x-2\/3:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:focus\:-translate-x-1\/4:focus{
    --transform-translate-x     : -25% !important;
  }

  .lg\:focus\:-translate-x-2\/4:focus{
    --transform-translate-x     : -50% !important;
  }

  .lg\:focus\:-translate-x-3\/4:focus{
    --transform-translate-x     : -75% !important;
  }

  .lg\:focus\:-translate-x-1\/5:focus{
    --transform-translate-x     : -20% !important;
  }

  .lg\:focus\:-translate-x-2\/5:focus{
    --transform-translate-x     : -40% !important;
  }

  .lg\:focus\:-translate-x-3\/5:focus{
    --transform-translate-x     : -60% !important;
  }

  .lg\:focus\:-translate-x-4\/5:focus{
    --transform-translate-x     : -80% !important;
  }

  .lg\:focus\:-translate-x-1\/6:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:focus\:-translate-x-2\/6:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:focus\:-translate-x-3\/6:focus{
    --transform-translate-x     : -50% !important;
  }

  .lg\:focus\:-translate-x-4\/6:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:focus\:-translate-x-5\/6:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:focus\:-translate-x-1\/12:focus{
    --transform-translate-x     : -8.33333% !important;
  }

  .lg\:focus\:-translate-x-2\/12:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .lg\:focus\:-translate-x-3\/12:focus{
    --transform-translate-x     : -25% !important;
  }

  .lg\:focus\:-translate-x-4\/12:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .lg\:focus\:-translate-x-5\/12:focus{
    --transform-translate-x     : -41.66667% !important;
  }

  .lg\:focus\:-translate-x-6\/12:focus{
    --transform-translate-x     : -50% !important;
  }

  .lg\:focus\:-translate-x-7\/12:focus{
    --transform-translate-x     : -58.33333% !important;
  }

  .lg\:focus\:-translate-x-8\/12:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .lg\:focus\:-translate-x-9\/12:focus{
    --transform-translate-x     : -75% !important;
  }

  .lg\:focus\:-translate-x-10\/12:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .lg\:focus\:-translate-x-11\/12:focus{
    --transform-translate-x     : -91.66667% !important;
  }

  .lg\:focus\:-translate-x-full:focus{
    --transform-translate-x     : -100% !important;
  }

  .lg\:focus\:translate-y-0:focus{
    --transform-translate-y     : 0 !important;
  }

  .lg\:focus\:translate-y-1:focus{
    --transform-translate-y     : 0.25rem !important;
  }

  .lg\:focus\:translate-y-2:focus{
    --transform-translate-y     : 0.5rem !important;
  }

  .lg\:focus\:translate-y-3:focus{
    --transform-translate-y     : 0.75rem !important;
  }

  .lg\:focus\:translate-y-4:focus{
    --transform-translate-y     : 1rem !important;
  }

  .lg\:focus\:translate-y-5:focus{
    --transform-translate-y     : 1.25rem !important;
  }

  .lg\:focus\:translate-y-6:focus{
    --transform-translate-y     : 1.5rem !important;
  }

  .lg\:focus\:translate-y-7:focus{
    --transform-translate-y     : 1.75rem !important;
  }

  .lg\:focus\:translate-y-8:focus{
    --transform-translate-y     : 2rem !important;
  }

  .lg\:focus\:translate-y-9:focus{
    --transform-translate-y     : 2.25rem !important;
  }

  .lg\:focus\:translate-y-10:focus{
    --transform-translate-y     : 2.5rem !important;
  }

  .lg\:focus\:translate-y-11:focus{
    --transform-translate-y     : 2.75rem !important;
  }

  .lg\:focus\:translate-y-12:focus{
    --transform-translate-y     : 3rem !important;
  }

  .lg\:focus\:translate-y-13:focus{
    --transform-translate-y     : 3.25rem !important;
  }

  .lg\:focus\:translate-y-14:focus{
    --transform-translate-y     : 3.5rem !important;
  }

  .lg\:focus\:translate-y-15:focus{
    --transform-translate-y     : 3.75rem !important;
  }

  .lg\:focus\:translate-y-16:focus{
    --transform-translate-y     : 4rem !important;
  }

  .lg\:focus\:translate-y-20:focus{
    --transform-translate-y     : 5rem !important;
  }

  .lg\:focus\:translate-y-24:focus{
    --transform-translate-y     : 6rem !important;
  }

  .lg\:focus\:translate-y-28:focus{
    --transform-translate-y     : 7rem !important;
  }

  .lg\:focus\:translate-y-32:focus{
    --transform-translate-y     : 8rem !important;
  }

  .lg\:focus\:translate-y-36:focus{
    --transform-translate-y     : 9rem !important;
  }

  .lg\:focus\:translate-y-40:focus{
    --transform-translate-y     : 10rem !important;
  }

  .lg\:focus\:translate-y-44:focus{
    --transform-translate-y     : 11rem !important;
  }

  .lg\:focus\:translate-y-48:focus{
    --transform-translate-y     : 12rem !important;
  }

  .lg\:focus\:translate-y-52:focus{
    --transform-translate-y     : 13rem !important;
  }

  .lg\:focus\:translate-y-56:focus{
    --transform-translate-y     : 14rem !important;
  }

  .lg\:focus\:translate-y-60:focus{
    --transform-translate-y     : 15rem !important;
  }

  .lg\:focus\:translate-y-64:focus{
    --transform-translate-y     : 16rem !important;
  }

  .lg\:focus\:translate-y-72:focus{
    --transform-translate-y     : 18rem !important;
  }

  .lg\:focus\:translate-y-80:focus{
    --transform-translate-y     : 20rem !important;
  }

  .lg\:focus\:translate-y-96:focus{
    --transform-translate-y     : 24rem !important;
  }

  .lg\:focus\:translate-y-px:focus{
    --transform-translate-y     : 1px !important;
  }

  .lg\:focus\:translate-y-0\.5:focus{
    --transform-translate-y     : 0.125rem !important;
  }

  .lg\:focus\:translate-y-1\.5:focus{
    --transform-translate-y     : 0.375rem !important;
  }

  .lg\:focus\:translate-y-2\.5:focus{
    --transform-translate-y     : 0.625rem !important;
  }

  .lg\:focus\:translate-y-3\.5:focus{
    --transform-translate-y     : 0.875rem !important;
  }

  .lg\:focus\:translate-y-1\/2:focus{
    --transform-translate-y     : 50% !important;
  }

  .lg\:focus\:translate-y-1\/3:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:focus\:translate-y-2\/3:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:focus\:translate-y-1\/4:focus{
    --transform-translate-y     : 25% !important;
  }

  .lg\:focus\:translate-y-2\/4:focus{
    --transform-translate-y     : 50% !important;
  }

  .lg\:focus\:translate-y-3\/4:focus{
    --transform-translate-y     : 75% !important;
  }

  .lg\:focus\:translate-y-1\/5:focus{
    --transform-translate-y     : 20% !important;
  }

  .lg\:focus\:translate-y-2\/5:focus{
    --transform-translate-y     : 40% !important;
  }

  .lg\:focus\:translate-y-3\/5:focus{
    --transform-translate-y     : 60% !important;
  }

  .lg\:focus\:translate-y-4\/5:focus{
    --transform-translate-y     : 80% !important;
  }

  .lg\:focus\:translate-y-1\/6:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:focus\:translate-y-2\/6:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:focus\:translate-y-3\/6:focus{
    --transform-translate-y     : 50% !important;
  }

  .lg\:focus\:translate-y-4\/6:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:focus\:translate-y-5\/6:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:focus\:translate-y-1\/12:focus{
    --transform-translate-y     : 8.333333% !important;
  }

  .lg\:focus\:translate-y-2\/12:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .lg\:focus\:translate-y-3\/12:focus{
    --transform-translate-y     : 25% !important;
  }

  .lg\:focus\:translate-y-4\/12:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .lg\:focus\:translate-y-5\/12:focus{
    --transform-translate-y     : 41.666667% !important;
  }

  .lg\:focus\:translate-y-6\/12:focus{
    --transform-translate-y     : 50% !important;
  }

  .lg\:focus\:translate-y-7\/12:focus{
    --transform-translate-y     : 58.333333% !important;
  }

  .lg\:focus\:translate-y-8\/12:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .lg\:focus\:translate-y-9\/12:focus{
    --transform-translate-y     : 75% !important;
  }

  .lg\:focus\:translate-y-10\/12:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .lg\:focus\:translate-y-11\/12:focus{
    --transform-translate-y     : 91.666667% !important;
  }

  .lg\:focus\:translate-y-full:focus{
    --transform-translate-y     : 100% !important;
  }

  .lg\:focus\:-translate-y-1:focus{
    --transform-translate-y     : -0.25rem !important;
  }

  .lg\:focus\:-translate-y-2:focus{
    --transform-translate-y     : -0.5rem !important;
  }

  .lg\:focus\:-translate-y-3:focus{
    --transform-translate-y     : -0.75rem !important;
  }

  .lg\:focus\:-translate-y-4:focus{
    --transform-translate-y     : -1rem !important;
  }

  .lg\:focus\:-translate-y-5:focus{
    --transform-translate-y     : -1.25rem !important;
  }

  .lg\:focus\:-translate-y-6:focus{
    --transform-translate-y     : -1.5rem !important;
  }

  .lg\:focus\:-translate-y-7:focus{
    --transform-translate-y     : -1.75rem !important;
  }

  .lg\:focus\:-translate-y-8:focus{
    --transform-translate-y     : -2rem !important;
  }

  .lg\:focus\:-translate-y-9:focus{
    --transform-translate-y     : -2.25rem !important;
  }

  .lg\:focus\:-translate-y-10:focus{
    --transform-translate-y     : -2.5rem !important;
  }

  .lg\:focus\:-translate-y-11:focus{
    --transform-translate-y     : -2.75rem !important;
  }

  .lg\:focus\:-translate-y-12:focus{
    --transform-translate-y     : -3rem !important;
  }

  .lg\:focus\:-translate-y-13:focus{
    --transform-translate-y     : -3.25rem !important;
  }

  .lg\:focus\:-translate-y-14:focus{
    --transform-translate-y     : -3.5rem !important;
  }

  .lg\:focus\:-translate-y-15:focus{
    --transform-translate-y     : -3.75rem !important;
  }

  .lg\:focus\:-translate-y-16:focus{
    --transform-translate-y     : -4rem !important;
  }

  .lg\:focus\:-translate-y-20:focus{
    --transform-translate-y     : -5rem !important;
  }

  .lg\:focus\:-translate-y-24:focus{
    --transform-translate-y     : -6rem !important;
  }

  .lg\:focus\:-translate-y-28:focus{
    --transform-translate-y     : -7rem !important;
  }

  .lg\:focus\:-translate-y-32:focus{
    --transform-translate-y     : -8rem !important;
  }

  .lg\:focus\:-translate-y-36:focus{
    --transform-translate-y     : -9rem !important;
  }

  .lg\:focus\:-translate-y-40:focus{
    --transform-translate-y     : -10rem !important;
  }

  .lg\:focus\:-translate-y-44:focus{
    --transform-translate-y     : -11rem !important;
  }

  .lg\:focus\:-translate-y-48:focus{
    --transform-translate-y     : -12rem !important;
  }

  .lg\:focus\:-translate-y-52:focus{
    --transform-translate-y     : -13rem !important;
  }

  .lg\:focus\:-translate-y-56:focus{
    --transform-translate-y     : -14rem !important;
  }

  .lg\:focus\:-translate-y-60:focus{
    --transform-translate-y     : -15rem !important;
  }

  .lg\:focus\:-translate-y-64:focus{
    --transform-translate-y     : -16rem !important;
  }

  .lg\:focus\:-translate-y-72:focus{
    --transform-translate-y     : -18rem !important;
  }

  .lg\:focus\:-translate-y-80:focus{
    --transform-translate-y     : -20rem !important;
  }

  .lg\:focus\:-translate-y-96:focus{
    --transform-translate-y     : -24rem !important;
  }

  .lg\:focus\:-translate-y-px:focus{
    --transform-translate-y     : -1px !important;
  }

  .lg\:focus\:-translate-y-0\.5:focus{
    --transform-translate-y     : -0.125rem !important;
  }

  .lg\:focus\:-translate-y-1\.5:focus{
    --transform-translate-y     : -0.375rem !important;
  }

  .lg\:focus\:-translate-y-2\.5:focus{
    --transform-translate-y     : -0.625rem !important;
  }

  .lg\:focus\:-translate-y-3\.5:focus{
    --transform-translate-y     : -0.875rem !important;
  }

  .lg\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y     : -50% !important;
  }

  .lg\:focus\:-translate-y-1\/3:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:focus\:-translate-y-2\/3:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:focus\:-translate-y-1\/4:focus{
    --transform-translate-y     : -25% !important;
  }

  .lg\:focus\:-translate-y-2\/4:focus{
    --transform-translate-y     : -50% !important;
  }

  .lg\:focus\:-translate-y-3\/4:focus{
    --transform-translate-y     : -75% !important;
  }

  .lg\:focus\:-translate-y-1\/5:focus{
    --transform-translate-y     : -20% !important;
  }

  .lg\:focus\:-translate-y-2\/5:focus{
    --transform-translate-y     : -40% !important;
  }

  .lg\:focus\:-translate-y-3\/5:focus{
    --transform-translate-y     : -60% !important;
  }

  .lg\:focus\:-translate-y-4\/5:focus{
    --transform-translate-y     : -80% !important;
  }

  .lg\:focus\:-translate-y-1\/6:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:focus\:-translate-y-2\/6:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:focus\:-translate-y-3\/6:focus{
    --transform-translate-y     : -50% !important;
  }

  .lg\:focus\:-translate-y-4\/6:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:focus\:-translate-y-5\/6:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:focus\:-translate-y-1\/12:focus{
    --transform-translate-y     : -8.33333% !important;
  }

  .lg\:focus\:-translate-y-2\/12:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .lg\:focus\:-translate-y-3\/12:focus{
    --transform-translate-y     : -25% !important;
  }

  .lg\:focus\:-translate-y-4\/12:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .lg\:focus\:-translate-y-5\/12:focus{
    --transform-translate-y     : -41.66667% !important;
  }

  .lg\:focus\:-translate-y-6\/12:focus{
    --transform-translate-y     : -50% !important;
  }

  .lg\:focus\:-translate-y-7\/12:focus{
    --transform-translate-y     : -58.33333% !important;
  }

  .lg\:focus\:-translate-y-8\/12:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .lg\:focus\:-translate-y-9\/12:focus{
    --transform-translate-y     : -75% !important;
  }

  .lg\:focus\:-translate-y-10\/12:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .lg\:focus\:-translate-y-11\/12:focus{
    --transform-translate-y     : -91.66667% !important;
  }

  .lg\:focus\:-translate-y-full:focus{
    --transform-translate-y     : -100% !important;
  }

  .lg\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .lg\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .lg\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .lg\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .lg\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .lg\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .lg\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .lg\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .lg\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .lg\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .lg\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .lg\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .lg\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .lg\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .group:hover .lg\:group-hover\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .group:hover .lg\:group-hover\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .group:hover .lg\:group-hover\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .group:hover .lg\:group-hover\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .group:hover .lg\:group-hover\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .group:hover .lg\:group-hover\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .group:hover .lg\:group-hover\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .group:hover .lg\:group-hover\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .group:hover .lg\:group-hover\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .lg\:hover\:skew-x-0:hover{
    --transform-skew-x     : 0 !important;
  }

  .lg\:hover\:skew-x-3:hover{
    --transform-skew-x     : 3deg !important;
  }

  .lg\:hover\:skew-x-6:hover{
    --transform-skew-x     : 6deg !important;
  }

  .lg\:hover\:skew-x-12:hover{
    --transform-skew-x     : 12deg !important;
  }

  .lg\:hover\:-skew-x-12:hover{
    --transform-skew-x     : -12deg !important;
  }

  .lg\:hover\:-skew-x-6:hover{
    --transform-skew-x     : -6deg !important;
  }

  .lg\:hover\:-skew-x-3:hover{
    --transform-skew-x     : -3deg !important;
  }

  .lg\:hover\:skew-y-0:hover{
    --transform-skew-y     : 0 !important;
  }

  .lg\:hover\:skew-y-3:hover{
    --transform-skew-y     : 3deg !important;
  }

  .lg\:hover\:skew-y-6:hover{
    --transform-skew-y     : 6deg !important;
  }

  .lg\:hover\:skew-y-12:hover{
    --transform-skew-y     : 12deg !important;
  }

  .lg\:hover\:-skew-y-12:hover{
    --transform-skew-y     : -12deg !important;
  }

  .lg\:hover\:-skew-y-6:hover{
    --transform-skew-y     : -6deg !important;
  }

  .lg\:hover\:-skew-y-3:hover{
    --transform-skew-y     : -3deg !important;
  }

  .lg\:focus\:skew-x-0:focus{
    --transform-skew-x     : 0 !important;
  }

  .lg\:focus\:skew-x-3:focus{
    --transform-skew-x     : 3deg !important;
  }

  .lg\:focus\:skew-x-6:focus{
    --transform-skew-x     : 6deg !important;
  }

  .lg\:focus\:skew-x-12:focus{
    --transform-skew-x     : 12deg !important;
  }

  .lg\:focus\:-skew-x-12:focus{
    --transform-skew-x     : -12deg !important;
  }

  .lg\:focus\:-skew-x-6:focus{
    --transform-skew-x     : -6deg !important;
  }

  .lg\:focus\:-skew-x-3:focus{
    --transform-skew-x     : -3deg !important;
  }

  .lg\:focus\:skew-y-0:focus{
    --transform-skew-y     : 0 !important;
  }

  .lg\:focus\:skew-y-3:focus{
    --transform-skew-y     : 3deg !important;
  }

  .lg\:focus\:skew-y-6:focus{
    --transform-skew-y     : 6deg !important;
  }

  .lg\:focus\:skew-y-12:focus{
    --transform-skew-y     : 12deg !important;
  }

  .lg\:focus\:-skew-y-12:focus{
    --transform-skew-y     : -12deg !important;
  }

  .lg\:focus\:-skew-y-6:focus{
    --transform-skew-y     : -6deg !important;
  }

  .lg\:focus\:-skew-y-3:focus{
    --transform-skew-y     : -3deg !important;
  }

  .lg\:transition-none{
    transition-property     : none !important;
  }

  .lg\:transition-all{
    transition-property     : all !important;
  }

  .lg\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .lg\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .lg\:transition-opacity{
    transition-property     : opacity !important;
  }

  .lg\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .lg\:transition-transform{
    transition-property     : transform !important;
  }

  .group:hover .lg\:group-hover\:transition-none{
    transition-property     : none !important;
  }

  .group:hover .lg\:group-hover\:transition-all{
    transition-property     : all !important;
  }

  .group:hover .lg\:group-hover\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .group:hover .lg\:group-hover\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .group:hover .lg\:group-hover\:transition-opacity{
    transition-property     : opacity !important;
  }

  .group:hover .lg\:group-hover\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .group:hover .lg\:group-hover\:transition-transform{
    transition-property     : transform !important;
  }

  .lg\:hover\:transition-none:hover{
    transition-property     : none !important;
  }

  .lg\:hover\:transition-all:hover{
    transition-property     : all !important;
  }

  .lg\:hover\:transition:hover{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .lg\:hover\:transition-colors:hover{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .lg\:hover\:transition-opacity:hover{
    transition-property     : opacity !important;
  }

  .lg\:hover\:transition-shadow:hover{
    transition-property     : box-shadow !important;
  }

  .lg\:hover\:transition-transform:hover{
    transition-property     : transform !important;
  }

  .lg\:focus\:transition-none:focus{
    transition-property     : none !important;
  }

  .lg\:focus\:transition-all:focus{
    transition-property     : all !important;
  }

  .lg\:focus\:transition:focus{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .lg\:focus\:transition-colors:focus{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .lg\:focus\:transition-opacity:focus{
    transition-property     : opacity !important;
  }

  .lg\:focus\:transition-shadow:focus{
    transition-property     : box-shadow !important;
  }

  .lg\:focus\:transition-transform:focus{
    transition-property     : transform !important;
  }

  .lg\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .lg\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .lg\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .lg\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .group:hover .lg\:group-hover\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .group:hover .lg\:group-hover\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .group:hover .lg\:group-hover\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .group:hover .lg\:group-hover\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .lg\:hover\:ease-linear:hover{
    transition-timing-function     : linear !important;
  }

  .lg\:hover\:ease-in:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .lg\:hover\:ease-out:hover{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .lg\:hover\:ease-in-out:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .lg\:focus\:ease-linear:focus{
    transition-timing-function     : linear !important;
  }

  .lg\:focus\:ease-in:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .lg\:focus\:ease-out:focus{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .lg\:focus\:ease-in-out:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .lg\:duration-75{
    transition-duration     : 75ms !important;
  }

  .lg\:duration-100{
    transition-duration     : 100ms !important;
  }

  .lg\:duration-150{
    transition-duration     : 150ms !important;
  }

  .lg\:duration-200{
    transition-duration     : 200ms !important;
  }

  .lg\:duration-300{
    transition-duration     : 300ms !important;
  }

  .lg\:duration-500{
    transition-duration     : 500ms !important;
  }

  .lg\:duration-700{
    transition-duration     : 700ms !important;
  }

  .lg\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .group:hover .lg\:group-hover\:duration-75{
    transition-duration     : 75ms !important;
  }

  .group:hover .lg\:group-hover\:duration-100{
    transition-duration     : 100ms !important;
  }

  .group:hover .lg\:group-hover\:duration-150{
    transition-duration     : 150ms !important;
  }

  .group:hover .lg\:group-hover\:duration-200{
    transition-duration     : 200ms !important;
  }

  .group:hover .lg\:group-hover\:duration-300{
    transition-duration     : 300ms !important;
  }

  .group:hover .lg\:group-hover\:duration-500{
    transition-duration     : 500ms !important;
  }

  .group:hover .lg\:group-hover\:duration-700{
    transition-duration     : 700ms !important;
  }

  .group:hover .lg\:group-hover\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .lg\:hover\:duration-75:hover{
    transition-duration     : 75ms !important;
  }

  .lg\:hover\:duration-100:hover{
    transition-duration     : 100ms !important;
  }

  .lg\:hover\:duration-150:hover{
    transition-duration     : 150ms !important;
  }

  .lg\:hover\:duration-200:hover{
    transition-duration     : 200ms !important;
  }

  .lg\:hover\:duration-300:hover{
    transition-duration     : 300ms !important;
  }

  .lg\:hover\:duration-500:hover{
    transition-duration     : 500ms !important;
  }

  .lg\:hover\:duration-700:hover{
    transition-duration     : 700ms !important;
  }

  .lg\:hover\:duration-1000:hover{
    transition-duration     : 1000ms !important;
  }

  .lg\:focus\:duration-75:focus{
    transition-duration     : 75ms !important;
  }

  .lg\:focus\:duration-100:focus{
    transition-duration     : 100ms !important;
  }

  .lg\:focus\:duration-150:focus{
    transition-duration     : 150ms !important;
  }

  .lg\:focus\:duration-200:focus{
    transition-duration     : 200ms !important;
  }

  .lg\:focus\:duration-300:focus{
    transition-duration     : 300ms !important;
  }

  .lg\:focus\:duration-500:focus{
    transition-duration     : 500ms !important;
  }

  .lg\:focus\:duration-700:focus{
    transition-duration     : 700ms !important;
  }

  .lg\:focus\:duration-1000:focus{
    transition-duration     : 1000ms !important;
  }

  .lg\:delay-75{
    transition-delay     : 75ms !important;
  }

  .lg\:delay-100{
    transition-delay     : 100ms !important;
  }

  .lg\:delay-150{
    transition-delay     : 150ms !important;
  }

  .lg\:delay-200{
    transition-delay     : 200ms !important;
  }

  .lg\:delay-300{
    transition-delay     : 300ms !important;
  }

  .lg\:delay-500{
    transition-delay     : 500ms !important;
  }

  .lg\:delay-700{
    transition-delay     : 700ms !important;
  }

  .lg\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .group:hover .lg\:group-hover\:delay-75{
    transition-delay     : 75ms !important;
  }

  .group:hover .lg\:group-hover\:delay-100{
    transition-delay     : 100ms !important;
  }

  .group:hover .lg\:group-hover\:delay-150{
    transition-delay     : 150ms !important;
  }

  .group:hover .lg\:group-hover\:delay-200{
    transition-delay     : 200ms !important;
  }

  .group:hover .lg\:group-hover\:delay-300{
    transition-delay     : 300ms !important;
  }

  .group:hover .lg\:group-hover\:delay-500{
    transition-delay     : 500ms !important;
  }

  .group:hover .lg\:group-hover\:delay-700{
    transition-delay     : 700ms !important;
  }

  .group:hover .lg\:group-hover\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .lg\:hover\:delay-75:hover{
    transition-delay     : 75ms !important;
  }

  .lg\:hover\:delay-100:hover{
    transition-delay     : 100ms !important;
  }

  .lg\:hover\:delay-150:hover{
    transition-delay     : 150ms !important;
  }

  .lg\:hover\:delay-200:hover{
    transition-delay     : 200ms !important;
  }

  .lg\:hover\:delay-300:hover{
    transition-delay     : 300ms !important;
  }

  .lg\:hover\:delay-500:hover{
    transition-delay     : 500ms !important;
  }

  .lg\:hover\:delay-700:hover{
    transition-delay     : 700ms !important;
  }

  .lg\:hover\:delay-1000:hover{
    transition-delay     : 1000ms !important;
  }

  .lg\:focus\:delay-75:focus{
    transition-delay     : 75ms !important;
  }

  .lg\:focus\:delay-100:focus{
    transition-delay     : 100ms !important;
  }

  .lg\:focus\:delay-150:focus{
    transition-delay     : 150ms !important;
  }

  .lg\:focus\:delay-200:focus{
    transition-delay     : 200ms !important;
  }

  .lg\:focus\:delay-300:focus{
    transition-delay     : 300ms !important;
  }

  .lg\:focus\:delay-500:focus{
    transition-delay     : 500ms !important;
  }

  .lg\:focus\:delay-700:focus{
    transition-delay     : 700ms !important;
  }

  .lg\:focus\:delay-1000:focus{
    transition-delay     : 1000ms !important;
  }

  .lg\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .lg\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .lg\: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;
  }

  .lg\: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;
  }

  .lg\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .group:hover .lg\:group-hover\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .group:hover .lg\:group-hover\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\: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;
  }

  .group:hover .lg\:group-hover\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .lg\:hover\:animate-none:hover{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .lg\:hover\:animate-spin:hover{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .lg\:hover\:animate-ping:hover{
    -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;
  }

  .lg\:hover\:animate-pulse:hover{
    -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;
  }

  .lg\:hover\:animate-bounce:hover{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .lg\:focus\:animate-none:focus{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .lg\:focus\:animate-spin:focus{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .lg\:focus\:animate-ping:focus{
    -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;
  }

  .lg\:focus\:animate-pulse:focus{
    -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;
  }

  .lg\:focus\:animate-bounce:focus{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }
}

@media (min-width: 1280px){
  .xl\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .xl\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .xl\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .xl\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .xl\:container{
      max-width     : 1280px;
    }
  }

  .group:hover .xl\:group-hover\:container{
    width     : 100%;
  }

  @media (min-width: 640px){
    .xl\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .xl\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .xl\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .xl\:container{
      max-width     : 1280px;
    }
  }

  .xl\:hover\:container:hover{
    width     : 100%;
  }

  @media (min-width: 640px){
    .xl\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .xl\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .xl\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .xl\:container{
      max-width     : 1280px;
    }
  }

  .xl\:focus\:container:focus{
    width     : 100%;
  }

  @media (min-width: 640px){
    .xl\:container{
      max-width     : 640px;
    }
  }

  @media (min-width: 768px){
    .xl\:container{
      max-width     : 768px;
    }
  }

  @media (min-width: 1024px){
    .xl\:container{
      max-width     : 1024px;
    }
  }

  @media (min-width: 1280px){
    .xl\:container{
      max-width     : 1280px;
    }
  }

  .xl\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .xl\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .xl\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .xl\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .xl\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .xl\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .xl\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .xl\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .xl\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .xl\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .xl\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .xl\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .xl\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .xl\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .xl\:prose code::before{
    content     : "`";
  }

  .xl\:prose code::after{
    content     : "`";
  }

  .xl\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .xl\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .xl\:prose pre code::before{
    content     : "";
  }

  .xl\:prose pre code::after{
    content     : "";
  }

  .xl\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .xl\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .xl\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .xl\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .xl\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .xl\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:prose h2 code{
    font-size     : 0.875em;
  }

  .xl\:prose h3 code{
    font-size     : 0.9em;
  }

  .xl\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:prose ol > li:before{
    left     : 0;
  }

  .xl\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:prose ul ul, .xl\:prose ul ol, .xl\:prose ol ul, .xl\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:prose hr + *{
    margin-top     : 0;
  }

  .xl\:prose h2 + *{
    margin-top     : 0;
  }

  .xl\:prose h3 + *{
    margin-top     : 0;
  }

  .xl\:prose h4 + *{
    margin-top     : 0;
  }

  .xl\:prose thead th:first-child{
    padding-left     : 0;
  }

  .xl\:prose thead th:last-child{
    padding-right     : 0;
  }

  .xl\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:prose > :first-child{
    margin-top     : 0;
  }

  .xl\:prose > :last-child{
    margin-bottom     : 0;
  }

  .xl\:prose h1, .xl\:prose h2, .xl\:prose h3, .xl\:prose h4{
    color     : #161e2e;
  }

  .xl\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .xl\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .xl\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .xl\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .xl\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .xl\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .xl\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .xl\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .xl\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .xl\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .xl\:prose-sm ol > li:before{
    left     : 0;
  }

  .xl\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .xl\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .xl\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:prose-sm ul ul, .xl\:prose-sm ul ol, .xl\:prose-sm ol ul, .xl\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .xl\:prose-sm hr + *{
    margin-top     : 0;
  }

  .xl\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .xl\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .xl\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .xl\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .xl\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .xl\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .xl\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .xl\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .xl\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .xl\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .xl\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .xl\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .xl\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .xl\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .xl\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .xl\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .xl\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .xl\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .xl\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:prose-lg ol > li:before{
    left     : 0;
  }

  .xl\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .xl\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-lg ul ul, .xl\:prose-lg ul ol, .xl\:prose-lg ol ul, .xl\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .xl\:prose-lg hr + *{
    margin-top     : 0;
  }

  .xl\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .xl\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .xl\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .xl\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .xl\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .xl\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .xl\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .xl\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .xl\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .xl\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .xl\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .xl\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .xl\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .xl\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .xl\:prose-xl code{
    font-size     : 0.9em;
  }

  .xl\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .xl\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .xl\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .xl\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .xl\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .xl\:prose-xl ol > li:before{
    left     : 0;
  }

  .xl\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .xl\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .xl\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:prose-xl ul ul, .xl\:prose-xl ul ol, .xl\:prose-xl ol ul, .xl\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .xl\:prose-xl hr + *{
    margin-top     : 0;
  }

  .xl\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .xl\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .xl\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .xl\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .xl\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .xl\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .xl\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .xl\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .xl\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .xl\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .xl\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .xl\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .xl\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .xl\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .xl\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .xl\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .xl\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .xl\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .xl\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:prose-2xl ol > li:before{
    left     : 0;
  }

  .xl\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .xl\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .xl\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:prose-2xl ul ul, .xl\:prose-2xl ul ol, .xl\:prose-2xl ol ul, .xl\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .xl\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .xl\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .xl\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .xl\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .xl\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .xl\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .xl\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .xl\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose{
    color     : #374151;
    max-width     : 65ch;
  }

  .group:hover .xl\:group-hover\:prose [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .group:hover .xl\:group-hover\:prose strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .group:hover .xl\:group-hover\:prose ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .group:hover .xl\:group-hover\:prose ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .group:hover .xl\:group-hover\:prose ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .group:hover .xl\:group-hover\:prose ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .group:hover .xl\:group-hover\:prose hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .xl\:group-hover\:prose blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .group:hover .xl\:group-hover\:prose blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .group:hover .xl\:group-hover\:prose blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .group:hover .xl\:group-hover\:prose h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .xl\:group-hover\:prose h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .group:hover .xl\:group-hover\:prose h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .xl\:group-hover\:prose h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .group:hover .xl\:group-hover\:prose figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .group:hover .xl\:group-hover\:prose code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .group:hover .xl\:group-hover\:prose code::before{
    content     : "`";
  }

  .group:hover .xl\:group-hover\:prose code::after{
    content     : "`";
  }

  .group:hover .xl\:group-hover\:prose pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .group:hover .xl\:group-hover\:prose pre code::before{
    content     : "";
  }

  .group:hover .xl\:group-hover\:prose pre code::after{
    content     : "";
  }

  .group:hover .xl\:group-hover\:prose table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .group:hover .xl\:group-hover\:prose thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .group:hover .xl\:group-hover\:prose thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .xl\:group-hover\:prose tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .group:hover .xl\:group-hover\:prose tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .group:hover .xl\:group-hover\:prose tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .group:hover .xl\:group-hover\:prose{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .group:hover .xl\:group-hover\:prose p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose h2 code{
    font-size     : 0.875em;
  }

  .group:hover .xl\:group-hover\:prose h3 code{
    font-size     : 0.9em;
  }

  .group:hover .xl\:group-hover\:prose ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .xl\:group-hover\:prose ol > li:before{
    left     : 0;
  }

  .group:hover .xl\:group-hover\:prose > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .xl\:group-hover\:prose > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .group:hover .xl\:group-hover\:prose ul ul, .group:hover .xl\:group-hover\:prose ul ol, .group:hover .xl\:group-hover\:prose ol ul, .group:hover .xl\:group-hover\:prose ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .group:hover .xl\:group-hover\:prose hr + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose h2 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose h3 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose h4 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose > :first-child{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose h1, .group:hover .xl\:group-hover\:prose h2, .group:hover .xl\:group-hover\:prose h3, .group:hover .xl\:group-hover\:prose h4{
    color     : #161e2e;
  }

  .group:hover .xl\:group-hover\:prose-sm{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .group:hover .xl\:group-hover\:prose-sm p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-sm blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .group:hover .xl\:group-hover\:prose-sm h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .group:hover .xl\:group-hover\:prose-sm h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .group:hover .xl\:group-hover\:prose-sm h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .xl\:group-hover\:prose-sm h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .group:hover .xl\:group-hover\:prose-sm img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .xl\:group-hover\:prose-sm video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .xl\:group-hover\:prose-sm figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .group:hover .xl\:group-hover\:prose-sm figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-sm code{
    font-size     : 0.8571429em;
  }

  .group:hover .xl\:group-hover\:prose-sm h2 code{
    font-size     : 0.9em;
  }

  .group:hover .xl\:group-hover\:prose-sm h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-sm pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-sm ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .group:hover .xl\:group-hover\:prose-sm ol > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .xl\:group-hover\:prose-sm ol > li:before{
    left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm ul > li{
    padding-left     : 1.5714286em;
  }

  .group:hover .xl\:group-hover\:prose-sm ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .group:hover .xl\:group-hover\:prose-sm > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .xl\:group-hover\:prose-sm > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .group:hover .xl\:group-hover\:prose-sm ul ul, .group:hover .xl\:group-hover\:prose-sm ul ol, .group:hover .xl\:group-hover\:prose-sm ol ul, .group:hover .xl\:group-hover\:prose-sm ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .group:hover .xl\:group-hover\:prose-sm hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .group:hover .xl\:group-hover\:prose-sm hr + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm h2 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm h3 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm h4 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .group:hover .xl\:group-hover\:prose-sm thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-sm thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-sm tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm > :first-child{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-sm > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .group:hover .xl\:group-hover\:prose-lg p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .group:hover .xl\:group-hover\:prose-lg blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-lg h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .group:hover .xl\:group-hover\:prose-lg h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .group:hover .xl\:group-hover\:prose-lg h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .xl\:group-hover\:prose-lg h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .group:hover .xl\:group-hover\:prose-lg img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .xl\:group-hover\:prose-lg video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .xl\:group-hover\:prose-lg figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .group:hover .xl\:group-hover\:prose-lg figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-lg code{
    font-size     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-lg h2 code{
    font-size     : 0.8666667em;
  }

  .group:hover .xl\:group-hover\:prose-lg h3 code{
    font-size     : 0.875em;
  }

  .group:hover .xl\:group-hover\:prose-lg pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .group:hover .xl\:group-hover\:prose-lg ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-lg ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-lg ol > li:before{
    left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-lg ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .group:hover .xl\:group-hover\:prose-lg > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-lg > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-lg ul ul, .group:hover .xl\:group-hover\:prose-lg ul ol, .group:hover .xl\:group-hover\:prose-lg ol ul, .group:hover .xl\:group-hover\:prose-lg ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-lg hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .group:hover .xl\:group-hover\:prose-lg hr + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg h2 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg h3 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg h4 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .group:hover .xl\:group-hover\:prose-lg thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .xl\:group-hover\:prose-lg thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .group:hover .xl\:group-hover\:prose-lg tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg > :first-child{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-lg > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .group:hover .xl\:group-hover\:prose-xl p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-xl blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .group:hover .xl\:group-hover\:prose-xl h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .group:hover .xl\:group-hover\:prose-xl h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .group:hover .xl\:group-hover\:prose-xl h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .group:hover .xl\:group-hover\:prose-xl h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .group:hover .xl\:group-hover\:prose-xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-xl code{
    font-size     : 0.9em;
  }

  .group:hover .xl\:group-hover\:prose-xl h2 code{
    font-size     : 0.8611111em;
  }

  .group:hover .xl\:group-hover\:prose-xl h3 code{
    font-size     : 0.9em;
  }

  .group:hover .xl\:group-hover\:prose-xl pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-xl ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .group:hover .xl\:group-hover\:prose-xl ol > li{
    padding-left     : 1.8em;
  }

  .group:hover .xl\:group-hover\:prose-xl ol > li:before{
    left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl ul > li{
    padding-left     : 1.8em;
  }

  .group:hover .xl\:group-hover\:prose-xl ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .group:hover .xl\:group-hover\:prose-xl > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .xl\:group-hover\:prose-xl > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .group:hover .xl\:group-hover\:prose-xl ul ul, .group:hover .xl\:group-hover\:prose-xl ul ol, .group:hover .xl\:group-hover\:prose-xl ol ul, .group:hover .xl\:group-hover\:prose-xl ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .group:hover .xl\:group-hover\:prose-xl hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .group:hover .xl\:group-hover\:prose-xl hr + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .group:hover .xl\:group-hover\:prose-xl thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-xl > :last-child{
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .group:hover .xl\:group-hover\:prose-2xl p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .group:hover .xl\:group-hover\:prose-2xl blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .group:hover .xl\:group-hover\:prose-2xl h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .group:hover .xl\:group-hover\:prose-2xl h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .group:hover .xl\:group-hover\:prose-2xl h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .group:hover .xl\:group-hover\:prose-2xl h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .group:hover .xl\:group-hover\:prose-2xl img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-2xl video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-2xl figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .group:hover .xl\:group-hover\:prose-2xl figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .group:hover .xl\:group-hover\:prose-2xl code{
    font-size     : 0.8333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl h2 code{
    font-size     : 0.875em;
  }

  .group:hover .xl\:group-hover\:prose-2xl h3 code{
    font-size     : 0.8888889em;
  }

  .group:hover .xl\:group-hover\:prose-2xl pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ol > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ol > li:before{
    left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl ul > li{
    padding-left     : 1.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .group:hover .xl\:group-hover\:prose-2xl > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .group:hover .xl\:group-hover\:prose-2xl ul ul, .group:hover .xl\:group-hover\:prose-2xl ul ol, .group:hover .xl\:group-hover\:prose-2xl ol ul, .group:hover .xl\:group-hover\:prose-2xl ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .group:hover .xl\:group-hover\:prose-2xl hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .group:hover .xl\:group-hover\:prose-2xl hr + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl h2 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl h3 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl h4 + *{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .group:hover .xl\:group-hover\:prose-2xl thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .xl\:group-hover\:prose-2xl thead th:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl thead th:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .group:hover .xl\:group-hover\:prose-2xl tbody td:first-child{
    padding-left     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl tbody td:last-child{
    padding-right     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl > :first-child{
    margin-top     : 0;
  }

  .group:hover .xl\:group-hover\:prose-2xl > :last-child{
    margin-bottom     : 0;
  }

  .xl\:hover\:prose:hover{
    color     : #374151;
    max-width     : 65ch;
  }

  .xl\:hover\:prose:hover [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose:hover a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .xl\:hover\:prose:hover strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .xl\:hover\:prose:hover ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:hover\:prose:hover ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .xl\:hover\:prose:hover ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .xl\:hover\:prose:hover ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .xl\:hover\:prose:hover ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .xl\:hover\:prose:hover hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:hover\:prose:hover blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .xl\:hover\:prose:hover blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .xl\:hover\:prose:hover blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .xl\:hover\:prose:hover h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:hover\:prose:hover h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .xl\:hover\:prose:hover h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:hover\:prose:hover h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .xl\:hover\:prose:hover figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .xl\:hover\:prose:hover code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .xl\:hover\:prose:hover code::before{
    content     : "`";
  }

  .xl\:hover\:prose:hover code::after{
    content     : "`";
  }

  .xl\:hover\:prose:hover pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .xl\:hover\:prose:hover pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .xl\:hover\:prose:hover pre code::before{
    content     : "";
  }

  .xl\:hover\:prose:hover pre code::after{
    content     : "";
  }

  .xl\:hover\:prose:hover table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .xl\:hover\:prose:hover thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .xl\:hover\:prose:hover thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:hover\:prose:hover tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .xl\:hover\:prose:hover tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .xl\:hover\:prose:hover tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:hover\:prose:hover{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .xl\:hover\:prose:hover p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:hover\:prose:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:hover\:prose:hover h2 code{
    font-size     : 0.875em;
  }

  .xl\:hover\:prose:hover h3 code{
    font-size     : 0.9em;
  }

  .xl\:hover\:prose:hover ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:hover\:prose:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:hover\:prose:hover ol > li:before{
    left     : 0;
  }

  .xl\:hover\:prose:hover > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:hover\:prose:hover > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:hover\:prose:hover > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:hover\:prose:hover > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:hover\:prose:hover > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:hover\:prose:hover ul ul, .xl\:hover\:prose:hover ul ol, .xl\:hover\:prose:hover ol ul, .xl\:hover\:prose:hover ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:hover\:prose:hover hr + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose:hover h2 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose:hover h3 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose:hover h4 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose:hover thead th:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose:hover thead th:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose:hover tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose:hover tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose:hover > :first-child{
    margin-top     : 0;
  }

  .xl\:hover\:prose:hover > :last-child{
    margin-bottom     : 0;
  }

  .xl\:hover\:prose:hover h1, .xl\:hover\:prose:hover h2, .xl\:hover\:prose:hover h3, .xl\:hover\:prose:hover h4{
    color     : #161e2e;
  }

  .xl\:hover\:prose-sm:hover{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .xl\:hover\:prose-sm:hover p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:hover\:prose-sm:hover blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .xl\:hover\:prose-sm:hover h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .xl\:hover\:prose-sm:hover h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .xl\:hover\:prose-sm:hover h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:hover\:prose-sm:hover h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .xl\:hover\:prose-sm:hover img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:hover\:prose-sm:hover video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:hover\:prose-sm:hover figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:hover\:prose-sm:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-sm:hover figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .xl\:hover\:prose-sm:hover code{
    font-size     : 0.8571429em;
  }

  .xl\:hover\:prose-sm:hover h2 code{
    font-size     : 0.9em;
  }

  .xl\:hover\:prose-sm:hover h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:hover\:prose-sm:hover pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:hover\:prose-sm:hover ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .xl\:hover\:prose-sm:hover ol > li{
    padding-left     : 1.5714286em;
  }

  .xl\:hover\:prose-sm:hover ol > li:before{
    left     : 0;
  }

  .xl\:hover\:prose-sm:hover ul > li{
    padding-left     : 1.5714286em;
  }

  .xl\:hover\:prose-sm:hover ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .xl\:hover\:prose-sm:hover > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:hover\:prose-sm:hover > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:hover\:prose-sm:hover ul ul, .xl\:hover\:prose-sm:hover ul ol, .xl\:hover\:prose-sm:hover ol ul, .xl\:hover\:prose-sm:hover ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:hover\:prose-sm:hover hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .xl\:hover\:prose-sm:hover hr + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-sm:hover h2 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-sm:hover h3 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-sm:hover h4 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-sm:hover table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .xl\:hover\:prose-sm:hover thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:hover\:prose-sm:hover thead th:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-sm:hover thead th:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-sm:hover tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:hover\:prose-sm:hover tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-sm:hover tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-sm:hover > :first-child{
    margin-top     : 0;
  }

  .xl\:hover\:prose-sm:hover > :last-child{
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-lg:hover{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .xl\:hover\:prose-lg:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .xl\:hover\:prose-lg:hover blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .xl\:hover\:prose-lg:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .xl\:hover\:prose-lg:hover h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .xl\:hover\:prose-lg:hover h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:hover\:prose-lg:hover h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:hover\:prose-lg:hover img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:hover\:prose-lg:hover video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:hover\:prose-lg:hover figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:hover\:prose-lg:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-lg:hover figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .xl\:hover\:prose-lg:hover code{
    font-size     : 0.8888889em;
  }

  .xl\:hover\:prose-lg:hover h2 code{
    font-size     : 0.8666667em;
  }

  .xl\:hover\:prose-lg:hover h3 code{
    font-size     : 0.875em;
  }

  .xl\:hover\:prose-lg:hover pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .xl\:hover\:prose-lg:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:hover\:prose-lg:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:hover\:prose-lg:hover ol > li:before{
    left     : 0;
  }

  .xl\:hover\:prose-lg:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:hover\:prose-lg:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .xl\:hover\:prose-lg:hover > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:hover\:prose-lg:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-lg:hover ul ul, .xl\:hover\:prose-lg:hover ul ol, .xl\:hover\:prose-lg:hover ol ul, .xl\:hover\:prose-lg:hover ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:hover\:prose-lg:hover hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .xl\:hover\:prose-lg:hover hr + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-lg:hover h2 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-lg:hover h3 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-lg:hover h4 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-lg:hover table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .xl\:hover\:prose-lg:hover thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:hover\:prose-lg:hover thead th:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-lg:hover thead th:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-lg:hover tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:hover\:prose-lg:hover tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-lg:hover tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-lg:hover > :first-child{
    margin-top     : 0;
  }

  .xl\:hover\:prose-lg:hover > :last-child{
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-xl:hover{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .xl\:hover\:prose-xl:hover p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .xl\:hover\:prose-xl:hover blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .xl\:hover\:prose-xl:hover h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .xl\:hover\:prose-xl:hover h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:hover\:prose-xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .xl\:hover\:prose-xl:hover h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:hover\:prose-xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-xl:hover figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .xl\:hover\:prose-xl:hover code{
    font-size     : 0.9em;
  }

  .xl\:hover\:prose-xl:hover h2 code{
    font-size     : 0.8611111em;
  }

  .xl\:hover\:prose-xl:hover h3 code{
    font-size     : 0.9em;
  }

  .xl\:hover\:prose-xl:hover pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .xl\:hover\:prose-xl:hover ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .xl\:hover\:prose-xl:hover ol > li{
    padding-left     : 1.8em;
  }

  .xl\:hover\:prose-xl:hover ol > li:before{
    left     : 0;
  }

  .xl\:hover\:prose-xl:hover ul > li{
    padding-left     : 1.8em;
  }

  .xl\:hover\:prose-xl:hover ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .xl\:hover\:prose-xl:hover > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:hover\:prose-xl:hover > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:hover\:prose-xl:hover ul ul, .xl\:hover\:prose-xl:hover ul ol, .xl\:hover\:prose-xl:hover ol ul, .xl\:hover\:prose-xl:hover ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:hover\:prose-xl:hover hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .xl\:hover\:prose-xl:hover hr + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-xl:hover h2 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-xl:hover h3 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-xl:hover h4 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-xl:hover table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .xl\:hover\:prose-xl:hover thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:hover\:prose-xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-xl:hover tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:hover\:prose-xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-xl:hover > :first-child{
    margin-top     : 0;
  }

  .xl\:hover\:prose-xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-2xl:hover{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .xl\:hover\:prose-2xl:hover p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .xl\:hover\:prose-2xl:hover blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .xl\:hover\:prose-2xl:hover h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .xl\:hover\:prose-2xl:hover h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .xl\:hover\:prose-2xl:hover h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .xl\:hover\:prose-2xl:hover h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:hover\:prose-2xl:hover img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-2xl:hover video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-2xl:hover figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:hover\:prose-2xl:hover figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:hover\:prose-2xl:hover figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .xl\:hover\:prose-2xl:hover code{
    font-size     : 0.8333333em;
  }

  .xl\:hover\:prose-2xl:hover h2 code{
    font-size     : 0.875em;
  }

  .xl\:hover\:prose-2xl:hover h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:hover\:prose-2xl:hover pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .xl\:hover\:prose-2xl:hover ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:hover\:prose-2xl:hover ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:hover\:prose-2xl:hover ol > li:before{
    left     : 0;
  }

  .xl\:hover\:prose-2xl:hover ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:hover\:prose-2xl:hover ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .xl\:hover\:prose-2xl:hover > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .xl\:hover\:prose-2xl:hover > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:hover\:prose-2xl:hover ul ul, .xl\:hover\:prose-2xl:hover ul ol, .xl\:hover\:prose-2xl:hover ol ul, .xl\:hover\:prose-2xl:hover ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:hover\:prose-2xl:hover hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:hover\:prose-2xl:hover hr + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-2xl:hover h2 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-2xl:hover h3 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-2xl:hover h4 + *{
    margin-top     : 0;
  }

  .xl\:hover\:prose-2xl:hover table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .xl\:hover\:prose-2xl:hover thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:hover\:prose-2xl:hover thead th:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-2xl:hover thead th:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-2xl:hover tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:hover\:prose-2xl:hover tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:hover\:prose-2xl:hover tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:hover\:prose-2xl:hover > :first-child{
    margin-top     : 0;
  }

  .xl\:hover\:prose-2xl:hover > :last-child{
    margin-bottom     : 0;
  }

  .xl\:focus\:prose:focus{
    color     : #374151;
    max-width     : 65ch;
  }

  .xl\:focus\:prose:focus [class~="lead"]{
    color     : #4b5563;
    font-size     : 1.25em;
    line-height     : 1.6;
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose:focus a{
    color     : #5850ec;
    text-decoration     : none;
    font-weight     : 600;
  }

  .xl\:focus\:prose:focus strong{
    color     : #161e2e;
    font-weight     : 600;
  }

  .xl\:focus\:prose:focus ol{
    counter-reset     : list-counter;
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:focus\:prose:focus ol > li{
    position     : relative;
    counter-increment     : list-counter;
    padding-left     : 1.75em;
  }

  .xl\:focus\:prose:focus ol > li::before{
    content     : counter(list-counter) ".";
    position     : absolute;
    font-weight     : 400;
    color     : #6b7280;
  }

  .xl\:focus\:prose:focus ul > li{
    position     : relative;
    padding-left     : 1.75em;
  }

  .xl\:focus\:prose:focus ul > li::before{
    content     : "";
    position     : absolute;
    background-color     : #d2d6dc;
    border-radius     : 50%;
    width     : 0.375em;
    height     : 0.375em;
    top     : calc(0.875em - 0.1875em);
    left     : 0.25em;
  }

  .xl\:focus\:prose:focus hr{
    border-color     : #e5e7eb;
    border-top-width     : 1px;
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:focus\:prose:focus blockquote{
    font-weight     : 500;
    font-style     : italic;
    color     : #161e2e;
    border-left-width     : 0.25rem;
    border-left-color     : #e5e7eb;
    quotes     : "\201C""\201D""\2018""\2019";
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1em;
  }

  .xl\:focus\:prose:focus blockquote p:first-of-type::before{
    content     : open-quote;
  }

  .xl\:focus\:prose:focus blockquote p:last-of-type::after{
    content     : close-quote;
  }

  .xl\:focus\:prose:focus h1{
    color     : #1a202c;
    font-weight     : 800;
    font-size     : 2.25em;
    margin-top     : 0;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:focus\:prose:focus h2{
    color     : #1a202c;
    font-weight     : 700;
    font-size     : 1.5em;
    margin-top     : 2em;
    margin-bottom     : 1em;
    line-height     : 1.3333333;
  }

  .xl\:focus\:prose:focus h3{
    color     : #1a202c;
    font-weight     : 600;
    font-size     : 1.25em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:focus\:prose:focus h4{
    color     : #1a202c;
    font-weight     : 600;
    margin-top     : 1.5em;
    margin-bottom     : 0.5em;
    line-height     : 1.5;
  }

  .xl\:focus\:prose:focus figure figcaption{
    color     : #6b7280;
    font-size     : 0.875em;
    line-height     : 1.4285714;
    margin-top     : 0.8571429em;
  }

  .xl\:focus\:prose:focus code{
    color     : #161e2e;
    font-weight     : 600;
    font-size     : 0.875em;
  }

  .xl\:focus\:prose:focus code::before{
    content     : "`";
  }

  .xl\:focus\:prose:focus code::after{
    content     : "`";
  }

  .xl\:focus\:prose:focus pre{
    color     : #e5e7eb;
    background-color     : #252f3f;
    overflow-x     : auto;
    font-size     : 0.875em;
    line-height     : 1.7142857;
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
    border-radius     : 0.375rem;
    padding-top     : 0.8571429em;
    padding-right     : 1.1428571em;
    padding-bottom     : 0.8571429em;
    padding-left     : 1.1428571em;
  }

  .xl\:focus\:prose:focus pre code{
    background-color     : transparent;
    border-width     : 0;
    border-radius     : 0;
    padding     : 0;
    font-weight     : 400;
    color     : inherit;
    font-size     : inherit;
    font-family     : inherit;
    line-height     : inherit;
  }

  .xl\:focus\:prose:focus pre code::before{
    content     : "";
  }

  .xl\:focus\:prose:focus pre code::after{
    content     : "";
  }

  .xl\:focus\:prose:focus table{
    width     : 100%;
    table-layout     : auto;
    text-align     : left;
    margin-top     : 2em;
    margin-bottom     : 2em;
    font-size     : 0.875em;
    line-height     : 1.7142857;
  }

  .xl\:focus\:prose:focus thead{
    color     : #161e2e;
    font-weight     : 600;
    border-bottom-width     : 1px;
    border-bottom-color     : #d2d6dc;
  }

  .xl\:focus\:prose:focus thead th{
    vertical-align     : bottom;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:focus\:prose:focus tbody tr{
    border-bottom-width     : 1px;
    border-bottom-color     : #e5e7eb;
  }

  .xl\:focus\:prose:focus tbody tr:last-child{
    border-bottom-width     : 0;
  }

  .xl\:focus\:prose:focus tbody td{
    vertical-align     : top;
    padding-top     : 0.5714286em;
    padding-right     : 0.5714286em;
    padding-bottom     : 0.5714286em;
    padding-left     : 0.5714286em;
  }

  .xl\:focus\:prose:focus{
    font-size     : 1rem;
    line-height     : 1.75;
  }

  .xl\:focus\:prose:focus p{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:focus\:prose:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:focus\:prose:focus h2 code{
    font-size     : 0.875em;
  }

  .xl\:focus\:prose:focus h3 code{
    font-size     : 0.9em;
  }

  .xl\:focus\:prose:focus ul{
    margin-top     : 1.25em;
    margin-bottom     : 1.25em;
  }

  .xl\:focus\:prose:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:focus\:prose:focus ol > li:before{
    left     : 0;
  }

  .xl\:focus\:prose:focus > ul > li p{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:focus\:prose:focus > ul > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:focus\:prose:focus > ul > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:focus\:prose:focus > ol > li > *:first-child{
    margin-top     : 1.25em;
  }

  .xl\:focus\:prose:focus > ol > li > *:last-child{
    margin-bottom     : 1.25em;
  }

  .xl\:focus\:prose:focus ul ul, .xl\:focus\:prose:focus ul ol, .xl\:focus\:prose:focus ol ul, .xl\:focus\:prose:focus ol ol{
    margin-top     : 0.75em;
    margin-bottom     : 0.75em;
  }

  .xl\:focus\:prose:focus hr + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose:focus h2 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose:focus h3 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose:focus h4 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose:focus thead th:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose:focus thead th:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose:focus tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose:focus tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose:focus > :first-child{
    margin-top     : 0;
  }

  .xl\:focus\:prose:focus > :last-child{
    margin-bottom     : 0;
  }

  .xl\:focus\:prose:focus h1, .xl\:focus\:prose:focus h2, .xl\:focus\:prose:focus h3, .xl\:focus\:prose:focus h4{
    color     : #161e2e;
  }

  .xl\:focus\:prose-sm:focus{
    font-size     : 0.875rem;
    line-height     : 1.7142857;
  }

  .xl\:focus\:prose-sm:focus p{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus [class~="lead"]{
    font-size     : 1.2857143em;
    line-height     : 1.5555556;
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:focus\:prose-sm:focus blockquote{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
    padding-left     : 1.1111111em;
  }

  .xl\:focus\:prose-sm:focus h1{
    font-size     : 2.1428571em;
    margin-top     : 0;
    margin-bottom     : 0.8em;
    line-height     : 1.2;
  }

  .xl\:focus\:prose-sm:focus h2{
    font-size     : 1.4285714em;
    margin-top     : 1.6em;
    margin-bottom     : 0.8em;
    line-height     : 1.4;
  }

  .xl\:focus\:prose-sm:focus h3{
    font-size     : 1.2857143em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:focus\:prose-sm:focus h4{
    margin-top     : 1.4285714em;
    margin-bottom     : 0.5714286em;
    line-height     : 1.4285714;
  }

  .xl\:focus\:prose-sm:focus img{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:focus\:prose-sm:focus video{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:focus\:prose-sm:focus figure{
    margin-top     : 1.7142857em;
    margin-bottom     : 1.7142857em;
  }

  .xl\:focus\:prose-sm:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-sm:focus figure figcaption{
    font-size     : 0.8571429em;
    line-height     : 1.3333333;
    margin-top     : 0.6666667em;
  }

  .xl\:focus\:prose-sm:focus code{
    font-size     : 0.8571429em;
  }

  .xl\:focus\:prose-sm:focus h2 code{
    font-size     : 0.9em;
  }

  .xl\:focus\:prose-sm:focus h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:focus\:prose-sm:focus pre{
    font-size     : 0.8571429em;
    line-height     : 1.6666667;
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    border-radius     : 0.25rem;
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:focus\:prose-sm:focus ol{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus ul{
    margin-top     : 1.1428571em;
    margin-bottom     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus li{
    margin-top     : 0.2857143em;
    margin-bottom     : 0.2857143em;
  }

  .xl\:focus\:prose-sm:focus ol > li{
    padding-left     : 1.5714286em;
  }

  .xl\:focus\:prose-sm:focus ol > li:before{
    left     : 0;
  }

  .xl\:focus\:prose-sm:focus ul > li{
    padding-left     : 1.5714286em;
  }

  .xl\:focus\:prose-sm:focus ul > li::before{
    height     : 0.3571429em;
    width     : 0.3571429em;
    top     : calc(0.8571429em - 0.1785714em);
    left     : 0.2142857em;
  }

  .xl\:focus\:prose-sm:focus > ul > li p{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:focus\:prose-sm:focus > ul > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus > ul > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus > ol > li > *:first-child{
    margin-top     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus > ol > li > *:last-child{
    margin-bottom     : 1.1428571em;
  }

  .xl\:focus\:prose-sm:focus ul ul, .xl\:focus\:prose-sm:focus ul ol, .xl\:focus\:prose-sm:focus ol ul, .xl\:focus\:prose-sm:focus ol ol{
    margin-top     : 0.5714286em;
    margin-bottom     : 0.5714286em;
  }

  .xl\:focus\:prose-sm:focus hr{
    margin-top     : 2.8571429em;
    margin-bottom     : 2.8571429em;
  }

  .xl\:focus\:prose-sm:focus hr + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-sm:focus h2 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-sm:focus h3 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-sm:focus h4 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-sm:focus table{
    font-size     : 0.8571429em;
    line-height     : 1.5;
  }

  .xl\:focus\:prose-sm:focus thead th{
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:focus\:prose-sm:focus thead th:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-sm:focus thead th:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-sm:focus tbody td{
    padding-top     : 0.6666667em;
    padding-right     : 1em;
    padding-bottom     : 0.6666667em;
    padding-left     : 1em;
  }

  .xl\:focus\:prose-sm:focus tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-sm:focus tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-sm:focus > :first-child{
    margin-top     : 0;
  }

  .xl\:focus\:prose-sm:focus > :last-child{
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-lg:focus{
    font-size     : 1.125rem;
    line-height     : 1.7777778;
  }

  .xl\:focus\:prose-lg:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus [class~="lead"]{
    font-size     : 1.2222222em;
    line-height     : 1.4545455;
    margin-top     : 1.0909091em;
    margin-bottom     : 1.0909091em;
  }

  .xl\:focus\:prose-lg:focus blockquote{
    margin-top     : 1.6666667em;
    margin-bottom     : 1.6666667em;
    padding-left     : 1em;
  }

  .xl\:focus\:prose-lg:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.8333333em;
    line-height     : 1;
  }

  .xl\:focus\:prose-lg:focus h2{
    font-size     : 1.6666667em;
    margin-top     : 1.8666667em;
    margin-bottom     : 1.0666667em;
    line-height     : 1.3333333;
  }

  .xl\:focus\:prose-lg:focus h3{
    font-size     : 1.3333333em;
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:focus\:prose-lg:focus h4{
    margin-top     : 1.7777778em;
    margin-bottom     : 0.4444444em;
    line-height     : 1.5555556;
  }

  .xl\:focus\:prose-lg:focus img{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:focus\:prose-lg:focus video{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:focus\:prose-lg:focus figure{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
  }

  .xl\:focus\:prose-lg:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-lg:focus figure figcaption{
    font-size     : 0.8888889em;
    line-height     : 1.5;
    margin-top     : 1em;
  }

  .xl\:focus\:prose-lg:focus code{
    font-size     : 0.8888889em;
  }

  .xl\:focus\:prose-lg:focus h2 code{
    font-size     : 0.8666667em;
  }

  .xl\:focus\:prose-lg:focus h3 code{
    font-size     : 0.875em;
  }

  .xl\:focus\:prose-lg:focus pre{
    font-size     : 0.8888889em;
    line-height     : 1.75;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.375rem;
    padding-top     : 1em;
    padding-right     : 1.5em;
    padding-bottom     : 1em;
    padding-left     : 1.5em;
  }

  .xl\:focus\:prose-lg:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus li{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:focus\:prose-lg:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:focus\:prose-lg:focus ol > li:before{
    left     : 0;
  }

  .xl\:focus\:prose-lg:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:focus\:prose-lg:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8888889em - 0.1666667em);
    left     : 0.2222222em;
  }

  .xl\:focus\:prose-lg:focus > ul > li p{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:focus\:prose-lg:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-lg:focus ul ul, .xl\:focus\:prose-lg:focus ul ol, .xl\:focus\:prose-lg:focus ol ul, .xl\:focus\:prose-lg:focus ol ol{
    margin-top     : 0.8888889em;
    margin-bottom     : 0.8888889em;
  }

  .xl\:focus\:prose-lg:focus hr{
    margin-top     : 3.1111111em;
    margin-bottom     : 3.1111111em;
  }

  .xl\:focus\:prose-lg:focus hr + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-lg:focus h2 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-lg:focus h3 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-lg:focus h4 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-lg:focus table{
    font-size     : 0.8888889em;
    line-height     : 1.5;
  }

  .xl\:focus\:prose-lg:focus thead th{
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:focus\:prose-lg:focus thead th:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-lg:focus thead th:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-lg:focus tbody td{
    padding-top     : 0.75em;
    padding-right     : 0.75em;
    padding-bottom     : 0.75em;
    padding-left     : 0.75em;
  }

  .xl\:focus\:prose-lg:focus tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-lg:focus tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-lg:focus > :first-child{
    margin-top     : 0;
  }

  .xl\:focus\:prose-lg:focus > :last-child{
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-xl:focus{
    font-size     : 1.25rem;
    line-height     : 1.8;
  }

  .xl\:focus\:prose-xl:focus p{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus [class~="lead"]{
    font-size     : 1.2em;
    line-height     : 1.5;
    margin-top     : 1em;
    margin-bottom     : 1em;
  }

  .xl\:focus\:prose-xl:focus blockquote{
    margin-top     : 1.6em;
    margin-bottom     : 1.6em;
    padding-left     : 1.0666667em;
  }

  .xl\:focus\:prose-xl:focus h1{
    font-size     : 2.8em;
    margin-top     : 0;
    margin-bottom     : 0.8571429em;
    line-height     : 1;
  }

  .xl\:focus\:prose-xl:focus h2{
    font-size     : 1.8em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.8888889em;
    line-height     : 1.1111111;
  }

  .xl\:focus\:prose-xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.6em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.3333333;
  }

  .xl\:focus\:prose-xl:focus h4{
    margin-top     : 1.8em;
    margin-bottom     : 0.6em;
    line-height     : 1.6;
  }

  .xl\:focus\:prose-xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-xl:focus figure figcaption{
    font-size     : 0.9em;
    line-height     : 1.5555556;
    margin-top     : 1em;
  }

  .xl\:focus\:prose-xl:focus code{
    font-size     : 0.9em;
  }

  .xl\:focus\:prose-xl:focus h2 code{
    font-size     : 0.8611111em;
  }

  .xl\:focus\:prose-xl:focus h3 code{
    font-size     : 0.9em;
  }

  .xl\:focus\:prose-xl:focus pre{
    font-size     : 0.9em;
    line-height     : 1.7777778;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.1111111em;
    padding-right     : 1.3333333em;
    padding-bottom     : 1.1111111em;
    padding-left     : 1.3333333em;
  }

  .xl\:focus\:prose-xl:focus ol{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus ul{
    margin-top     : 1.2em;
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus li{
    margin-top     : 0.6em;
    margin-bottom     : 0.6em;
  }

  .xl\:focus\:prose-xl:focus ol > li{
    padding-left     : 1.8em;
  }

  .xl\:focus\:prose-xl:focus ol > li:before{
    left     : 0;
  }

  .xl\:focus\:prose-xl:focus ul > li{
    padding-left     : 1.8em;
  }

  .xl\:focus\:prose-xl:focus ul > li::before{
    width     : 0.35em;
    height     : 0.35em;
    top     : calc(0.9em - 0.175em);
    left     : 0.25em;
  }

  .xl\:focus\:prose-xl:focus > ul > li p{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:focus\:prose-xl:focus > ul > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus > ol > li > *:first-child{
    margin-top     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.2em;
  }

  .xl\:focus\:prose-xl:focus ul ul, .xl\:focus\:prose-xl:focus ul ol, .xl\:focus\:prose-xl:focus ol ul, .xl\:focus\:prose-xl:focus ol ol{
    margin-top     : 0.8em;
    margin-bottom     : 0.8em;
  }

  .xl\:focus\:prose-xl:focus hr{
    margin-top     : 2.8em;
    margin-bottom     : 2.8em;
  }

  .xl\:focus\:prose-xl:focus hr + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-xl:focus h2 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-xl:focus h3 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-xl:focus h4 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-xl:focus table{
    font-size     : 0.9em;
    line-height     : 1.5555556;
  }

  .xl\:focus\:prose-xl:focus thead th{
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:focus\:prose-xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-xl:focus tbody td{
    padding-top     : 0.8888889em;
    padding-right     : 0.6666667em;
    padding-bottom     : 0.8888889em;
    padding-left     : 0.6666667em;
  }

  .xl\:focus\:prose-xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-xl:focus > :first-child{
    margin-top     : 0;
  }

  .xl\:focus\:prose-xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-2xl:focus{
    font-size     : 1.5rem;
    line-height     : 1.6666667;
  }

  .xl\:focus\:prose-2xl:focus p{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus [class~="lead"]{
    font-size     : 1.25em;
    line-height     : 1.4666667;
    margin-top     : 1.0666667em;
    margin-bottom     : 1.0666667em;
  }

  .xl\:focus\:prose-2xl:focus blockquote{
    margin-top     : 1.7777778em;
    margin-bottom     : 1.7777778em;
    padding-left     : 1.1111111em;
  }

  .xl\:focus\:prose-2xl:focus h1{
    font-size     : 2.6666667em;
    margin-top     : 0;
    margin-bottom     : 0.875em;
    line-height     : 1;
  }

  .xl\:focus\:prose-2xl:focus h2{
    font-size     : 2em;
    margin-top     : 1.5em;
    margin-bottom     : 0.8333333em;
    line-height     : 1.0833333;
  }

  .xl\:focus\:prose-2xl:focus h3{
    font-size     : 1.5em;
    margin-top     : 1.5555556em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.2222222;
  }

  .xl\:focus\:prose-2xl:focus h4{
    margin-top     : 1.6666667em;
    margin-bottom     : 0.6666667em;
    line-height     : 1.5;
  }

  .xl\:focus\:prose-2xl:focus img{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-2xl:focus video{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-2xl:focus figure{
    margin-top     : 2em;
    margin-bottom     : 2em;
  }

  .xl\:focus\:prose-2xl:focus figure > *{
    margin-top     : 0;
    margin-bottom     : 0;
  }

  .xl\:focus\:prose-2xl:focus figure figcaption{
    font-size     : 0.8333333em;
    line-height     : 1.6;
    margin-top     : 1em;
  }

  .xl\:focus\:prose-2xl:focus code{
    font-size     : 0.8333333em;
  }

  .xl\:focus\:prose-2xl:focus h2 code{
    font-size     : 0.875em;
  }

  .xl\:focus\:prose-2xl:focus h3 code{
    font-size     : 0.8888889em;
  }

  .xl\:focus\:prose-2xl:focus pre{
    font-size     : 0.8333333em;
    line-height     : 1.8;
    margin-top     : 2em;
    margin-bottom     : 2em;
    border-radius     : 0.5rem;
    padding-top     : 1.2em;
    padding-right     : 1.6em;
    padding-bottom     : 1.2em;
    padding-left     : 1.6em;
  }

  .xl\:focus\:prose-2xl:focus ol{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus ul{
    margin-top     : 1.3333333em;
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus li{
    margin-top     : 0.5em;
    margin-bottom     : 0.5em;
  }

  .xl\:focus\:prose-2xl:focus ol > li{
    padding-left     : 1.6666667em;
  }

  .xl\:focus\:prose-2xl:focus ol > li:before{
    left     : 0;
  }

  .xl\:focus\:prose-2xl:focus ul > li{
    padding-left     : 1.6666667em;
  }

  .xl\:focus\:prose-2xl:focus ul > li::before{
    width     : 0.3333333em;
    height     : 0.3333333em;
    top     : calc(0.8333333em - 0.1666667em);
    left     : 0.25em;
  }

  .xl\:focus\:prose-2xl:focus > ul > li p{
    margin-top     : 0.8333333em;
    margin-bottom     : 0.8333333em;
  }

  .xl\:focus\:prose-2xl:focus > ul > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus > ul > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus > ol > li > *:first-child{
    margin-top     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus > ol > li > *:last-child{
    margin-bottom     : 1.3333333em;
  }

  .xl\:focus\:prose-2xl:focus ul ul, .xl\:focus\:prose-2xl:focus ul ol, .xl\:focus\:prose-2xl:focus ol ul, .xl\:focus\:prose-2xl:focus ol ol{
    margin-top     : 0.6666667em;
    margin-bottom     : 0.6666667em;
  }

  .xl\:focus\:prose-2xl:focus hr{
    margin-top     : 3em;
    margin-bottom     : 3em;
  }

  .xl\:focus\:prose-2xl:focus hr + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-2xl:focus h2 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-2xl:focus h3 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-2xl:focus h4 + *{
    margin-top     : 0;
  }

  .xl\:focus\:prose-2xl:focus table{
    font-size     : 0.8333333em;
    line-height     : 1.4;
  }

  .xl\:focus\:prose-2xl:focus thead th{
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:focus\:prose-2xl:focus thead th:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-2xl:focus thead th:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-2xl:focus tbody td{
    padding-top     : 0.8em;
    padding-right     : 0.6em;
    padding-bottom     : 0.8em;
    padding-left     : 0.6em;
  }

  .xl\:focus\:prose-2xl:focus tbody td:first-child{
    padding-left     : 0;
  }

  .xl\:focus\:prose-2xl:focus tbody td:last-child{
    padding-right     : 0;
  }

  .xl\:focus\:prose-2xl:focus > :first-child{
    margin-top     : 0;
  }

  .xl\:focus\:prose-2xl:focus > :last-child{
    margin-bottom     : 0;
  }

  .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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .xl\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:-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;
  }

  .group:hover .xl\:group-hover\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .group:hover .xl\:group-hover\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .xl\:hover\:space-y-0:hover > :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\:hover\:space-x-0:hover > :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\:hover\:space-y-1:hover > :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\:hover\:space-x-1:hover > :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\:hover\:space-y-2:hover > :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\:hover\:space-x-2:hover > :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\:hover\:space-y-3:hover > :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\:hover\:space-x-3:hover > :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\:hover\:space-y-4:hover > :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\:hover\:space-x-4:hover > :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\:hover\:space-y-5:hover > :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\:hover\:space-x-5:hover > :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\:hover\:space-y-6:hover > :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\:hover\:space-x-6:hover > :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\:hover\:space-y-7:hover > :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\:hover\:space-x-7:hover > :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\:hover\:space-y-8:hover > :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\:hover\:space-x-8:hover > :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\:hover\:space-y-9:hover > :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\:hover\:space-x-9:hover > :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\:hover\:space-y-10:hover > :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\:hover\:space-x-10:hover > :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\:hover\:space-y-11:hover > :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\:hover\:space-x-11:hover > :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\:hover\:space-y-12:hover > :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\:hover\:space-x-12:hover > :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\:hover\:space-y-13:hover > :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\:hover\:space-x-13:hover > :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\:hover\:space-y-14:hover > :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\:hover\:space-x-14:hover > :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\:hover\:space-y-15:hover > :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\:hover\:space-x-15:hover > :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\:hover\:space-y-16:hover > :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\:hover\:space-x-16:hover > :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\:hover\:space-y-20:hover > :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\:hover\:space-x-20:hover > :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\:hover\:space-y-24:hover > :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\:hover\:space-x-24:hover > :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\:hover\:space-y-28:hover > :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\:hover\:space-x-28:hover > :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\:hover\:space-y-32:hover > :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\:hover\:space-x-32:hover > :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\:hover\:space-y-36:hover > :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\:hover\:space-x-36:hover > :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\:hover\:space-y-40:hover > :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\:hover\:space-x-40:hover > :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\:hover\:space-y-44:hover > :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\:hover\:space-x-44:hover > :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\:hover\:space-y-48:hover > :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\:hover\:space-x-48:hover > :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\:hover\:space-y-52:hover > :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\:hover\:space-x-52:hover > :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\:hover\:space-y-56:hover > :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\:hover\:space-x-56:hover > :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\:hover\:space-y-60:hover > :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\:hover\:space-x-60:hover > :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\:hover\:space-y-64:hover > :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\:hover\:space-x-64:hover > :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\:hover\:space-y-72:hover > :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\:hover\:space-x-72:hover > :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\:hover\:space-y-80:hover > :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\:hover\:space-x-80:hover > :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\:hover\:space-y-96:hover > :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\:hover\:space-x-96:hover > :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\:hover\:space-y-px:hover > :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\:hover\:space-x-px:hover > :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\:hover\:space-y-0\.5:hover > :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\:hover\:space-x-0\.5:hover > :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\:hover\:space-y-1\.5:hover > :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\:hover\:space-x-1\.5:hover > :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\:hover\:space-y-2\.5:hover > :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\:hover\:space-x-2\.5:hover > :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\:hover\:space-y-3\.5:hover > :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\:hover\:space-x-3\.5:hover > :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\:hover\:space-y-1\/2:hover > :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\:hover\:space-x-1\/2:hover > :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\:hover\:space-y-1\/3:hover > :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\:hover\:space-x-1\/3:hover > :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\:hover\:space-y-2\/3:hover > :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\:hover\:space-x-2\/3:hover > :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\:hover\:space-y-1\/4:hover > :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\:hover\:space-x-1\/4:hover > :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\:hover\:space-y-2\/4:hover > :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\:hover\:space-x-2\/4:hover > :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\:hover\:space-y-3\/4:hover > :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\:hover\:space-x-3\/4:hover > :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\:hover\:space-y-1\/5:hover > :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\:hover\:space-x-1\/5:hover > :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\:hover\:space-y-2\/5:hover > :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\:hover\:space-x-2\/5:hover > :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\:hover\:space-y-3\/5:hover > :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\:hover\:space-x-3\/5:hover > :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\:hover\:space-y-4\/5:hover > :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\:hover\:space-x-4\/5:hover > :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\:hover\:space-y-1\/6:hover > :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\:hover\:space-x-1\/6:hover > :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\:hover\:space-y-2\/6:hover > :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\:hover\:space-x-2\/6:hover > :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\:hover\:space-y-3\/6:hover > :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\:hover\:space-x-3\/6:hover > :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\:hover\:space-y-4\/6:hover > :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\:hover\:space-x-4\/6:hover > :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\:hover\:space-y-5\/6:hover > :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\:hover\:space-x-5\/6:hover > :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\:hover\:space-y-1\/12:hover > :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\:hover\:space-x-1\/12:hover > :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\:hover\:space-y-2\/12:hover > :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\:hover\:space-x-2\/12:hover > :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\:hover\:space-y-3\/12:hover > :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\:hover\:space-x-3\/12:hover > :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\:hover\:space-y-4\/12:hover > :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\:hover\:space-x-4\/12:hover > :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\:hover\:space-y-5\/12:hover > :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\:hover\:space-x-5\/12:hover > :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\:hover\:space-y-6\/12:hover > :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\:hover\:space-x-6\/12:hover > :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\:hover\:space-y-7\/12:hover > :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\:hover\:space-x-7\/12:hover > :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\:hover\:space-y-8\/12:hover > :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\:hover\:space-x-8\/12:hover > :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\:hover\:space-y-9\/12:hover > :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\:hover\:space-x-9\/12:hover > :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\:hover\:space-y-10\/12:hover > :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\:hover\:space-x-10\/12:hover > :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\:hover\:space-y-11\/12:hover > :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\:hover\:space-x-11\/12:hover > :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\:hover\:space-y-full:hover > :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\:hover\:space-x-full:hover > :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\:hover\:-space-y-1:hover > :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\:hover\:-space-x-1:hover > :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\:hover\:-space-y-2:hover > :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\:hover\:-space-x-2:hover > :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\:hover\:-space-y-3:hover > :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\:hover\:-space-x-3:hover > :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\:hover\:-space-y-4:hover > :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\:hover\:-space-x-4:hover > :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\:hover\:-space-y-5:hover > :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\:hover\:-space-x-5:hover > :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\:hover\:-space-y-6:hover > :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\:hover\:-space-x-6:hover > :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\:hover\:-space-y-7:hover > :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\:hover\:-space-x-7:hover > :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\:hover\:-space-y-8:hover > :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\:hover\:-space-x-8:hover > :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\:hover\:-space-y-9:hover > :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\:hover\:-space-x-9:hover > :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\:hover\:-space-y-10:hover > :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\:hover\:-space-x-10:hover > :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\:hover\:-space-y-11:hover > :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\:hover\:-space-x-11:hover > :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\:hover\:-space-y-12:hover > :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\:hover\:-space-x-12:hover > :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\:hover\:-space-y-13:hover > :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\:hover\:-space-x-13:hover > :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\:hover\:-space-y-14:hover > :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\:hover\:-space-x-14:hover > :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\:hover\:-space-y-15:hover > :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\:hover\:-space-x-15:hover > :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\:hover\:-space-y-16:hover > :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\:hover\:-space-x-16:hover > :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\:hover\:-space-y-20:hover > :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\:hover\:-space-x-20:hover > :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\:hover\:-space-y-24:hover > :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\:hover\:-space-x-24:hover > :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\:hover\:-space-y-28:hover > :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\:hover\:-space-x-28:hover > :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\:hover\:-space-y-32:hover > :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\:hover\:-space-x-32:hover > :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\:hover\:-space-y-36:hover > :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\:hover\:-space-x-36:hover > :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\:hover\:-space-y-40:hover > :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\:hover\:-space-x-40:hover > :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\:hover\:-space-y-44:hover > :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\:hover\:-space-x-44:hover > :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\:hover\:-space-y-48:hover > :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\:hover\:-space-x-48:hover > :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\:hover\:-space-y-52:hover > :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\:hover\:-space-x-52:hover > :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\:hover\:-space-y-56:hover > :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\:hover\:-space-x-56:hover > :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\:hover\:-space-y-60:hover > :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\:hover\:-space-x-60:hover > :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\:hover\:-space-y-64:hover > :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\:hover\:-space-x-64:hover > :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\:hover\:-space-y-72:hover > :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\:hover\:-space-x-72:hover > :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\:hover\:-space-y-80:hover > :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\:hover\:-space-x-80:hover > :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\:hover\:-space-y-96:hover > :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\:hover\:-space-x-96:hover > :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\:hover\:-space-y-px:hover > :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\:hover\:-space-x-px:hover > :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\:hover\:-space-y-0\.5:hover > :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\:hover\:-space-x-0\.5:hover > :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\:hover\:-space-y-1\.5:hover > :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\:hover\:-space-x-1\.5:hover > :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\:hover\:-space-y-2\.5:hover > :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\:hover\:-space-x-2\.5:hover > :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\:hover\:-space-y-3\.5:hover > :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\:hover\:-space-x-3\.5:hover > :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\:hover\:-space-y-1\/2:hover > :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\:hover\:-space-x-1\/2:hover > :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\:hover\:-space-y-1\/3:hover > :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\:hover\:-space-x-1\/3:hover > :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\:hover\:-space-y-2\/3:hover > :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\:hover\:-space-x-2\/3:hover > :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\:hover\:-space-y-1\/4:hover > :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\:hover\:-space-x-1\/4:hover > :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\:hover\:-space-y-2\/4:hover > :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\:hover\:-space-x-2\/4:hover > :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\:hover\:-space-y-3\/4:hover > :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\:hover\:-space-x-3\/4:hover > :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\:hover\:-space-y-1\/5:hover > :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\:hover\:-space-x-1\/5:hover > :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\:hover\:-space-y-2\/5:hover > :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\:hover\:-space-x-2\/5:hover > :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\:hover\:-space-y-3\/5:hover > :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\:hover\:-space-x-3\/5:hover > :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\:hover\:-space-y-4\/5:hover > :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\:hover\:-space-x-4\/5:hover > :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\:hover\:-space-y-1\/6:hover > :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\:hover\:-space-x-1\/6:hover > :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\:hover\:-space-y-2\/6:hover > :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\:hover\:-space-x-2\/6:hover > :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\:hover\:-space-y-3\/6:hover > :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\:hover\:-space-x-3\/6:hover > :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\:hover\:-space-y-4\/6:hover > :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\:hover\:-space-x-4\/6:hover > :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\:hover\:-space-y-5\/6:hover > :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\:hover\:-space-x-5\/6:hover > :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\:hover\:-space-y-1\/12:hover > :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\:hover\:-space-x-1\/12:hover > :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\:hover\:-space-y-2\/12:hover > :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\:hover\:-space-x-2\/12:hover > :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\:hover\:-space-y-3\/12:hover > :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\:hover\:-space-x-3\/12:hover > :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\:hover\:-space-y-4\/12:hover > :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\:hover\:-space-x-4\/12:hover > :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\:hover\:-space-y-5\/12:hover > :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\:hover\:-space-x-5\/12:hover > :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\:hover\:-space-y-6\/12:hover > :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\:hover\:-space-x-6\/12:hover > :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\:hover\:-space-y-7\/12:hover > :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\:hover\:-space-x-7\/12:hover > :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\:hover\:-space-y-8\/12:hover > :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\:hover\:-space-x-8\/12:hover > :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\:hover\:-space-y-9\/12:hover > :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\:hover\:-space-x-9\/12:hover > :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\:hover\:-space-y-10\/12:hover > :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\:hover\:-space-x-10\/12:hover > :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\:hover\:-space-y-11\/12:hover > :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\:hover\:-space-x-11\/12:hover > :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\:hover\:-space-y-full:hover > :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\:hover\:-space-x-full:hover > :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\:hover\:space-y-reverse:hover > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .xl\:hover\:space-x-reverse:hover > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .xl\:focus\:space-y-0:focus > :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\:focus\:space-x-0:focus > :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\:focus\:space-y-1:focus > :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\:focus\:space-x-1:focus > :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\:focus\:space-y-2:focus > :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\:focus\:space-x-2:focus > :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\:focus\:space-y-3:focus > :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\:focus\:space-x-3:focus > :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\:focus\:space-y-4:focus > :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\:focus\:space-x-4:focus > :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\:focus\:space-y-5:focus > :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\:focus\:space-x-5:focus > :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\:focus\:space-y-6:focus > :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\:focus\:space-x-6:focus > :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\:focus\:space-y-7:focus > :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\:focus\:space-x-7:focus > :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\:focus\:space-y-8:focus > :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\:focus\:space-x-8:focus > :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\:focus\:space-y-9:focus > :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\:focus\:space-x-9:focus > :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\:focus\:space-y-10:focus > :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\:focus\:space-x-10:focus > :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\:focus\:space-y-11:focus > :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\:focus\:space-x-11:focus > :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\:focus\:space-y-12:focus > :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\:focus\:space-x-12:focus > :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\:focus\:space-y-13:focus > :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\:focus\:space-x-13:focus > :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\:focus\:space-y-14:focus > :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\:focus\:space-x-14:focus > :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\:focus\:space-y-15:focus > :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\:focus\:space-x-15:focus > :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\:focus\:space-y-16:focus > :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\:focus\:space-x-16:focus > :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\:focus\:space-y-20:focus > :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\:focus\:space-x-20:focus > :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\:focus\:space-y-24:focus > :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\:focus\:space-x-24:focus > :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\:focus\:space-y-28:focus > :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\:focus\:space-x-28:focus > :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\:focus\:space-y-32:focus > :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\:focus\:space-x-32:focus > :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\:focus\:space-y-36:focus > :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\:focus\:space-x-36:focus > :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\:focus\:space-y-40:focus > :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\:focus\:space-x-40:focus > :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\:focus\:space-y-44:focus > :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\:focus\:space-x-44:focus > :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\:focus\:space-y-48:focus > :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\:focus\:space-x-48:focus > :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\:focus\:space-y-52:focus > :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\:focus\:space-x-52:focus > :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\:focus\:space-y-56:focus > :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\:focus\:space-x-56:focus > :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\:focus\:space-y-60:focus > :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\:focus\:space-x-60:focus > :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\:focus\:space-y-64:focus > :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\:focus\:space-x-64:focus > :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\:focus\:space-y-72:focus > :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\:focus\:space-x-72:focus > :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\:focus\:space-y-80:focus > :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\:focus\:space-x-80:focus > :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\:focus\:space-y-96:focus > :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\:focus\:space-x-96:focus > :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\:focus\:space-y-px:focus > :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\:focus\:space-x-px:focus > :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\:focus\:space-y-0\.5:focus > :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\:focus\:space-x-0\.5:focus > :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\:focus\:space-y-1\.5:focus > :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\:focus\:space-x-1\.5:focus > :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\:focus\:space-y-2\.5:focus > :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\:focus\:space-x-2\.5:focus > :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\:focus\:space-y-3\.5:focus > :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\:focus\:space-x-3\.5:focus > :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\:focus\:space-y-1\/2:focus > :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\:focus\:space-x-1\/2:focus > :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\:focus\:space-y-1\/3:focus > :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\:focus\:space-x-1\/3:focus > :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\:focus\:space-y-2\/3:focus > :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\:focus\:space-x-2\/3:focus > :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\:focus\:space-y-1\/4:focus > :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\:focus\:space-x-1\/4:focus > :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\:focus\:space-y-2\/4:focus > :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\:focus\:space-x-2\/4:focus > :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\:focus\:space-y-3\/4:focus > :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\:focus\:space-x-3\/4:focus > :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\:focus\:space-y-1\/5:focus > :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\:focus\:space-x-1\/5:focus > :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\:focus\:space-y-2\/5:focus > :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\:focus\:space-x-2\/5:focus > :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\:focus\:space-y-3\/5:focus > :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\:focus\:space-x-3\/5:focus > :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\:focus\:space-y-4\/5:focus > :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\:focus\:space-x-4\/5:focus > :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\:focus\:space-y-1\/6:focus > :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\:focus\:space-x-1\/6:focus > :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\:focus\:space-y-2\/6:focus > :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\:focus\:space-x-2\/6:focus > :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\:focus\:space-y-3\/6:focus > :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\:focus\:space-x-3\/6:focus > :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\:focus\:space-y-4\/6:focus > :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\:focus\:space-x-4\/6:focus > :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\:focus\:space-y-5\/6:focus > :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\:focus\:space-x-5\/6:focus > :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\:focus\:space-y-1\/12:focus > :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\:focus\:space-x-1\/12:focus > :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\:focus\:space-y-2\/12:focus > :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\:focus\:space-x-2\/12:focus > :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\:focus\:space-y-3\/12:focus > :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\:focus\:space-x-3\/12:focus > :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\:focus\:space-y-4\/12:focus > :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\:focus\:space-x-4\/12:focus > :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\:focus\:space-y-5\/12:focus > :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\:focus\:space-x-5\/12:focus > :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\:focus\:space-y-6\/12:focus > :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\:focus\:space-x-6\/12:focus > :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\:focus\:space-y-7\/12:focus > :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\:focus\:space-x-7\/12:focus > :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\:focus\:space-y-8\/12:focus > :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\:focus\:space-x-8\/12:focus > :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\:focus\:space-y-9\/12:focus > :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\:focus\:space-x-9\/12:focus > :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\:focus\:space-y-10\/12:focus > :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\:focus\:space-x-10\/12:focus > :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\:focus\:space-y-11\/12:focus > :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\:focus\:space-x-11\/12:focus > :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\:focus\:space-y-full:focus > :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\:focus\:space-x-full:focus > :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\:focus\:-space-y-1:focus > :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\:focus\:-space-x-1:focus > :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\:focus\:-space-y-2:focus > :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\:focus\:-space-x-2:focus > :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\:focus\:-space-y-3:focus > :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\:focus\:-space-x-3:focus > :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\:focus\:-space-y-4:focus > :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\:focus\:-space-x-4:focus > :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\:focus\:-space-y-5:focus > :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\:focus\:-space-x-5:focus > :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\:focus\:-space-y-6:focus > :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\:focus\:-space-x-6:focus > :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\:focus\:-space-y-7:focus > :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\:focus\:-space-x-7:focus > :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\:focus\:-space-y-8:focus > :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\:focus\:-space-x-8:focus > :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\:focus\:-space-y-9:focus > :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\:focus\:-space-x-9:focus > :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\:focus\:-space-y-10:focus > :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\:focus\:-space-x-10:focus > :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\:focus\:-space-y-11:focus > :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\:focus\:-space-x-11:focus > :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\:focus\:-space-y-12:focus > :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\:focus\:-space-x-12:focus > :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\:focus\:-space-y-13:focus > :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\:focus\:-space-x-13:focus > :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\:focus\:-space-y-14:focus > :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\:focus\:-space-x-14:focus > :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\:focus\:-space-y-15:focus > :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\:focus\:-space-x-15:focus > :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\:focus\:-space-y-16:focus > :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\:focus\:-space-x-16:focus > :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\:focus\:-space-y-20:focus > :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\:focus\:-space-x-20:focus > :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\:focus\:-space-y-24:focus > :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\:focus\:-space-x-24:focus > :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\:focus\:-space-y-28:focus > :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\:focus\:-space-x-28:focus > :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\:focus\:-space-y-32:focus > :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\:focus\:-space-x-32:focus > :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\:focus\:-space-y-36:focus > :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\:focus\:-space-x-36:focus > :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\:focus\:-space-y-40:focus > :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\:focus\:-space-x-40:focus > :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\:focus\:-space-y-44:focus > :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\:focus\:-space-x-44:focus > :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\:focus\:-space-y-48:focus > :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\:focus\:-space-x-48:focus > :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\:focus\:-space-y-52:focus > :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\:focus\:-space-x-52:focus > :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\:focus\:-space-y-56:focus > :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\:focus\:-space-x-56:focus > :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\:focus\:-space-y-60:focus > :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\:focus\:-space-x-60:focus > :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\:focus\:-space-y-64:focus > :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\:focus\:-space-x-64:focus > :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\:focus\:-space-y-72:focus > :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\:focus\:-space-x-72:focus > :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\:focus\:-space-y-80:focus > :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\:focus\:-space-x-80:focus > :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\:focus\:-space-y-96:focus > :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\:focus\:-space-x-96:focus > :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\:focus\:-space-y-px:focus > :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\:focus\:-space-x-px:focus > :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\:focus\:-space-y-0\.5:focus > :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\:focus\:-space-x-0\.5:focus > :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\:focus\:-space-y-1\.5:focus > :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\:focus\:-space-x-1\.5:focus > :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\:focus\:-space-y-2\.5:focus > :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\:focus\:-space-x-2\.5:focus > :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\:focus\:-space-y-3\.5:focus > :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\:focus\:-space-x-3\.5:focus > :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\:focus\:-space-y-1\/2:focus > :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\:focus\:-space-x-1\/2:focus > :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\:focus\:-space-y-1\/3:focus > :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\:focus\:-space-x-1\/3:focus > :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\:focus\:-space-y-2\/3:focus > :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\:focus\:-space-x-2\/3:focus > :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\:focus\:-space-y-1\/4:focus > :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\:focus\:-space-x-1\/4:focus > :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\:focus\:-space-y-2\/4:focus > :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\:focus\:-space-x-2\/4:focus > :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\:focus\:-space-y-3\/4:focus > :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\:focus\:-space-x-3\/4:focus > :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\:focus\:-space-y-1\/5:focus > :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\:focus\:-space-x-1\/5:focus > :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\:focus\:-space-y-2\/5:focus > :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\:focus\:-space-x-2\/5:focus > :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\:focus\:-space-y-3\/5:focus > :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\:focus\:-space-x-3\/5:focus > :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\:focus\:-space-y-4\/5:focus > :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\:focus\:-space-x-4\/5:focus > :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\:focus\:-space-y-1\/6:focus > :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\:focus\:-space-x-1\/6:focus > :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\:focus\:-space-y-2\/6:focus > :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\:focus\:-space-x-2\/6:focus > :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\:focus\:-space-y-3\/6:focus > :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\:focus\:-space-x-3\/6:focus > :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\:focus\:-space-y-4\/6:focus > :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\:focus\:-space-x-4\/6:focus > :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\:focus\:-space-y-5\/6:focus > :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\:focus\:-space-x-5\/6:focus > :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\:focus\:-space-y-1\/12:focus > :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\:focus\:-space-x-1\/12:focus > :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\:focus\:-space-y-2\/12:focus > :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\:focus\:-space-x-2\/12:focus > :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\:focus\:-space-y-3\/12:focus > :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\:focus\:-space-x-3\/12:focus > :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\:focus\:-space-y-4\/12:focus > :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\:focus\:-space-x-4\/12:focus > :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\:focus\:-space-y-5\/12:focus > :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\:focus\:-space-x-5\/12:focus > :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\:focus\:-space-y-6\/12:focus > :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\:focus\:-space-x-6\/12:focus > :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\:focus\:-space-y-7\/12:focus > :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\:focus\:-space-x-7\/12:focus > :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\:focus\:-space-y-8\/12:focus > :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\:focus\:-space-x-8\/12:focus > :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\:focus\:-space-y-9\/12:focus > :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\:focus\:-space-x-9\/12:focus > :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\:focus\:-space-y-10\/12:focus > :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\:focus\:-space-x-10\/12:focus > :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\:focus\:-space-y-11\/12:focus > :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\:focus\:-space-x-11\/12:focus > :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\:focus\:-space-y-full:focus > :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\:focus\:-space-x-full:focus > :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\:focus\:space-y-reverse:focus > :not(template) ~ :not(template){
    --space-y-reverse     : 1 !important;
  }

  .xl\:focus\:space-x-reverse:focus > :not(template) ~ :not(template){
    --space-x-reverse     : 1 !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .xl\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .group:hover .xl\:group-hover\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .xl\:hover\:divide-y-0:hover > :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;
  }

  .xl\:hover\:divide-x-0:hover > :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;
  }

  .xl\:hover\:divide-y-2:hover > :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;
  }

  .xl\:hover\:divide-x-2:hover > :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;
  }

  .xl\:hover\:divide-y-4:hover > :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;
  }

  .xl\:hover\:divide-x-4:hover > :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;
  }

  .xl\:hover\:divide-y-8:hover > :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;
  }

  .xl\:hover\:divide-x-8:hover > :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;
  }

  .xl\:hover\:divide-y:hover > :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;
  }

  .xl\:hover\:divide-x:hover > :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;
  }

  .xl\:hover\:divide-y-reverse:hover > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .xl\:hover\:divide-x-reverse:hover > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .xl\:focus\:divide-y-0:focus > :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;
  }

  .xl\:focus\:divide-x-0:focus > :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;
  }

  .xl\:focus\:divide-y-2:focus > :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;
  }

  .xl\:focus\:divide-x-2:focus > :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;
  }

  .xl\:focus\:divide-y-4:focus > :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;
  }

  .xl\:focus\:divide-x-4:focus > :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;
  }

  .xl\:focus\:divide-y-8:focus > :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;
  }

  .xl\:focus\:divide-x-8:focus > :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;
  }

  .xl\:focus\:divide-y:focus > :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;
  }

  .xl\:focus\:divide-x:focus > :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;
  }

  .xl\:focus\:divide-y-reverse:focus > :not(template) ~ :not(template){
    --divide-y-reverse     : 1 !important;
  }

  .xl\:focus\:divide-x-reverse:focus > :not(template) ~ :not(template){
    --divide-x-reverse     : 1 !important;
  }

  .xl\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .xl\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .xl\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:divide-transparent > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:divide-white > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:divide-black > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:divide-cool-gray-50 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:divide-orange-900 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:divide-blue-brand > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-transparent:hover > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .xl\:hover\:divide-white:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-black:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-cool-gray-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-red-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-orange-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-yellow-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-green-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-teal-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-indigo-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-purple-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-200:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-300:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-400:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-500:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-600:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-700:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-800:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-pink-900:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .xl\:hover\:divide-blue-brand:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-transparent:focus > :not(template) ~ :not(template){
    border-color     : transparent !important;
  }

  .xl\:focus\:divide-white:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-black:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-cool-gray-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-red-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-orange-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-yellow-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-green-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-teal-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-indigo-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-purple-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-200:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-300:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-400:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-500:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-600:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-700:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-800:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-pink-900:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--divide-opacity)) !important;
  }

  .xl\:focus\:divide-blue-brand:focus > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--divide-opacity)) !important;
  }

  .xl\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .xl\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .xl\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .xl\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .xl\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .xl\:hover\:divide-opacity-0:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .xl\:hover\:divide-opacity-25:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .xl\:hover\:divide-opacity-50:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .xl\:hover\:divide-opacity-75:hover > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .xl\:hover\:divide-opacity-100:hover > :not(template) ~ :not(template){
    --divide-opacity     : 1 !important;
  }

  .xl\:focus\:divide-opacity-0:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0 !important;
  }

  .xl\:focus\:divide-opacity-25:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.25 !important;
  }

  .xl\:focus\:divide-opacity-50:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.5 !important;
  }

  .xl\:focus\:divide-opacity-75:focus > :not(template) ~ :not(template){
    --divide-opacity     : 0.75 !important;
  }

  .xl\:focus\:divide-opacity-100:focus > :not(template) ~ :not(template){
    --divide-opacity     : 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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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\:hover\:sr-only:hover{
    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\:hover\:not-sr-only:hover{
    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\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .group:hover .xl\:group-hover\:appearance-none{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .xl\:hover\:appearance-none:hover{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .xl\:focus\:appearance-none:focus{
    -webkit-appearance     : none !important;
       -moz-appearance     : none !important;
            appearance     : none !important;
  }

  .xl\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .xl\:bg-local{
    background-attachment     : local !important;
  }

  .xl\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .group:hover .xl\:group-hover\:bg-fixed{
    background-attachment     : fixed !important;
  }

  .group:hover .xl\:group-hover\:bg-local{
    background-attachment     : local !important;
  }

  .group:hover .xl\:group-hover\:bg-scroll{
    background-attachment     : scroll !important;
  }

  .xl\:hover\:bg-fixed:hover{
    background-attachment     : fixed !important;
  }

  .xl\:hover\:bg-local:hover{
    background-attachment     : local !important;
  }

  .xl\:hover\:bg-scroll:hover{
    background-attachment     : scroll !important;
  }

  .xl\:focus\:bg-fixed:focus{
    background-attachment     : fixed !important;
  }

  .xl\:focus\:bg-local:focus{
    background-attachment     : local !important;
  }

  .xl\:focus\:bg-scroll:focus{
    background-attachment     : scroll !important;
  }

  .xl\:bg-transparent{
    background-color     : transparent !important;
  }

  .xl\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .xl\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .xl\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .xl\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .xl\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .xl\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .xl\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .xl\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .xl\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .xl\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .xl\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .xl\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-transparent{
    background-color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:bg-white{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-black{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-50{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-100{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-200{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-300{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-400{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-500{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-600{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-700{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-800{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-cool-gray-900{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-100{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-200{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-400{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-500{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-600{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-700{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-800{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-red-900{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-50{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-100{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-200{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-300{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-400{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-500{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-600{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-700{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-800{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-orange-900{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-100{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-200{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-300{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-400{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-500{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-600{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-700{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-800{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-yellow-900{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-50{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-100{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-200{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-300{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-400{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-500{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-600{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-700{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-800{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-green-900{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-50{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-100{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-200{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-300{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-400{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-500{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-600{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-700{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-800{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-teal-900{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-50{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-100{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-200{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-300{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-400{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-500{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-600{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-700{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-800{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-900{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-50{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-100{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-200{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-300{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-400{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-500{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-600{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-700{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-800{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-indigo-900{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-50{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-100{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-200{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-300{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-400{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-500{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-600{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-700{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-800{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-purple-900{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-50{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-100{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-200{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-300{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-400{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-500{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-600{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-700{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-800{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-pink-900{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:bg-blue-brand{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-transparent:hover{
    background-color     : transparent !important;
  }

  .xl\:hover\:bg-white:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-black:hover{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-cool-gray-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-red-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-orange-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-yellow-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-green-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-teal-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-indigo-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-purple-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-50:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-100:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-200:hover{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-300:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-400:hover{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-500:hover{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-600:hover{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-700:hover{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-800:hover{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-pink-900:hover{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .xl\:hover\:bg-blue-brand:hover{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-transparent:focus{
    background-color     : transparent !important;
  }

  .xl\:focus\:bg-white:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ffffff !important;
    background-color     : rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-black:focus{
    --bg-opacity     : 1 !important;
    background-color     : #000000 !important;
    background-color     : rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f9fafb !important;
    background-color     : rgba(249, 250, 251, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f4f5f7 !important;
    background-color     : rgba(244, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5e7eb !important;
    background-color     : rgba(229, 231, 235, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d2d6dc !important;
    background-color     : rgba(210, 214, 220, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9fa6b2 !important;
    background-color     : rgba(159, 166, 178, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6b7280 !important;
    background-color     : rgba(107, 114, 128, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4b5563 !important;
    background-color     : rgba(75, 85, 99, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #374151 !important;
    background-color     : rgba(55, 65, 81, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #252f3f !important;
    background-color     : rgba(37, 47, 63, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #161e2e !important;
    background-color     : rgba(22, 30, 46, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8fafc !important;
    background-color     : rgba(248, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f1f5f9 !important;
    background-color     : rgba(241, 245, 249, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e2e8f0 !important;
    background-color     : rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cfd8e3 !important;
    background-color     : rgba(207, 216, 227, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #97a6ba !important;
    background-color     : rgba(151, 166, 186, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #64748b !important;
    background-color     : rgba(100, 116, 139, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #475569 !important;
    background-color     : rgba(71, 85, 105, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #364152 !important;
    background-color     : rgba(54, 65, 82, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #27303f !important;
    background-color     : rgba(39, 48, 63, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-cool-gray-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a202e !important;
    background-color     : rgba(26, 32, 46, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f2 !important;
    background-color     : rgba(253, 242, 242, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fde8e8 !important;
    background-color     : rgba(253, 232, 232, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fbd5d5 !important;
    background-color     : rgba(251, 213, 213, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4b4 !important;
    background-color     : rgba(248, 180, 180, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f98080 !important;
    background-color     : rgba(249, 128, 128, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f05252 !important;
    background-color     : rgba(240, 82, 82, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e02424 !important;
    background-color     : rgba(224, 36, 36, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c81e1e !important;
    background-color     : rgba(200, 30, 30, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9b1c1c !important;
    background-color     : rgba(155, 28, 28, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-red-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #771d1d !important;
    background-color     : rgba(119, 29, 29, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fff8f1 !important;
    background-color     : rgba(255, 248, 241, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #feecdc !important;
    background-color     : rgba(254, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fcd9bd !important;
    background-color     : rgba(252, 217, 189, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdba8c !important;
    background-color     : rgba(253, 186, 140, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff8a4c !important;
    background-color     : rgba(255, 138, 76, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ff5a1f !important;
    background-color     : rgba(255, 90, 31, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d03801 !important;
    background-color     : rgba(208, 56, 1, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b43403 !important;
    background-color     : rgba(180, 52, 3, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8a2c0d !important;
    background-color     : rgba(138, 44, 13, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-orange-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #73230d !important;
    background-color     : rgba(115, 35, 13, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdfdea !important;
    background-color     : rgba(253, 253, 234, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf6b2 !important;
    background-color     : rgba(253, 246, 178, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce96a !important;
    background-color     : rgba(252, 233, 106, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #faca15 !important;
    background-color     : rgba(250, 202, 21, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e3a008 !important;
    background-color     : rgba(227, 160, 8, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c27803 !important;
    background-color     : rgba(194, 120, 3, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9f580a !important;
    background-color     : rgba(159, 88, 10, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8e4b10 !important;
    background-color     : rgba(142, 75, 16, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #723b13 !important;
    background-color     : rgba(114, 59, 19, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-yellow-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #633112 !important;
    background-color     : rgba(99, 49, 18, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f3faf7 !important;
    background-color     : rgba(243, 250, 247, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #def7ec !important;
    background-color     : rgba(222, 247, 236, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bcf0da !important;
    background-color     : rgba(188, 240, 218, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #84e1bc !important;
    background-color     : rgba(132, 225, 188, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #31c48d !important;
    background-color     : rgba(49, 196, 141, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0e9f6e !important;
    background-color     : rgba(14, 159, 110, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #057a55 !important;
    background-color     : rgba(5, 122, 85, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #046c4e !important;
    background-color     : rgba(4, 108, 78, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #03543f !important;
    background-color     : rgba(3, 84, 63, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-green-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014737 !important;
    background-color     : rgba(1, 71, 55, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edfafa !important;
    background-color     : rgba(237, 250, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d5f5f6 !important;
    background-color     : rgba(213, 245, 246, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #afecef !important;
    background-color     : rgba(175, 236, 239, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7edce2 !important;
    background-color     : rgba(126, 220, 226, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #16bdca !important;
    background-color     : rgba(22, 189, 202, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0694a2 !important;
    background-color     : rgba(6, 148, 162, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #047481 !important;
    background-color     : rgba(4, 116, 129, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #036672 !important;
    background-color     : rgba(3, 102, 114, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #05505c !important;
    background-color     : rgba(5, 80, 92, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-teal-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #014451 !important;
    background-color     : rgba(1, 68, 81, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ebf5ff !important;
    background-color     : rgba(235, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e1effe !important;
    background-color     : rgba(225, 239, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #c3ddfd !important;
    background-color     : rgba(195, 221, 253, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #a4cafe !important;
    background-color     : rgba(164, 202, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #76a9fa !important;
    background-color     : rgba(118, 169, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #3f83f8 !important;
    background-color     : rgba(63, 131, 248, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1c64f2 !important;
    background-color     : rgba(28, 100, 242, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1a56db !important;
    background-color     : rgba(26, 86, 219, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #1e429f !important;
    background-color     : rgba(30, 66, 159, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #233876 !important;
    background-color     : rgba(35, 56, 118, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f0f5ff !important;
    background-color     : rgba(240, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e5edff !important;
    background-color     : rgba(229, 237, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cddbfe !important;
    background-color     : rgba(205, 219, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #b4c6fc !important;
    background-color     : rgba(180, 198, 252, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #8da2fb !important;
    background-color     : rgba(141, 162, 251, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6875f5 !important;
    background-color     : rgba(104, 117, 245, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5850ec !important;
    background-color     : rgba(88, 80, 236, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5145cd !important;
    background-color     : rgba(81, 69, 205, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #42389d !important;
    background-color     : rgba(66, 56, 157, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-indigo-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #362f78 !important;
    background-color     : rgba(54, 47, 120, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f6f5ff !important;
    background-color     : rgba(246, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #edebfe !important;
    background-color     : rgba(237, 235, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #dcd7fe !important;
    background-color     : rgba(220, 215, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #cabffd !important;
    background-color     : rgba(202, 191, 253, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #ac94fa !important;
    background-color     : rgba(172, 148, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #9061f9 !important;
    background-color     : rgba(144, 97, 249, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #7e3af2 !important;
    background-color     : rgba(126, 58, 242, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #6c2bd9 !important;
    background-color     : rgba(108, 43, 217, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #5521b5 !important;
    background-color     : rgba(85, 33, 181, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-purple-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #4a1d96 !important;
    background-color     : rgba(74, 29, 150, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-50:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fdf2f8 !important;
    background-color     : rgba(253, 242, 248, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-100:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fce8f3 !important;
    background-color     : rgba(252, 232, 243, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-200:focus{
    --bg-opacity     : 1 !important;
    background-color     : #fad1e8 !important;
    background-color     : rgba(250, 209, 232, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-300:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f8b4d9 !important;
    background-color     : rgba(248, 180, 217, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-400:focus{
    --bg-opacity     : 1 !important;
    background-color     : #f17eb8 !important;
    background-color     : rgba(241, 126, 184, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-500:focus{
    --bg-opacity     : 1 !important;
    background-color     : #e74694 !important;
    background-color     : rgba(231, 70, 148, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-600:focus{
    --bg-opacity     : 1 !important;
    background-color     : #d61f69 !important;
    background-color     : rgba(214, 31, 105, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-700:focus{
    --bg-opacity     : 1 !important;
    background-color     : #bf125d !important;
    background-color     : rgba(191, 18, 93, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-800:focus{
    --bg-opacity     : 1 !important;
    background-color     : #99154b !important;
    background-color     : rgba(153, 21, 75, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-pink-900:focus{
    --bg-opacity     : 1 !important;
    background-color     : #751a3d !important;
    background-color     : rgba(117, 26, 61, var(--bg-opacity)) !important;
  }

  .xl\:focus\:bg-blue-brand:focus{
    --bg-opacity     : 1 !important;
    background-color     : #0287f6 !important;
    background-color     : rgba(2, 135, 246, var(--bg-opacity)) !important;
  }

  .xl\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .xl\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .xl\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .xl\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .xl\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:bg-opacity-0{
    --bg-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:bg-opacity-25{
    --bg-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:bg-opacity-50{
    --bg-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:bg-opacity-75{
    --bg-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:bg-opacity-100{
    --bg-opacity     : 1 !important;
  }

  .xl\:hover\:bg-opacity-0:hover{
    --bg-opacity     : 0 !important;
  }

  .xl\:hover\:bg-opacity-25:hover{
    --bg-opacity     : 0.25 !important;
  }

  .xl\:hover\:bg-opacity-50:hover{
    --bg-opacity     : 0.5 !important;
  }

  .xl\:hover\:bg-opacity-75:hover{
    --bg-opacity     : 0.75 !important;
  }

  .xl\:hover\:bg-opacity-100:hover{
    --bg-opacity     : 1 !important;
  }

  .xl\:focus\:bg-opacity-0:focus{
    --bg-opacity     : 0 !important;
  }

  .xl\:focus\:bg-opacity-25:focus{
    --bg-opacity     : 0.25 !important;
  }

  .xl\:focus\:bg-opacity-50:focus{
    --bg-opacity     : 0.5 !important;
  }

  .xl\:focus\:bg-opacity-75:focus{
    --bg-opacity     : 0.75 !important;
  }

  .xl\:focus\:bg-opacity-100:focus{
    --bg-opacity     : 1 !important;
  }

  .xl\:bg-bottom{
    background-position     : bottom !important;
  }

  .xl\:bg-center{
    background-position     : center !important;
  }

  .xl\:bg-left{
    background-position     : left !important;
  }

  .xl\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .xl\:bg-left-top{
    background-position     : left top !important;
  }

  .xl\:bg-right{
    background-position     : right !important;
  }

  .xl\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .xl\:bg-right-top{
    background-position     : right top !important;
  }

  .xl\:bg-top{
    background-position     : top !important;
  }

  .group:hover .xl\:group-hover\:bg-bottom{
    background-position     : bottom !important;
  }

  .group:hover .xl\:group-hover\:bg-center{
    background-position     : center !important;
  }

  .group:hover .xl\:group-hover\:bg-left{
    background-position     : left !important;
  }

  .group:hover .xl\:group-hover\:bg-left-bottom{
    background-position     : left bottom !important;
  }

  .group:hover .xl\:group-hover\:bg-left-top{
    background-position     : left top !important;
  }

  .group:hover .xl\:group-hover\:bg-right{
    background-position     : right !important;
  }

  .group:hover .xl\:group-hover\:bg-right-bottom{
    background-position     : right bottom !important;
  }

  .group:hover .xl\:group-hover\:bg-right-top{
    background-position     : right top !important;
  }

  .group:hover .xl\:group-hover\:bg-top{
    background-position     : top !important;
  }

  .xl\:hover\:bg-bottom:hover{
    background-position     : bottom !important;
  }

  .xl\:hover\:bg-center:hover{
    background-position     : center !important;
  }

  .xl\:hover\:bg-left:hover{
    background-position     : left !important;
  }

  .xl\:hover\:bg-left-bottom:hover{
    background-position     : left bottom !important;
  }

  .xl\:hover\:bg-left-top:hover{
    background-position     : left top !important;
  }

  .xl\:hover\:bg-right:hover{
    background-position     : right !important;
  }

  .xl\:hover\:bg-right-bottom:hover{
    background-position     : right bottom !important;
  }

  .xl\:hover\:bg-right-top:hover{
    background-position     : right top !important;
  }

  .xl\:hover\:bg-top:hover{
    background-position     : top !important;
  }

  .xl\:focus\:bg-bottom:focus{
    background-position     : bottom !important;
  }

  .xl\:focus\:bg-center:focus{
    background-position     : center !important;
  }

  .xl\:focus\:bg-left:focus{
    background-position     : left !important;
  }

  .xl\:focus\:bg-left-bottom:focus{
    background-position     : left bottom !important;
  }

  .xl\:focus\:bg-left-top:focus{
    background-position     : left top !important;
  }

  .xl\:focus\:bg-right:focus{
    background-position     : right !important;
  }

  .xl\:focus\:bg-right-bottom:focus{
    background-position     : right bottom !important;
  }

  .xl\:focus\:bg-right-top:focus{
    background-position     : right top !important;
  }

  .xl\:focus\:bg-top:focus{
    background-position     : top !important;
  }

  .xl\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .xl\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .xl\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .xl\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .xl\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .xl\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .group:hover .xl\:group-hover\:bg-repeat{
    background-repeat     : repeat !important;
  }

  .group:hover .xl\:group-hover\:bg-no-repeat{
    background-repeat     : no-repeat !important;
  }

  .group:hover .xl\:group-hover\:bg-repeat-x{
    background-repeat     : repeat-x !important;
  }

  .group:hover .xl\:group-hover\:bg-repeat-y{
    background-repeat     : repeat-y !important;
  }

  .group:hover .xl\:group-hover\:bg-repeat-round{
    background-repeat     : round !important;
  }

  .group:hover .xl\:group-hover\:bg-repeat-space{
    background-repeat     : space !important;
  }

  .xl\:hover\:bg-repeat:hover{
    background-repeat     : repeat !important;
  }

  .xl\:hover\:bg-no-repeat:hover{
    background-repeat     : no-repeat !important;
  }

  .xl\:hover\:bg-repeat-x:hover{
    background-repeat     : repeat-x !important;
  }

  .xl\:hover\:bg-repeat-y:hover{
    background-repeat     : repeat-y !important;
  }

  .xl\:hover\:bg-repeat-round:hover{
    background-repeat     : round !important;
  }

  .xl\:hover\:bg-repeat-space:hover{
    background-repeat     : space !important;
  }

  .xl\:focus\:bg-repeat:focus{
    background-repeat     : repeat !important;
  }

  .xl\:focus\:bg-no-repeat:focus{
    background-repeat     : no-repeat !important;
  }

  .xl\:focus\:bg-repeat-x:focus{
    background-repeat     : repeat-x !important;
  }

  .xl\:focus\:bg-repeat-y:focus{
    background-repeat     : repeat-y !important;
  }

  .xl\:focus\:bg-repeat-round:focus{
    background-repeat     : round !important;
  }

  .xl\:focus\:bg-repeat-space:focus{
    background-repeat     : space !important;
  }

  .xl\:bg-auto{
    background-size     : auto !important;
  }

  .xl\:bg-cover{
    background-size     : cover !important;
  }

  .xl\:bg-contain{
    background-size     : contain !important;
  }

  .group:hover .xl\:group-hover\:bg-auto{
    background-size     : auto !important;
  }

  .group:hover .xl\:group-hover\:bg-cover{
    background-size     : cover !important;
  }

  .group:hover .xl\:group-hover\:bg-contain{
    background-size     : contain !important;
  }

  .xl\:hover\:bg-auto:hover{
    background-size     : auto !important;
  }

  .xl\:hover\:bg-cover:hover{
    background-size     : cover !important;
  }

  .xl\:hover\:bg-contain:hover{
    background-size     : contain !important;
  }

  .xl\:focus\:bg-auto:focus{
    background-size     : auto !important;
  }

  .xl\:focus\:bg-cover:focus{
    background-size     : cover !important;
  }

  .xl\:focus\:bg-contain:focus{
    background-size     : contain !important;
  }

  .xl\:border-collapse{
    border-collapse     : collapse !important;
  }

  .xl\:border-separate{
    border-collapse     : separate !important;
  }

  .group:hover .xl\:group-hover\:border-collapse{
    border-collapse     : collapse !important;
  }

  .group:hover .xl\:group-hover\:border-separate{
    border-collapse     : separate !important;
  }

  .xl\:hover\:border-collapse:hover{
    border-collapse     : collapse !important;
  }

  .xl\:hover\:border-separate:hover{
    border-collapse     : separate !important;
  }

  .xl\:focus\:border-collapse:focus{
    border-collapse     : collapse !important;
  }

  .xl\:focus\:border-separate:focus{
    border-collapse     : separate !important;
  }

  .xl\:border-transparent{
    border-color     : transparent !important;
  }

  .xl\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .xl\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .xl\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .xl\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .xl\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .xl\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .xl\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .xl\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .xl\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .xl\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .xl\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .xl\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .xl\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .xl\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .xl\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .xl\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .xl\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .xl\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .xl\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .xl\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .xl\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .xl\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .xl\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .xl\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .xl\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .xl\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .xl\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .xl\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .xl\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .xl\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .xl\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .xl\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .xl\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .xl\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .xl\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .xl\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .xl\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .xl\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .xl\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .xl\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .xl\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .xl\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .xl\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .xl\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .xl\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .xl\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .xl\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .xl\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .xl\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .xl\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .xl\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .xl\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .xl\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .xl\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .xl\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .xl\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .xl\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .xl\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .xl\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .xl\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .xl\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .xl\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .xl\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .xl\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .xl\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .xl\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .xl\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .xl\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .xl\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .xl\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .xl\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .xl\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .xl\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .xl\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .xl\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .xl\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .xl\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .xl\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .xl\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .xl\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-transparent{
    border-color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:border-white{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-black{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-50{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-100{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-200{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-300{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-400{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-500{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-600{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-700{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-800{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-cool-gray-900{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-100{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-200{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-400{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-500{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-600{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-700{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-800{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-red-900{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-50{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-100{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-200{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-300{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-400{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-500{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-600{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-700{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-800{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-orange-900{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-50{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-100{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-200{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-300{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-400{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-500{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-600{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-700{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-800{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-yellow-900{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-50{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-100{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-200{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-300{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-400{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-500{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-600{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-700{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-800{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-green-900{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-50{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-100{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-200{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-300{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-400{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-500{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-600{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-700{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-800{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-teal-900{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-50{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-100{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-200{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-300{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-400{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-500{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-600{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-700{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-800{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-900{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-50{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-100{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-200{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-300{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-400{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-500{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-600{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-700{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-800{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-indigo-900{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-50{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-100{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-200{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-300{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-400{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-500{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-600{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-700{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-800{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-purple-900{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-50{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-100{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-200{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-300{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-400{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-500{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-600{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-700{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-800{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-pink-900{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:border-blue-brand{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-transparent:hover{
    border-color     : transparent !important;
  }

  .xl\:hover\:border-white:hover{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-black:hover{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-cool-gray-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-red-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-orange-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-yellow-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-green-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-teal-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-indigo-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-purple-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-50:hover{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-100:hover{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-200:hover{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-300:hover{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-400:hover{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-500:hover{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-600:hover{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-700:hover{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-800:hover{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-pink-900:hover{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .xl\:hover\:border-blue-brand:hover{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-transparent:focus{
    border-color     : transparent !important;
  }

  .xl\:focus\:border-white:focus{
    --border-opacity     : 1 !important;
    border-color     : #ffffff !important;
    border-color     : rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-black:focus{
    --border-opacity     : 1 !important;
    border-color     : #000000 !important;
    border-color     : rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f9fafb !important;
    border-color     : rgba(249, 250, 251, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f4f5f7 !important;
    border-color     : rgba(244, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5e7eb !important;
    border-color     : rgba(229, 231, 235, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #d2d6dc !important;
    border-color     : rgba(210, 214, 220, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #9fa6b2 !important;
    border-color     : rgba(159, 166, 178, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6b7280 !important;
    border-color     : rgba(107, 114, 128, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #4b5563 !important;
    border-color     : rgba(75, 85, 99, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #374151 !important;
    border-color     : rgba(55, 65, 81, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #252f3f !important;
    border-color     : rgba(37, 47, 63, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #161e2e !important;
    border-color     : rgba(22, 30, 46, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8fafc !important;
    border-color     : rgba(248, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #f1f5f9 !important;
    border-color     : rgba(241, 245, 249, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #e2e8f0 !important;
    border-color     : rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cfd8e3 !important;
    border-color     : rgba(207, 216, 227, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #97a6ba !important;
    border-color     : rgba(151, 166, 186, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #64748b !important;
    border-color     : rgba(100, 116, 139, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #475569 !important;
    border-color     : rgba(71, 85, 105, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #364152 !important;
    border-color     : rgba(54, 65, 82, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #27303f !important;
    border-color     : rgba(39, 48, 63, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-cool-gray-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a202e !important;
    border-color     : rgba(26, 32, 46, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f2 !important;
    border-color     : rgba(253, 242, 242, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fde8e8 !important;
    border-color     : rgba(253, 232, 232, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fbd5d5 !important;
    border-color     : rgba(251, 213, 213, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4b4 !important;
    border-color     : rgba(248, 180, 180, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f98080 !important;
    border-color     : rgba(249, 128, 128, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #f05252 !important;
    border-color     : rgba(240, 82, 82, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #e02424 !important;
    border-color     : rgba(224, 36, 36, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #c81e1e !important;
    border-color     : rgba(200, 30, 30, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #9b1c1c !important;
    border-color     : rgba(155, 28, 28, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-red-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #771d1d !important;
    border-color     : rgba(119, 29, 29, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fff8f1 !important;
    border-color     : rgba(255, 248, 241, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #feecdc !important;
    border-color     : rgba(254, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fcd9bd !important;
    border-color     : rgba(252, 217, 189, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdba8c !important;
    border-color     : rgba(253, 186, 140, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff8a4c !important;
    border-color     : rgba(255, 138, 76, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #ff5a1f !important;
    border-color     : rgba(255, 90, 31, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d03801 !important;
    border-color     : rgba(208, 56, 1, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #b43403 !important;
    border-color     : rgba(180, 52, 3, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #8a2c0d !important;
    border-color     : rgba(138, 44, 13, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-orange-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #73230d !important;
    border-color     : rgba(115, 35, 13, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdfdea !important;
    border-color     : rgba(253, 253, 234, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf6b2 !important;
    border-color     : rgba(253, 246, 178, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce96a !important;
    border-color     : rgba(252, 233, 106, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #faca15 !important;
    border-color     : rgba(250, 202, 21, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #e3a008 !important;
    border-color     : rgba(227, 160, 8, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #c27803 !important;
    border-color     : rgba(194, 120, 3, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #9f580a !important;
    border-color     : rgba(159, 88, 10, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #8e4b10 !important;
    border-color     : rgba(142, 75, 16, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #723b13 !important;
    border-color     : rgba(114, 59, 19, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-yellow-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #633112 !important;
    border-color     : rgba(99, 49, 18, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f3faf7 !important;
    border-color     : rgba(243, 250, 247, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #def7ec !important;
    border-color     : rgba(222, 247, 236, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #bcf0da !important;
    border-color     : rgba(188, 240, 218, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #84e1bc !important;
    border-color     : rgba(132, 225, 188, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #31c48d !important;
    border-color     : rgba(49, 196, 141, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0e9f6e !important;
    border-color     : rgba(14, 159, 110, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #057a55 !important;
    border-color     : rgba(5, 122, 85, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #046c4e !important;
    border-color     : rgba(4, 108, 78, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #03543f !important;
    border-color     : rgba(3, 84, 63, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-green-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014737 !important;
    border-color     : rgba(1, 71, 55, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #edfafa !important;
    border-color     : rgba(237, 250, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #d5f5f6 !important;
    border-color     : rgba(213, 245, 246, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #afecef !important;
    border-color     : rgba(175, 236, 239, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #7edce2 !important;
    border-color     : rgba(126, 220, 226, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #16bdca !important;
    border-color     : rgba(22, 189, 202, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #0694a2 !important;
    border-color     : rgba(6, 148, 162, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #047481 !important;
    border-color     : rgba(4, 116, 129, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #036672 !important;
    border-color     : rgba(3, 102, 114, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #05505c !important;
    border-color     : rgba(5, 80, 92, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-teal-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #014451 !important;
    border-color     : rgba(1, 68, 81, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #ebf5ff !important;
    border-color     : rgba(235, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e1effe !important;
    border-color     : rgba(225, 239, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #c3ddfd !important;
    border-color     : rgba(195, 221, 253, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #a4cafe !important;
    border-color     : rgba(164, 202, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #76a9fa !important;
    border-color     : rgba(118, 169, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #3f83f8 !important;
    border-color     : rgba(63, 131, 248, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #1c64f2 !important;
    border-color     : rgba(28, 100, 242, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #1a56db !important;
    border-color     : rgba(26, 86, 219, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #1e429f !important;
    border-color     : rgba(30, 66, 159, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #233876 !important;
    border-color     : rgba(35, 56, 118, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f0f5ff !important;
    border-color     : rgba(240, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #e5edff !important;
    border-color     : rgba(229, 237, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #cddbfe !important;
    border-color     : rgba(205, 219, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #b4c6fc !important;
    border-color     : rgba(180, 198, 252, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #8da2fb !important;
    border-color     : rgba(141, 162, 251, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #6875f5 !important;
    border-color     : rgba(104, 117, 245, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #5850ec !important;
    border-color     : rgba(88, 80, 236, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #5145cd !important;
    border-color     : rgba(81, 69, 205, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #42389d !important;
    border-color     : rgba(66, 56, 157, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-indigo-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #362f78 !important;
    border-color     : rgba(54, 47, 120, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #f6f5ff !important;
    border-color     : rgba(246, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #edebfe !important;
    border-color     : rgba(237, 235, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #dcd7fe !important;
    border-color     : rgba(220, 215, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #cabffd !important;
    border-color     : rgba(202, 191, 253, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #ac94fa !important;
    border-color     : rgba(172, 148, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #9061f9 !important;
    border-color     : rgba(144, 97, 249, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #7e3af2 !important;
    border-color     : rgba(126, 58, 242, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #6c2bd9 !important;
    border-color     : rgba(108, 43, 217, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #5521b5 !important;
    border-color     : rgba(85, 33, 181, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-purple-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #4a1d96 !important;
    border-color     : rgba(74, 29, 150, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-50:focus{
    --border-opacity     : 1 !important;
    border-color     : #fdf2f8 !important;
    border-color     : rgba(253, 242, 248, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-100:focus{
    --border-opacity     : 1 !important;
    border-color     : #fce8f3 !important;
    border-color     : rgba(252, 232, 243, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-200:focus{
    --border-opacity     : 1 !important;
    border-color     : #fad1e8 !important;
    border-color     : rgba(250, 209, 232, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-300:focus{
    --border-opacity     : 1 !important;
    border-color     : #f8b4d9 !important;
    border-color     : rgba(248, 180, 217, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-400:focus{
    --border-opacity     : 1 !important;
    border-color     : #f17eb8 !important;
    border-color     : rgba(241, 126, 184, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-500:focus{
    --border-opacity     : 1 !important;
    border-color     : #e74694 !important;
    border-color     : rgba(231, 70, 148, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-600:focus{
    --border-opacity     : 1 !important;
    border-color     : #d61f69 !important;
    border-color     : rgba(214, 31, 105, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-700:focus{
    --border-opacity     : 1 !important;
    border-color     : #bf125d !important;
    border-color     : rgba(191, 18, 93, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-800:focus{
    --border-opacity     : 1 !important;
    border-color     : #99154b !important;
    border-color     : rgba(153, 21, 75, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-pink-900:focus{
    --border-opacity     : 1 !important;
    border-color     : #751a3d !important;
    border-color     : rgba(117, 26, 61, var(--border-opacity)) !important;
  }

  .xl\:focus\:border-blue-brand:focus{
    --border-opacity     : 1 !important;
    border-color     : #0287f6 !important;
    border-color     : rgba(2, 135, 246, var(--border-opacity)) !important;
  }

  .xl\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .xl\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .xl\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .xl\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .xl\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:border-opacity-0{
    --border-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-opacity-25{
    --border-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:border-opacity-50{
    --border-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:border-opacity-75{
    --border-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:border-opacity-100{
    --border-opacity     : 1 !important;
  }

  .xl\:hover\:border-opacity-0:hover{
    --border-opacity     : 0 !important;
  }

  .xl\:hover\:border-opacity-25:hover{
    --border-opacity     : 0.25 !important;
  }

  .xl\:hover\:border-opacity-50:hover{
    --border-opacity     : 0.5 !important;
  }

  .xl\:hover\:border-opacity-75:hover{
    --border-opacity     : 0.75 !important;
  }

  .xl\:hover\:border-opacity-100:hover{
    --border-opacity     : 1 !important;
  }

  .xl\:focus\:border-opacity-0:focus{
    --border-opacity     : 0 !important;
  }

  .xl\:focus\:border-opacity-25:focus{
    --border-opacity     : 0.25 !important;
  }

  .xl\:focus\:border-opacity-50:focus{
    --border-opacity     : 0.5 !important;
  }

  .xl\:focus\:border-opacity-75:focus{
    --border-opacity     : 0.75 !important;
  }

  .xl\:focus\:border-opacity-100:focus{
    --border-opacity     : 1 !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;
  }

  .group:hover .xl\:group-hover\:rounded-none{
    border-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-sm{
    border-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded{
    border-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-md{
    border-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-lg{
    border-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-full{
    border-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-t-none{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-r-none{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-b-none{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-l-none{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-t-sm{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-r-sm{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-b-sm{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-l-sm{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-t{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-r{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-b{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-l{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-t-md{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-r-md{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-b-md{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-l-md{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-t-lg{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-r-lg{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-b-lg{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-l-lg{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-t-full{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-r-full{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-b-full{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-l-full{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl-none{
    border-top-left-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr-none{
    border-top-right-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-br-none{
    border-bottom-right-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl-none{
    border-bottom-left-radius     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl-sm{
    border-top-left-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr-sm{
    border-top-right-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-br-sm{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl-sm{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl{
    border-top-left-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr{
    border-top-right-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-br{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl-md{
    border-top-left-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr-md{
    border-top-right-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-br-md{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl-md{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl-lg{
    border-top-left-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr-lg{
    border-top-right-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-br-lg{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl-lg{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:rounded-tl-full{
    border-top-left-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-tr-full{
    border-top-right-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-br-full{
    border-bottom-right-radius     : 9999px !important;
  }

  .group:hover .xl\:group-hover\:rounded-bl-full{
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-none:hover{
    border-radius     : 0 !important;
  }

  .xl\:hover\:rounded-sm:hover{
    border-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded:hover{
    border-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-md:hover{
    border-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-lg:hover{
    border-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-full:hover{
    border-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-t-none:hover{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .xl\:hover\:rounded-r-none:hover{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .xl\:hover\:rounded-b-none:hover{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:hover\:rounded-l-none:hover{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:hover\:rounded-t-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-r-sm:hover{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-b-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-l-sm:hover{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-t:hover{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-r:hover{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-b:hover{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-l:hover{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-t-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-r-md:hover{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-b-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-l-md:hover{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-t-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-r-lg:hover{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-b-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-l-lg:hover{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-t-full:hover{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-r-full:hover{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-b-full:hover{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-l-full:hover{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-tl-none:hover{
    border-top-left-radius     : 0 !important;
  }

  .xl\:hover\:rounded-tr-none:hover{
    border-top-right-radius     : 0 !important;
  }

  .xl\:hover\:rounded-br-none:hover{
    border-bottom-right-radius     : 0 !important;
  }

  .xl\:hover\:rounded-bl-none:hover{
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:hover\:rounded-tl-sm:hover{
    border-top-left-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-tr-sm:hover{
    border-top-right-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-br-sm:hover{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-bl-sm:hover{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:hover\:rounded-tl:hover{
    border-top-left-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-tr:hover{
    border-top-right-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-br:hover{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-bl:hover{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:hover\:rounded-tl-md:hover{
    border-top-left-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-tr-md:hover{
    border-top-right-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-br-md:hover{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-bl-md:hover{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:hover\:rounded-tl-lg:hover{
    border-top-left-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-tr-lg:hover{
    border-top-right-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-br-lg:hover{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-bl-lg:hover{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:hover\:rounded-tl-full:hover{
    border-top-left-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-tr-full:hover{
    border-top-right-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-br-full:hover{
    border-bottom-right-radius     : 9999px !important;
  }

  .xl\:hover\:rounded-bl-full:hover{
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-none:focus{
    border-radius     : 0 !important;
  }

  .xl\:focus\:rounded-sm:focus{
    border-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded:focus{
    border-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-md:focus{
    border-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-lg:focus{
    border-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-full:focus{
    border-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-t-none:focus{
    border-top-left-radius     : 0 !important;
    border-top-right-radius     : 0 !important;
  }

  .xl\:focus\:rounded-r-none:focus{
    border-top-right-radius     : 0 !important;
    border-bottom-right-radius     : 0 !important;
  }

  .xl\:focus\:rounded-b-none:focus{
    border-bottom-right-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:focus\:rounded-l-none:focus{
    border-top-left-radius     : 0 !important;
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:focus\:rounded-t-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-top-right-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-r-sm:focus{
    border-top-right-radius     : 0.125rem !important;
    border-bottom-right-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-b-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-l-sm:focus{
    border-top-left-radius     : 0.125rem !important;
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-t:focus{
    border-top-left-radius     : 0.25rem !important;
    border-top-right-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-r:focus{
    border-top-right-radius     : 0.25rem !important;
    border-bottom-right-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-b:focus{
    border-bottom-right-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-l:focus{
    border-top-left-radius     : 0.25rem !important;
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-t-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-top-right-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-r-md:focus{
    border-top-right-radius     : 0.375rem !important;
    border-bottom-right-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-b-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-l-md:focus{
    border-top-left-radius     : 0.375rem !important;
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-t-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-top-right-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-r-lg:focus{
    border-top-right-radius     : 0.5rem !important;
    border-bottom-right-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-b-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-l-lg:focus{
    border-top-left-radius     : 0.5rem !important;
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-t-full:focus{
    border-top-left-radius     : 9999px !important;
    border-top-right-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-r-full:focus{
    border-top-right-radius     : 9999px !important;
    border-bottom-right-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-b-full:focus{
    border-bottom-right-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-l-full:focus{
    border-top-left-radius     : 9999px !important;
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-tl-none:focus{
    border-top-left-radius     : 0 !important;
  }

  .xl\:focus\:rounded-tr-none:focus{
    border-top-right-radius     : 0 !important;
  }

  .xl\:focus\:rounded-br-none:focus{
    border-bottom-right-radius     : 0 !important;
  }

  .xl\:focus\:rounded-bl-none:focus{
    border-bottom-left-radius     : 0 !important;
  }

  .xl\:focus\:rounded-tl-sm:focus{
    border-top-left-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-tr-sm:focus{
    border-top-right-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-br-sm:focus{
    border-bottom-right-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-bl-sm:focus{
    border-bottom-left-radius     : 0.125rem !important;
  }

  .xl\:focus\:rounded-tl:focus{
    border-top-left-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-tr:focus{
    border-top-right-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-br:focus{
    border-bottom-right-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-bl:focus{
    border-bottom-left-radius     : 0.25rem !important;
  }

  .xl\:focus\:rounded-tl-md:focus{
    border-top-left-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-tr-md:focus{
    border-top-right-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-br-md:focus{
    border-bottom-right-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-bl-md:focus{
    border-bottom-left-radius     : 0.375rem !important;
  }

  .xl\:focus\:rounded-tl-lg:focus{
    border-top-left-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-tr-lg:focus{
    border-top-right-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-br-lg:focus{
    border-bottom-right-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-bl-lg:focus{
    border-bottom-left-radius     : 0.5rem !important;
  }

  .xl\:focus\:rounded-tl-full:focus{
    border-top-left-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-tr-full:focus{
    border-top-right-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-br-full:focus{
    border-bottom-right-radius     : 9999px !important;
  }

  .xl\:focus\:rounded-bl-full:focus{
    border-bottom-left-radius     : 9999px !important;
  }

  .xl\:border-solid{
    border-style     : solid !important;
  }

  .xl\:border-dashed{
    border-style     : dashed !important;
  }

  .xl\:border-dotted{
    border-style     : dotted !important;
  }

  .xl\:border-double{
    border-style     : double !important;
  }

  .xl\:border-none{
    border-style     : none !important;
  }

  .group:hover .xl\:group-hover\:border-solid{
    border-style     : solid !important;
  }

  .group:hover .xl\:group-hover\:border-dashed{
    border-style     : dashed !important;
  }

  .group:hover .xl\:group-hover\:border-dotted{
    border-style     : dotted !important;
  }

  .group:hover .xl\:group-hover\:border-double{
    border-style     : double !important;
  }

  .group:hover .xl\:group-hover\:border-none{
    border-style     : none !important;
  }

  .xl\:hover\:border-solid:hover{
    border-style     : solid !important;
  }

  .xl\:hover\:border-dashed:hover{
    border-style     : dashed !important;
  }

  .xl\:hover\:border-dotted:hover{
    border-style     : dotted !important;
  }

  .xl\:hover\:border-double:hover{
    border-style     : double !important;
  }

  .xl\:hover\:border-none:hover{
    border-style     : none !important;
  }

  .xl\:focus\:border-solid:focus{
    border-style     : solid !important;
  }

  .xl\:focus\:border-dashed:focus{
    border-style     : dashed !important;
  }

  .xl\:focus\:border-dotted:focus{
    border-style     : dotted !important;
  }

  .xl\:focus\:border-double:focus{
    border-style     : double !important;
  }

  .xl\:focus\:border-none:focus{
    border-style     : none !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;
  }

  .group:hover .xl\:group-hover\:border-0{
    border-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-2{
    border-width     : 2px !important;
  }

  .group:hover .xl\:group-hover\:border-4{
    border-width     : 4px !important;
  }

  .group:hover .xl\:group-hover\:border-8{
    border-width     : 8px !important;
  }

  .group:hover .xl\:group-hover\:border{
    border-width     : 1px !important;
  }

  .group:hover .xl\:group-hover\:border-t-0{
    border-top-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-r-0{
    border-right-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-b-0{
    border-bottom-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-l-0{
    border-left-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:border-t-2{
    border-top-width     : 2px !important;
  }

  .group:hover .xl\:group-hover\:border-r-2{
    border-right-width     : 2px !important;
  }

  .group:hover .xl\:group-hover\:border-b-2{
    border-bottom-width     : 2px !important;
  }

  .group:hover .xl\:group-hover\:border-l-2{
    border-left-width     : 2px !important;
  }

  .group:hover .xl\:group-hover\:border-t-4{
    border-top-width     : 4px !important;
  }

  .group:hover .xl\:group-hover\:border-r-4{
    border-right-width     : 4px !important;
  }

  .group:hover .xl\:group-hover\:border-b-4{
    border-bottom-width     : 4px !important;
  }

  .group:hover .xl\:group-hover\:border-l-4{
    border-left-width     : 4px !important;
  }

  .group:hover .xl\:group-hover\:border-t-8{
    border-top-width     : 8px !important;
  }

  .group:hover .xl\:group-hover\:border-r-8{
    border-right-width     : 8px !important;
  }

  .group:hover .xl\:group-hover\:border-b-8{
    border-bottom-width     : 8px !important;
  }

  .group:hover .xl\:group-hover\:border-l-8{
    border-left-width     : 8px !important;
  }

  .group:hover .xl\:group-hover\:border-t{
    border-top-width     : 1px !important;
  }

  .group:hover .xl\:group-hover\:border-r{
    border-right-width     : 1px !important;
  }

  .group:hover .xl\:group-hover\:border-b{
    border-bottom-width     : 1px !important;
  }

  .group:hover .xl\:group-hover\:border-l{
    border-left-width     : 1px !important;
  }

  .xl\:hover\:border-0:hover{
    border-width     : 0 !important;
  }

  .xl\:hover\:border-2:hover{
    border-width     : 2px !important;
  }

  .xl\:hover\:border-4:hover{
    border-width     : 4px !important;
  }

  .xl\:hover\:border-8:hover{
    border-width     : 8px !important;
  }

  .xl\:hover\:border:hover{
    border-width     : 1px !important;
  }

  .xl\:hover\:border-t-0:hover{
    border-top-width     : 0 !important;
  }

  .xl\:hover\:border-r-0:hover{
    border-right-width     : 0 !important;
  }

  .xl\:hover\:border-b-0:hover{
    border-bottom-width     : 0 !important;
  }

  .xl\:hover\:border-l-0:hover{
    border-left-width     : 0 !important;
  }

  .xl\:hover\:border-t-2:hover{
    border-top-width     : 2px !important;
  }

  .xl\:hover\:border-r-2:hover{
    border-right-width     : 2px !important;
  }

  .xl\:hover\:border-b-2:hover{
    border-bottom-width     : 2px !important;
  }

  .xl\:hover\:border-l-2:hover{
    border-left-width     : 2px !important;
  }

  .xl\:hover\:border-t-4:hover{
    border-top-width     : 4px !important;
  }

  .xl\:hover\:border-r-4:hover{
    border-right-width     : 4px !important;
  }

  .xl\:hover\:border-b-4:hover{
    border-bottom-width     : 4px !important;
  }

  .xl\:hover\:border-l-4:hover{
    border-left-width     : 4px !important;
  }

  .xl\:hover\:border-t-8:hover{
    border-top-width     : 8px !important;
  }

  .xl\:hover\:border-r-8:hover{
    border-right-width     : 8px !important;
  }

  .xl\:hover\:border-b-8:hover{
    border-bottom-width     : 8px !important;
  }

  .xl\:hover\:border-l-8:hover{
    border-left-width     : 8px !important;
  }

  .xl\:hover\:border-t:hover{
    border-top-width     : 1px !important;
  }

  .xl\:hover\:border-r:hover{
    border-right-width     : 1px !important;
  }

  .xl\:hover\:border-b:hover{
    border-bottom-width     : 1px !important;
  }

  .xl\:hover\:border-l:hover{
    border-left-width     : 1px !important;
  }

  .xl\:focus\:border-0:focus{
    border-width     : 0 !important;
  }

  .xl\:focus\:border-2:focus{
    border-width     : 2px !important;
  }

  .xl\:focus\:border-4:focus{
    border-width     : 4px !important;
  }

  .xl\:focus\:border-8:focus{
    border-width     : 8px !important;
  }

  .xl\:focus\:border:focus{
    border-width     : 1px !important;
  }

  .xl\:focus\:border-t-0:focus{
    border-top-width     : 0 !important;
  }

  .xl\:focus\:border-r-0:focus{
    border-right-width     : 0 !important;
  }

  .xl\:focus\:border-b-0:focus{
    border-bottom-width     : 0 !important;
  }

  .xl\:focus\:border-l-0:focus{
    border-left-width     : 0 !important;
  }

  .xl\:focus\:border-t-2:focus{
    border-top-width     : 2px !important;
  }

  .xl\:focus\:border-r-2:focus{
    border-right-width     : 2px !important;
  }

  .xl\:focus\:border-b-2:focus{
    border-bottom-width     : 2px !important;
  }

  .xl\:focus\:border-l-2:focus{
    border-left-width     : 2px !important;
  }

  .xl\:focus\:border-t-4:focus{
    border-top-width     : 4px !important;
  }

  .xl\:focus\:border-r-4:focus{
    border-right-width     : 4px !important;
  }

  .xl\:focus\:border-b-4:focus{
    border-bottom-width     : 4px !important;
  }

  .xl\:focus\:border-l-4:focus{
    border-left-width     : 4px !important;
  }

  .xl\:focus\:border-t-8:focus{
    border-top-width     : 8px !important;
  }

  .xl\:focus\:border-r-8:focus{
    border-right-width     : 8px !important;
  }

  .xl\:focus\:border-b-8:focus{
    border-bottom-width     : 8px !important;
  }

  .xl\:focus\:border-l-8:focus{
    border-left-width     : 8px !important;
  }

  .xl\:focus\:border-t:focus{
    border-top-width     : 1px !important;
  }

  .xl\:focus\:border-r:focus{
    border-right-width     : 1px !important;
  }

  .xl\:focus\:border-b:focus{
    border-bottom-width     : 1px !important;
  }

  .xl\:focus\:border-l:focus{
    border-left-width     : 1px !important;
  }

  .xl\:box-border{
    box-sizing     : border-box !important;
  }

  .xl\:box-content{
    box-sizing     : content-box !important;
  }

  .group:hover .xl\:group-hover\:box-border{
    box-sizing     : border-box !important;
  }

  .group:hover .xl\:group-hover\:box-content{
    box-sizing     : content-box !important;
  }

  .xl\:hover\:box-border:hover{
    box-sizing     : border-box !important;
  }

  .xl\:hover\:box-content:hover{
    box-sizing     : content-box !important;
  }

  .xl\:focus\:box-border:focus{
    box-sizing     : border-box !important;
  }

  .xl\:focus\:box-content:focus{
    box-sizing     : content-box !important;
  }

  .xl\:cursor-auto{
    cursor     : auto !important;
  }

  .xl\:cursor-default{
    cursor     : default !important;
  }

  .xl\:cursor-pointer{
    cursor     : pointer !important;
  }

  .xl\:cursor-wait{
    cursor     : wait !important;
  }

  .xl\:cursor-text{
    cursor     : text !important;
  }

  .xl\:cursor-move{
    cursor     : move !important;
  }

  .xl\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .group:hover .xl\:group-hover\:cursor-auto{
    cursor     : auto !important;
  }

  .group:hover .xl\:group-hover\:cursor-default{
    cursor     : default !important;
  }

  .group:hover .xl\:group-hover\:cursor-pointer{
    cursor     : pointer !important;
  }

  .group:hover .xl\:group-hover\:cursor-wait{
    cursor     : wait !important;
  }

  .group:hover .xl\:group-hover\:cursor-text{
    cursor     : text !important;
  }

  .group:hover .xl\:group-hover\:cursor-move{
    cursor     : move !important;
  }

  .group:hover .xl\:group-hover\:cursor-not-allowed{
    cursor     : not-allowed !important;
  }

  .xl\:hover\:cursor-auto:hover{
    cursor     : auto !important;
  }

  .xl\:hover\:cursor-default:hover{
    cursor     : default !important;
  }

  .xl\:hover\:cursor-pointer:hover{
    cursor     : pointer !important;
  }

  .xl\:hover\:cursor-wait:hover{
    cursor     : wait !important;
  }

  .xl\:hover\:cursor-text:hover{
    cursor     : text !important;
  }

  .xl\:hover\:cursor-move:hover{
    cursor     : move !important;
  }

  .xl\:hover\:cursor-not-allowed:hover{
    cursor     : not-allowed !important;
  }

  .xl\:focus\:cursor-auto:focus{
    cursor     : auto !important;
  }

  .xl\:focus\:cursor-default:focus{
    cursor     : default !important;
  }

  .xl\:focus\:cursor-pointer:focus{
    cursor     : pointer !important;
  }

  .xl\:focus\:cursor-wait:focus{
    cursor     : wait !important;
  }

  .xl\:focus\:cursor-text:focus{
    cursor     : text !important;
  }

  .xl\:focus\:cursor-move:focus{
    cursor     : move !important;
  }

  .xl\:focus\:cursor-not-allowed:focus{
    cursor     : not-allowed !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\:hidden{
    display     : none !important;
  }

  .group:hover .xl\:group-hover\:block{
    display     : block !important;
  }

  .group:hover .xl\:group-hover\:inline-block{
    display     : inline-block !important;
  }

  .group:hover .xl\:group-hover\:inline{
    display     : inline !important;
  }

  .group:hover .xl\:group-hover\:flex{
    display     : flex !important;
  }

  .group:hover .xl\:group-hover\:inline-flex{
    display     : inline-flex !important;
  }

  .group:hover .xl\:group-hover\:table{
    display     : table !important;
  }

  .group:hover .xl\:group-hover\:table-caption{
    display     : table-caption !important;
  }

  .group:hover .xl\:group-hover\:table-cell{
    display     : table-cell !important;
  }

  .group:hover .xl\:group-hover\:table-column{
    display     : table-column !important;
  }

  .group:hover .xl\:group-hover\:table-column-group{
    display     : table-column-group !important;
  }

  .group:hover .xl\:group-hover\:table-footer-group{
    display     : table-footer-group !important;
  }

  .group:hover .xl\:group-hover\:table-header-group{
    display     : table-header-group !important;
  }

  .group:hover .xl\:group-hover\:table-row-group{
    display     : table-row-group !important;
  }

  .group:hover .xl\:group-hover\:table-row{
    display     : table-row !important;
  }

  .group:hover .xl\:group-hover\:flow-root{
    display     : flow-root !important;
  }

  .group:hover .xl\:group-hover\:grid{
    display     : grid !important;
  }

  .group:hover .xl\:group-hover\:inline-grid{
    display     : inline-grid !important;
  }

  .group:hover .xl\:group-hover\:hidden{
    display     : none !important;
  }

  .xl\:hover\:block:hover{
    display     : block !important;
  }

  .xl\:hover\:inline-block:hover{
    display     : inline-block !important;
  }

  .xl\:hover\:inline:hover{
    display     : inline !important;
  }

  .xl\:hover\:flex:hover{
    display     : flex !important;
  }

  .xl\:hover\:inline-flex:hover{
    display     : inline-flex !important;
  }

  .xl\:hover\:table:hover{
    display     : table !important;
  }

  .xl\:hover\:table-caption:hover{
    display     : table-caption !important;
  }

  .xl\:hover\:table-cell:hover{
    display     : table-cell !important;
  }

  .xl\:hover\:table-column:hover{
    display     : table-column !important;
  }

  .xl\:hover\:table-column-group:hover{
    display     : table-column-group !important;
  }

  .xl\:hover\:table-footer-group:hover{
    display     : table-footer-group !important;
  }

  .xl\:hover\:table-header-group:hover{
    display     : table-header-group !important;
  }

  .xl\:hover\:table-row-group:hover{
    display     : table-row-group !important;
  }

  .xl\:hover\:table-row:hover{
    display     : table-row !important;
  }

  .xl\:hover\:flow-root:hover{
    display     : flow-root !important;
  }

  .xl\:hover\:grid:hover{
    display     : grid !important;
  }

  .xl\:hover\:inline-grid:hover{
    display     : inline-grid !important;
  }

  .xl\:hover\:hidden:hover{
    display     : none !important;
  }

  .xl\:focus\:block:focus{
    display     : block !important;
  }

  .xl\:focus\:inline-block:focus{
    display     : inline-block !important;
  }

  .xl\:focus\:inline:focus{
    display     : inline !important;
  }

  .xl\:focus\:flex:focus{
    display     : flex !important;
  }

  .xl\:focus\:inline-flex:focus{
    display     : inline-flex !important;
  }

  .xl\:focus\:table:focus{
    display     : table !important;
  }

  .xl\:focus\:table-caption:focus{
    display     : table-caption !important;
  }

  .xl\:focus\:table-cell:focus{
    display     : table-cell !important;
  }

  .xl\:focus\:table-column:focus{
    display     : table-column !important;
  }

  .xl\:focus\:table-column-group:focus{
    display     : table-column-group !important;
  }

  .xl\:focus\:table-footer-group:focus{
    display     : table-footer-group !important;
  }

  .xl\:focus\:table-header-group:focus{
    display     : table-header-group !important;
  }

  .xl\:focus\:table-row-group:focus{
    display     : table-row-group !important;
  }

  .xl\:focus\:table-row:focus{
    display     : table-row !important;
  }

  .xl\:focus\:flow-root:focus{
    display     : flow-root !important;
  }

  .xl\:focus\:grid:focus{
    display     : grid !important;
  }

  .xl\:focus\:inline-grid:focus{
    display     : inline-grid !important;
  }

  .xl\:focus\:hidden:focus{
    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;
  }

  .group:hover .xl\:group-hover\:flex-row{
    flex-direction     : row !important;
  }

  .group:hover .xl\:group-hover\:flex-row-reverse{
    flex-direction     : row-reverse !important;
  }

  .group:hover .xl\:group-hover\:flex-col{
    flex-direction     : column !important;
  }

  .group:hover .xl\:group-hover\:flex-col-reverse{
    flex-direction     : column-reverse !important;
  }

  .xl\:hover\:flex-row:hover{
    flex-direction     : row !important;
  }

  .xl\:hover\:flex-row-reverse:hover{
    flex-direction     : row-reverse !important;
  }

  .xl\:hover\:flex-col:hover{
    flex-direction     : column !important;
  }

  .xl\:hover\:flex-col-reverse:hover{
    flex-direction     : column-reverse !important;
  }

  .xl\:focus\:flex-row:focus{
    flex-direction     : row !important;
  }

  .xl\:focus\:flex-row-reverse:focus{
    flex-direction     : row-reverse !important;
  }

  .xl\:focus\:flex-col:focus{
    flex-direction     : column !important;
  }

  .xl\:focus\:flex-col-reverse:focus{
    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;
  }

  .group:hover .xl\:group-hover\:flex-wrap{
    flex-wrap     : wrap !important;
  }

  .group:hover .xl\:group-hover\:flex-wrap-reverse{
    flex-wrap     : wrap-reverse !important;
  }

  .group:hover .xl\:group-hover\:flex-no-wrap{
    flex-wrap     : nowrap !important;
  }

  .xl\:hover\:flex-wrap:hover{
    flex-wrap     : wrap !important;
  }

  .xl\:hover\:flex-wrap-reverse:hover{
    flex-wrap     : wrap-reverse !important;
  }

  .xl\:hover\:flex-no-wrap:hover{
    flex-wrap     : nowrap !important;
  }

  .xl\:focus\:flex-wrap:focus{
    flex-wrap     : wrap !important;
  }

  .xl\:focus\:flex-wrap-reverse:focus{
    flex-wrap     : wrap-reverse !important;
  }

  .xl\:focus\:flex-no-wrap:focus{
    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;
  }

  .group:hover .xl\:group-hover\:items-start{
    align-items     : flex-start !important;
  }

  .group:hover .xl\:group-hover\:items-end{
    align-items     : flex-end !important;
  }

  .group:hover .xl\:group-hover\:items-center{
    align-items     : center !important;
  }

  .group:hover .xl\:group-hover\:items-baseline{
    align-items     : baseline !important;
  }

  .group:hover .xl\:group-hover\:items-stretch{
    align-items     : stretch !important;
  }

  .xl\:hover\:items-start:hover{
    align-items     : flex-start !important;
  }

  .xl\:hover\:items-end:hover{
    align-items     : flex-end !important;
  }

  .xl\:hover\:items-center:hover{
    align-items     : center !important;
  }

  .xl\:hover\:items-baseline:hover{
    align-items     : baseline !important;
  }

  .xl\:hover\:items-stretch:hover{
    align-items     : stretch !important;
  }

  .xl\:focus\:items-start:focus{
    align-items     : flex-start !important;
  }

  .xl\:focus\:items-end:focus{
    align-items     : flex-end !important;
  }

  .xl\:focus\:items-center:focus{
    align-items     : center !important;
  }

  .xl\:focus\:items-baseline:focus{
    align-items     : baseline !important;
  }

  .xl\:focus\:items-stretch:focus{
    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;
  }

  .group:hover .xl\:group-hover\:self-auto{
    align-self     : auto !important;
  }

  .group:hover .xl\:group-hover\:self-start{
    align-self     : flex-start !important;
  }

  .group:hover .xl\:group-hover\:self-end{
    align-self     : flex-end !important;
  }

  .group:hover .xl\:group-hover\:self-center{
    align-self     : center !important;
  }

  .group:hover .xl\:group-hover\:self-stretch{
    align-self     : stretch !important;
  }

  .xl\:hover\:self-auto:hover{
    align-self     : auto !important;
  }

  .xl\:hover\:self-start:hover{
    align-self     : flex-start !important;
  }

  .xl\:hover\:self-end:hover{
    align-self     : flex-end !important;
  }

  .xl\:hover\:self-center:hover{
    align-self     : center !important;
  }

  .xl\:hover\:self-stretch:hover{
    align-self     : stretch !important;
  }

  .xl\:focus\:self-auto:focus{
    align-self     : auto !important;
  }

  .xl\:focus\:self-start:focus{
    align-self     : flex-start !important;
  }

  .xl\:focus\:self-end:focus{
    align-self     : flex-end !important;
  }

  .xl\:focus\:self-center:focus{
    align-self     : center !important;
  }

  .xl\:focus\:self-stretch:focus{
    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;
  }

  .group:hover .xl\:group-hover\:justify-start{
    justify-content     : flex-start !important;
  }

  .group:hover .xl\:group-hover\:justify-end{
    justify-content     : flex-end !important;
  }

  .group:hover .xl\:group-hover\:justify-center{
    justify-content     : center !important;
  }

  .group:hover .xl\:group-hover\:justify-between{
    justify-content     : space-between !important;
  }

  .group:hover .xl\:group-hover\:justify-around{
    justify-content     : space-around !important;
  }

  .group:hover .xl\:group-hover\:justify-evenly{
    justify-content     : space-evenly !important;
  }

  .xl\:hover\:justify-start:hover{
    justify-content     : flex-start !important;
  }

  .xl\:hover\:justify-end:hover{
    justify-content     : flex-end !important;
  }

  .xl\:hover\:justify-center:hover{
    justify-content     : center !important;
  }

  .xl\:hover\:justify-between:hover{
    justify-content     : space-between !important;
  }

  .xl\:hover\:justify-around:hover{
    justify-content     : space-around !important;
  }

  .xl\:hover\:justify-evenly:hover{
    justify-content     : space-evenly !important;
  }

  .xl\:focus\:justify-start:focus{
    justify-content     : flex-start !important;
  }

  .xl\:focus\:justify-end:focus{
    justify-content     : flex-end !important;
  }

  .xl\:focus\:justify-center:focus{
    justify-content     : center !important;
  }

  .xl\:focus\:justify-between:focus{
    justify-content     : space-between !important;
  }

  .xl\:focus\:justify-around:focus{
    justify-content     : space-around !important;
  }

  .xl\:focus\:justify-evenly:focus{
    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;
  }

  .group:hover .xl\:group-hover\:content-center{
    align-content     : center !important;
  }

  .group:hover .xl\:group-hover\:content-start{
    align-content     : flex-start !important;
  }

  .group:hover .xl\:group-hover\:content-end{
    align-content     : flex-end !important;
  }

  .group:hover .xl\:group-hover\:content-between{
    align-content     : space-between !important;
  }

  .group:hover .xl\:group-hover\:content-around{
    align-content     : space-around !important;
  }

  .xl\:hover\:content-center:hover{
    align-content     : center !important;
  }

  .xl\:hover\:content-start:hover{
    align-content     : flex-start !important;
  }

  .xl\:hover\:content-end:hover{
    align-content     : flex-end !important;
  }

  .xl\:hover\:content-between:hover{
    align-content     : space-between !important;
  }

  .xl\:hover\:content-around:hover{
    align-content     : space-around !important;
  }

  .xl\:focus\:content-center:focus{
    align-content     : center !important;
  }

  .xl\:focus\:content-start:focus{
    align-content     : flex-start !important;
  }

  .xl\:focus\:content-end:focus{
    align-content     : flex-end !important;
  }

  .xl\:focus\:content-between:focus{
    align-content     : space-between !important;
  }

  .xl\:focus\:content-around:focus{
    align-content     : space-around !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;
  }

  .group:hover .xl\:group-hover\:flex-1{
    flex     : 1 1 0% !important;
  }

  .group:hover .xl\:group-hover\:flex-auto{
    flex     : 1 1 auto !important;
  }

  .group:hover .xl\:group-hover\:flex-initial{
    flex     : 0 1 auto !important;
  }

  .group:hover .xl\:group-hover\:flex-none{
    flex     : none !important;
  }

  .xl\:hover\:flex-1:hover{
    flex     : 1 1 0% !important;
  }

  .xl\:hover\:flex-auto:hover{
    flex     : 1 1 auto !important;
  }

  .xl\:hover\:flex-initial:hover{
    flex     : 0 1 auto !important;
  }

  .xl\:hover\:flex-none:hover{
    flex     : none !important;
  }

  .xl\:focus\:flex-1:focus{
    flex     : 1 1 0% !important;
  }

  .xl\:focus\:flex-auto:focus{
    flex     : 1 1 auto !important;
  }

  .xl\:focus\:flex-initial:focus{
    flex     : 0 1 auto !important;
  }

  .xl\:focus\:flex-none:focus{
    flex     : none !important;
  }

  .xl\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .xl\:flex-grow{
    flex-grow     : 1 !important;
  }

  .group:hover .xl\:group-hover\:flex-grow-0{
    flex-grow     : 0 !important;
  }

  .group:hover .xl\:group-hover\:flex-grow{
    flex-grow     : 1 !important;
  }

  .xl\:hover\:flex-grow-0:hover{
    flex-grow     : 0 !important;
  }

  .xl\:hover\:flex-grow:hover{
    flex-grow     : 1 !important;
  }

  .xl\:focus\:flex-grow-0:focus{
    flex-grow     : 0 !important;
  }

  .xl\:focus\:flex-grow:focus{
    flex-grow     : 1 !important;
  }

  .xl\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .xl\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .group:hover .xl\:group-hover\:flex-shrink-0{
    flex-shrink     : 0 !important;
  }

  .group:hover .xl\:group-hover\:flex-shrink{
    flex-shrink     : 1 !important;
  }

  .xl\:hover\:flex-shrink-0:hover{
    flex-shrink     : 0 !important;
  }

  .xl\:hover\:flex-shrink:hover{
    flex-shrink     : 1 !important;
  }

  .xl\:focus\:flex-shrink-0:focus{
    flex-shrink     : 0 !important;
  }

  .xl\:focus\:flex-shrink:focus{
    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;
  }

  .group:hover .xl\:group-hover\:order-1{
    order     : 1 !important;
  }

  .group:hover .xl\:group-hover\:order-2{
    order     : 2 !important;
  }

  .group:hover .xl\:group-hover\:order-3{
    order     : 3 !important;
  }

  .group:hover .xl\:group-hover\:order-4{
    order     : 4 !important;
  }

  .group:hover .xl\:group-hover\:order-5{
    order     : 5 !important;
  }

  .group:hover .xl\:group-hover\:order-6{
    order     : 6 !important;
  }

  .group:hover .xl\:group-hover\:order-7{
    order     : 7 !important;
  }

  .group:hover .xl\:group-hover\:order-8{
    order     : 8 !important;
  }

  .group:hover .xl\:group-hover\:order-9{
    order     : 9 !important;
  }

  .group:hover .xl\:group-hover\:order-10{
    order     : 10 !important;
  }

  .group:hover .xl\:group-hover\:order-11{
    order     : 11 !important;
  }

  .group:hover .xl\:group-hover\:order-12{
    order     : 12 !important;
  }

  .group:hover .xl\:group-hover\:order-first{
    order     : -9999 !important;
  }

  .group:hover .xl\:group-hover\:order-last{
    order     : 9999 !important;
  }

  .group:hover .xl\:group-hover\:order-none{
    order     : 0 !important;
  }

  .xl\:hover\:order-1:hover{
    order     : 1 !important;
  }

  .xl\:hover\:order-2:hover{
    order     : 2 !important;
  }

  .xl\:hover\:order-3:hover{
    order     : 3 !important;
  }

  .xl\:hover\:order-4:hover{
    order     : 4 !important;
  }

  .xl\:hover\:order-5:hover{
    order     : 5 !important;
  }

  .xl\:hover\:order-6:hover{
    order     : 6 !important;
  }

  .xl\:hover\:order-7:hover{
    order     : 7 !important;
  }

  .xl\:hover\:order-8:hover{
    order     : 8 !important;
  }

  .xl\:hover\:order-9:hover{
    order     : 9 !important;
  }

  .xl\:hover\:order-10:hover{
    order     : 10 !important;
  }

  .xl\:hover\:order-11:hover{
    order     : 11 !important;
  }

  .xl\:hover\:order-12:hover{
    order     : 12 !important;
  }

  .xl\:hover\:order-first:hover{
    order     : -9999 !important;
  }

  .xl\:hover\:order-last:hover{
    order     : 9999 !important;
  }

  .xl\:hover\:order-none:hover{
    order     : 0 !important;
  }

  .xl\:focus\:order-1:focus{
    order     : 1 !important;
  }

  .xl\:focus\:order-2:focus{
    order     : 2 !important;
  }

  .xl\:focus\:order-3:focus{
    order     : 3 !important;
  }

  .xl\:focus\:order-4:focus{
    order     : 4 !important;
  }

  .xl\:focus\:order-5:focus{
    order     : 5 !important;
  }

  .xl\:focus\:order-6:focus{
    order     : 6 !important;
  }

  .xl\:focus\:order-7:focus{
    order     : 7 !important;
  }

  .xl\:focus\:order-8:focus{
    order     : 8 !important;
  }

  .xl\:focus\:order-9:focus{
    order     : 9 !important;
  }

  .xl\:focus\:order-10:focus{
    order     : 10 !important;
  }

  .xl\:focus\:order-11:focus{
    order     : 11 !important;
  }

  .xl\:focus\:order-12:focus{
    order     : 12 !important;
  }

  .xl\:focus\:order-first:focus{
    order     : -9999 !important;
  }

  .xl\:focus\:order-last:focus{
    order     : 9999 !important;
  }

  .xl\:focus\:order-none:focus{
    order     : 0 !important;
  }

  .xl\:float-right{
    float     : right !important;
  }

  .xl\:float-left{
    float     : left !important;
  }

  .xl\:float-none{
    float     : none !important;
  }

  .xl\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .group:hover .xl\:group-hover\:float-right{
    float     : right !important;
  }

  .group:hover .xl\:group-hover\:float-left{
    float     : left !important;
  }

  .group:hover .xl\:group-hover\:float-none{
    float     : none !important;
  }

  .group:hover .xl\:group-hover\:clearfix:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .xl\:hover\:float-right:hover{
    float     : right !important;
  }

  .xl\:hover\:float-left:hover{
    float     : left !important;
  }

  .xl\:hover\:float-none:hover{
    float     : none !important;
  }

  .xl\:hover\:clearfix:hover:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .xl\:focus\:float-right:focus{
    float     : right !important;
  }

  .xl\:focus\:float-left:focus{
    float     : left !important;
  }

  .xl\:focus\:float-none:focus{
    float     : none !important;
  }

  .xl\:focus\:clearfix:focus:after{
    content     : "" !important;
    display     : table !important;
    clear     : both !important;
  }

  .xl\:clear-left{
    clear     : left !important;
  }

  .xl\:clear-right{
    clear     : right !important;
  }

  .xl\:clear-both{
    clear     : both !important;
  }

  .xl\:clear-none{
    clear     : none !important;
  }

  .group:hover .xl\:group-hover\:clear-left{
    clear     : left !important;
  }

  .group:hover .xl\:group-hover\:clear-right{
    clear     : right !important;
  }

  .group:hover .xl\:group-hover\:clear-both{
    clear     : both !important;
  }

  .group:hover .xl\:group-hover\:clear-none{
    clear     : none !important;
  }

  .xl\:hover\:clear-left:hover{
    clear     : left !important;
  }

  .xl\:hover\:clear-right:hover{
    clear     : right !important;
  }

  .xl\:hover\:clear-both:hover{
    clear     : both !important;
  }

  .xl\:hover\:clear-none:hover{
    clear     : none !important;
  }

  .xl\:focus\:clear-left:focus{
    clear     : left !important;
  }

  .xl\:focus\:clear-right:focus{
    clear     : right !important;
  }

  .xl\:focus\:clear-both:focus{
    clear     : both !important;
  }

  .xl\:focus\:clear-none:focus{
    clear     : none !important;
  }

  .xl\:font-sans{
    font-family     : 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;
  }

  .xl\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .xl\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .group:hover .xl\:group-hover\:font-sans{
    font-family     : 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;
  }

  .group:hover .xl\:group-hover\:font-serif{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .group:hover .xl\:group-hover\:font-mono{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .xl\:hover\:font-sans:hover{
    font-family     : 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;
  }

  .xl\:hover\:font-serif:hover{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .xl\:hover\:font-mono:hover{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .xl\:focus\:font-sans:focus{
    font-family     : 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;
  }

  .xl\:focus\:font-serif:focus{
    font-family     : Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .xl\:focus\:font-mono:focus{
    font-family     : Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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;
  }

  .group:hover .xl\:group-hover\:font-hairline{
    font-weight     : 100 !important;
  }

  .group:hover .xl\:group-hover\:font-thin{
    font-weight     : 200 !important;
  }

  .group:hover .xl\:group-hover\:font-light{
    font-weight     : 300 !important;
  }

  .group:hover .xl\:group-hover\:font-normal{
    font-weight     : 400 !important;
  }

  .group:hover .xl\:group-hover\:font-medium{
    font-weight     : 500 !important;
  }

  .group:hover .xl\:group-hover\:font-semibold{
    font-weight     : 600 !important;
  }

  .group:hover .xl\:group-hover\:font-bold{
    font-weight     : 700 !important;
  }

  .group:hover .xl\:group-hover\:font-extrabold{
    font-weight     : 800 !important;
  }

  .group:hover .xl\:group-hover\:font-black{
    font-weight     : 900 !important;
  }

  .xl\:hover\:font-hairline:hover{
    font-weight     : 100 !important;
  }

  .xl\:hover\:font-thin:hover{
    font-weight     : 200 !important;
  }

  .xl\:hover\:font-light:hover{
    font-weight     : 300 !important;
  }

  .xl\:hover\:font-normal:hover{
    font-weight     : 400 !important;
  }

  .xl\:hover\:font-medium:hover{
    font-weight     : 500 !important;
  }

  .xl\:hover\:font-semibold:hover{
    font-weight     : 600 !important;
  }

  .xl\:hover\:font-bold:hover{
    font-weight     : 700 !important;
  }

  .xl\:hover\:font-extrabold:hover{
    font-weight     : 800 !important;
  }

  .xl\:hover\:font-black:hover{
    font-weight     : 900 !important;
  }

  .xl\:focus\:font-hairline:focus{
    font-weight     : 100 !important;
  }

  .xl\:focus\:font-thin:focus{
    font-weight     : 200 !important;
  }

  .xl\:focus\:font-light:focus{
    font-weight     : 300 !important;
  }

  .xl\:focus\:font-normal:focus{
    font-weight     : 400 !important;
  }

  .xl\:focus\:font-medium:focus{
    font-weight     : 500 !important;
  }

  .xl\:focus\:font-semibold:focus{
    font-weight     : 600 !important;
  }

  .xl\:focus\:font-bold:focus{
    font-weight     : 700 !important;
  }

  .xl\:focus\:font-extrabold:focus{
    font-weight     : 800 !important;
  }

  .xl\:focus\:font-black:focus{
    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-20{
    height     : 5rem !important;
  }

  .xl\:h-24{
    height     : 6rem !important;
  }

  .xl\:h-28{
    height     : 7rem !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-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-96{
    height     : 24rem !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-screen{
    height     : 100vh !important;
  }

  .group:hover .xl\:group-hover\:h-0{
    height     : 0 !important;
  }

  .group:hover .xl\:group-hover\:h-1{
    height     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:h-2{
    height     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:h-3{
    height     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:h-4{
    height     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:h-5{
    height     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:h-6{
    height     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:h-7{
    height     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:h-8{
    height     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:h-9{
    height     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:h-10{
    height     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:h-11{
    height     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:h-12{
    height     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:h-13{
    height     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:h-14{
    height     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:h-15{
    height     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:h-16{
    height     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:h-20{
    height     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:h-24{
    height     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:h-28{
    height     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:h-32{
    height     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:h-36{
    height     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:h-40{
    height     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:h-44{
    height     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:h-48{
    height     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:h-52{
    height     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:h-56{
    height     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:h-60{
    height     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:h-64{
    height     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:h-72{
    height     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:h-80{
    height     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:h-96{
    height     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:h-auto{
    height     : auto !important;
  }

  .group:hover .xl\:group-hover\:h-px{
    height     : 1px !important;
  }

  .group:hover .xl\:group-hover\:h-0\.5{
    height     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:h-1\.5{
    height     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:h-2\.5{
    height     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:h-3\.5{
    height     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:h-1\/2{
    height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:h-1\/3{
    height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-2\/3{
    height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-1\/4{
    height     : 25% !important;
  }

  .group:hover .xl\:group-hover\:h-2\/4{
    height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:h-3\/4{
    height     : 75% !important;
  }

  .group:hover .xl\:group-hover\:h-1\/5{
    height     : 20% !important;
  }

  .group:hover .xl\:group-hover\:h-2\/5{
    height     : 40% !important;
  }

  .group:hover .xl\:group-hover\:h-3\/5{
    height     : 60% !important;
  }

  .group:hover .xl\:group-hover\:h-4\/5{
    height     : 80% !important;
  }

  .group:hover .xl\:group-hover\:h-1\/6{
    height     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-2\/6{
    height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-3\/6{
    height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:h-4\/6{
    height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-5\/6{
    height     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-1\/12{
    height     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-2\/12{
    height     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-3\/12{
    height     : 25% !important;
  }

  .group:hover .xl\:group-hover\:h-4\/12{
    height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-5\/12{
    height     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-6\/12{
    height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:h-7\/12{
    height     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-8\/12{
    height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-9\/12{
    height     : 75% !important;
  }

  .group:hover .xl\:group-hover\:h-10\/12{
    height     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:h-11\/12{
    height     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:h-full{
    height     : 100% !important;
  }

  .group:hover .xl\:group-hover\:h-screen{
    height     : 100vh !important;
  }

  .xl\:hover\:h-0:hover{
    height     : 0 !important;
  }

  .xl\:hover\:h-1:hover{
    height     : 0.25rem !important;
  }

  .xl\:hover\:h-2:hover{
    height     : 0.5rem !important;
  }

  .xl\:hover\:h-3:hover{
    height     : 0.75rem !important;
  }

  .xl\:hover\:h-4:hover{
    height     : 1rem !important;
  }

  .xl\:hover\:h-5:hover{
    height     : 1.25rem !important;
  }

  .xl\:hover\:h-6:hover{
    height     : 1.5rem !important;
  }

  .xl\:hover\:h-7:hover{
    height     : 1.75rem !important;
  }

  .xl\:hover\:h-8:hover{
    height     : 2rem !important;
  }

  .xl\:hover\:h-9:hover{
    height     : 2.25rem !important;
  }

  .xl\:hover\:h-10:hover{
    height     : 2.5rem !important;
  }

  .xl\:hover\:h-11:hover{
    height     : 2.75rem !important;
  }

  .xl\:hover\:h-12:hover{
    height     : 3rem !important;
  }

  .xl\:hover\:h-13:hover{
    height     : 3.25rem !important;
  }

  .xl\:hover\:h-14:hover{
    height     : 3.5rem !important;
  }

  .xl\:hover\:h-15:hover{
    height     : 3.75rem !important;
  }

  .xl\:hover\:h-16:hover{
    height     : 4rem !important;
  }

  .xl\:hover\:h-20:hover{
    height     : 5rem !important;
  }

  .xl\:hover\:h-24:hover{
    height     : 6rem !important;
  }

  .xl\:hover\:h-28:hover{
    height     : 7rem !important;
  }

  .xl\:hover\:h-32:hover{
    height     : 8rem !important;
  }

  .xl\:hover\:h-36:hover{
    height     : 9rem !important;
  }

  .xl\:hover\:h-40:hover{
    height     : 10rem !important;
  }

  .xl\:hover\:h-44:hover{
    height     : 11rem !important;
  }

  .xl\:hover\:h-48:hover{
    height     : 12rem !important;
  }

  .xl\:hover\:h-52:hover{
    height     : 13rem !important;
  }

  .xl\:hover\:h-56:hover{
    height     : 14rem !important;
  }

  .xl\:hover\:h-60:hover{
    height     : 15rem !important;
  }

  .xl\:hover\:h-64:hover{
    height     : 16rem !important;
  }

  .xl\:hover\:h-72:hover{
    height     : 18rem !important;
  }

  .xl\:hover\:h-80:hover{
    height     : 20rem !important;
  }

  .xl\:hover\:h-96:hover{
    height     : 24rem !important;
  }

  .xl\:hover\:h-auto:hover{
    height     : auto !important;
  }

  .xl\:hover\:h-px:hover{
    height     : 1px !important;
  }

  .xl\:hover\:h-0\.5:hover{
    height     : 0.125rem !important;
  }

  .xl\:hover\:h-1\.5:hover{
    height     : 0.375rem !important;
  }

  .xl\:hover\:h-2\.5:hover{
    height     : 0.625rem !important;
  }

  .xl\:hover\:h-3\.5:hover{
    height     : 0.875rem !important;
  }

  .xl\:hover\:h-1\/2:hover{
    height     : 50% !important;
  }

  .xl\:hover\:h-1\/3:hover{
    height     : 33.333333% !important;
  }

  .xl\:hover\:h-2\/3:hover{
    height     : 66.666667% !important;
  }

  .xl\:hover\:h-1\/4:hover{
    height     : 25% !important;
  }

  .xl\:hover\:h-2\/4:hover{
    height     : 50% !important;
  }

  .xl\:hover\:h-3\/4:hover{
    height     : 75% !important;
  }

  .xl\:hover\:h-1\/5:hover{
    height     : 20% !important;
  }

  .xl\:hover\:h-2\/5:hover{
    height     : 40% !important;
  }

  .xl\:hover\:h-3\/5:hover{
    height     : 60% !important;
  }

  .xl\:hover\:h-4\/5:hover{
    height     : 80% !important;
  }

  .xl\:hover\:h-1\/6:hover{
    height     : 16.666667% !important;
  }

  .xl\:hover\:h-2\/6:hover{
    height     : 33.333333% !important;
  }

  .xl\:hover\:h-3\/6:hover{
    height     : 50% !important;
  }

  .xl\:hover\:h-4\/6:hover{
    height     : 66.666667% !important;
  }

  .xl\:hover\:h-5\/6:hover{
    height     : 83.333333% !important;
  }

  .xl\:hover\:h-1\/12:hover{
    height     : 8.333333% !important;
  }

  .xl\:hover\:h-2\/12:hover{
    height     : 16.666667% !important;
  }

  .xl\:hover\:h-3\/12:hover{
    height     : 25% !important;
  }

  .xl\:hover\:h-4\/12:hover{
    height     : 33.333333% !important;
  }

  .xl\:hover\:h-5\/12:hover{
    height     : 41.666667% !important;
  }

  .xl\:hover\:h-6\/12:hover{
    height     : 50% !important;
  }

  .xl\:hover\:h-7\/12:hover{
    height     : 58.333333% !important;
  }

  .xl\:hover\:h-8\/12:hover{
    height     : 66.666667% !important;
  }

  .xl\:hover\:h-9\/12:hover{
    height     : 75% !important;
  }

  .xl\:hover\:h-10\/12:hover{
    height     : 83.333333% !important;
  }

  .xl\:hover\:h-11\/12:hover{
    height     : 91.666667% !important;
  }

  .xl\:hover\:h-full:hover{
    height     : 100% !important;
  }

  .xl\:hover\:h-screen:hover{
    height     : 100vh !important;
  }

  .xl\:focus\:h-0:focus{
    height     : 0 !important;
  }

  .xl\:focus\:h-1:focus{
    height     : 0.25rem !important;
  }

  .xl\:focus\:h-2:focus{
    height     : 0.5rem !important;
  }

  .xl\:focus\:h-3:focus{
    height     : 0.75rem !important;
  }

  .xl\:focus\:h-4:focus{
    height     : 1rem !important;
  }

  .xl\:focus\:h-5:focus{
    height     : 1.25rem !important;
  }

  .xl\:focus\:h-6:focus{
    height     : 1.5rem !important;
  }

  .xl\:focus\:h-7:focus{
    height     : 1.75rem !important;
  }

  .xl\:focus\:h-8:focus{
    height     : 2rem !important;
  }

  .xl\:focus\:h-9:focus{
    height     : 2.25rem !important;
  }

  .xl\:focus\:h-10:focus{
    height     : 2.5rem !important;
  }

  .xl\:focus\:h-11:focus{
    height     : 2.75rem !important;
  }

  .xl\:focus\:h-12:focus{
    height     : 3rem !important;
  }

  .xl\:focus\:h-13:focus{
    height     : 3.25rem !important;
  }

  .xl\:focus\:h-14:focus{
    height     : 3.5rem !important;
  }

  .xl\:focus\:h-15:focus{
    height     : 3.75rem !important;
  }

  .xl\:focus\:h-16:focus{
    height     : 4rem !important;
  }

  .xl\:focus\:h-20:focus{
    height     : 5rem !important;
  }

  .xl\:focus\:h-24:focus{
    height     : 6rem !important;
  }

  .xl\:focus\:h-28:focus{
    height     : 7rem !important;
  }

  .xl\:focus\:h-32:focus{
    height     : 8rem !important;
  }

  .xl\:focus\:h-36:focus{
    height     : 9rem !important;
  }

  .xl\:focus\:h-40:focus{
    height     : 10rem !important;
  }

  .xl\:focus\:h-44:focus{
    height     : 11rem !important;
  }

  .xl\:focus\:h-48:focus{
    height     : 12rem !important;
  }

  .xl\:focus\:h-52:focus{
    height     : 13rem !important;
  }

  .xl\:focus\:h-56:focus{
    height     : 14rem !important;
  }

  .xl\:focus\:h-60:focus{
    height     : 15rem !important;
  }

  .xl\:focus\:h-64:focus{
    height     : 16rem !important;
  }

  .xl\:focus\:h-72:focus{
    height     : 18rem !important;
  }

  .xl\:focus\:h-80:focus{
    height     : 20rem !important;
  }

  .xl\:focus\:h-96:focus{
    height     : 24rem !important;
  }

  .xl\:focus\:h-auto:focus{
    height     : auto !important;
  }

  .xl\:focus\:h-px:focus{
    height     : 1px !important;
  }

  .xl\:focus\:h-0\.5:focus{
    height     : 0.125rem !important;
  }

  .xl\:focus\:h-1\.5:focus{
    height     : 0.375rem !important;
  }

  .xl\:focus\:h-2\.5:focus{
    height     : 0.625rem !important;
  }

  .xl\:focus\:h-3\.5:focus{
    height     : 0.875rem !important;
  }

  .xl\:focus\:h-1\/2:focus{
    height     : 50% !important;
  }

  .xl\:focus\:h-1\/3:focus{
    height     : 33.333333% !important;
  }

  .xl\:focus\:h-2\/3:focus{
    height     : 66.666667% !important;
  }

  .xl\:focus\:h-1\/4:focus{
    height     : 25% !important;
  }

  .xl\:focus\:h-2\/4:focus{
    height     : 50% !important;
  }

  .xl\:focus\:h-3\/4:focus{
    height     : 75% !important;
  }

  .xl\:focus\:h-1\/5:focus{
    height     : 20% !important;
  }

  .xl\:focus\:h-2\/5:focus{
    height     : 40% !important;
  }

  .xl\:focus\:h-3\/5:focus{
    height     : 60% !important;
  }

  .xl\:focus\:h-4\/5:focus{
    height     : 80% !important;
  }

  .xl\:focus\:h-1\/6:focus{
    height     : 16.666667% !important;
  }

  .xl\:focus\:h-2\/6:focus{
    height     : 33.333333% !important;
  }

  .xl\:focus\:h-3\/6:focus{
    height     : 50% !important;
  }

  .xl\:focus\:h-4\/6:focus{
    height     : 66.666667% !important;
  }

  .xl\:focus\:h-5\/6:focus{
    height     : 83.333333% !important;
  }

  .xl\:focus\:h-1\/12:focus{
    height     : 8.333333% !important;
  }

  .xl\:focus\:h-2\/12:focus{
    height     : 16.666667% !important;
  }

  .xl\:focus\:h-3\/12:focus{
    height     : 25% !important;
  }

  .xl\:focus\:h-4\/12:focus{
    height     : 33.333333% !important;
  }

  .xl\:focus\:h-5\/12:focus{
    height     : 41.666667% !important;
  }

  .xl\:focus\:h-6\/12:focus{
    height     : 50% !important;
  }

  .xl\:focus\:h-7\/12:focus{
    height     : 58.333333% !important;
  }

  .xl\:focus\:h-8\/12:focus{
    height     : 66.666667% !important;
  }

  .xl\:focus\:h-9\/12:focus{
    height     : 75% !important;
  }

  .xl\:focus\:h-10\/12:focus{
    height     : 83.333333% !important;
  }

  .xl\:focus\:h-11\/12:focus{
    height     : 91.666667% !important;
  }

  .xl\:focus\:h-full:focus{
    height     : 100% !important;
  }

  .xl\:focus\:h-screen:focus{
    height     : 100vh !important;
  }

  .xl\:text-xs{
    font-size     : 0.75rem !important;
  }

  .xl\:text-sm{
    font-size     : 0.875rem !important;
  }

  .xl\:text-base{
    font-size     : 1rem !important;
  }

  .xl\:text-lg{
    font-size     : 1.125rem !important;
  }

  .xl\:text-xl{
    font-size     : 1.25rem !important;
  }

  .xl\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .xl\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .xl\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .xl\:text-5xl{
    font-size     : 3rem !important;
  }

  .xl\:text-6xl{
    font-size     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:text-xs{
    font-size     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:text-sm{
    font-size     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:text-base{
    font-size     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:text-lg{
    font-size     : 1.125rem !important;
  }

  .group:hover .xl\:group-hover\:text-xl{
    font-size     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:text-2xl{
    font-size     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:text-3xl{
    font-size     : 1.875rem !important;
  }

  .group:hover .xl\:group-hover\:text-4xl{
    font-size     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:text-5xl{
    font-size     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:text-6xl{
    font-size     : 4rem !important;
  }

  .xl\:hover\:text-xs:hover{
    font-size     : 0.75rem !important;
  }

  .xl\:hover\:text-sm:hover{
    font-size     : 0.875rem !important;
  }

  .xl\:hover\:text-base:hover{
    font-size     : 1rem !important;
  }

  .xl\:hover\:text-lg:hover{
    font-size     : 1.125rem !important;
  }

  .xl\:hover\:text-xl:hover{
    font-size     : 1.25rem !important;
  }

  .xl\:hover\:text-2xl:hover{
    font-size     : 1.5rem !important;
  }

  .xl\:hover\:text-3xl:hover{
    font-size     : 1.875rem !important;
  }

  .xl\:hover\:text-4xl:hover{
    font-size     : 2.25rem !important;
  }

  .xl\:hover\:text-5xl:hover{
    font-size     : 3rem !important;
  }

  .xl\:hover\:text-6xl:hover{
    font-size     : 4rem !important;
  }

  .xl\:focus\:text-xs:focus{
    font-size     : 0.75rem !important;
  }

  .xl\:focus\:text-sm:focus{
    font-size     : 0.875rem !important;
  }

  .xl\:focus\:text-base:focus{
    font-size     : 1rem !important;
  }

  .xl\:focus\:text-lg:focus{
    font-size     : 1.125rem !important;
  }

  .xl\:focus\:text-xl:focus{
    font-size     : 1.25rem !important;
  }

  .xl\:focus\:text-2xl:focus{
    font-size     : 1.5rem !important;
  }

  .xl\:focus\:text-3xl:focus{
    font-size     : 1.875rem !important;
  }

  .xl\:focus\:text-4xl:focus{
    font-size     : 2.25rem !important;
  }

  .xl\:focus\:text-5xl:focus{
    font-size     : 3rem !important;
  }

  .xl\:focus\:text-6xl:focus{
    font-size     : 4rem !important;
  }

  .xl\:leading-3{
    line-height     : .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;
  }

  .group:hover .xl\:group-hover\:leading-3{
    line-height     : .75rem !important;
  }

  .group:hover .xl\:group-hover\:leading-4{
    line-height     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:leading-5{
    line-height     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:leading-6{
    line-height     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:leading-7{
    line-height     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:leading-8{
    line-height     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:leading-9{
    line-height     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:leading-10{
    line-height     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:leading-none{
    line-height     : 1 !important;
  }

  .group:hover .xl\:group-hover\:leading-tight{
    line-height     : 1.25 !important;
  }

  .group:hover .xl\:group-hover\:leading-snug{
    line-height     : 1.375 !important;
  }

  .group:hover .xl\:group-hover\:leading-normal{
    line-height     : 1.5 !important;
  }

  .group:hover .xl\:group-hover\:leading-relaxed{
    line-height     : 1.625 !important;
  }

  .group:hover .xl\:group-hover\:leading-loose{
    line-height     : 2 !important;
  }

  .xl\:hover\:leading-3:hover{
    line-height     : .75rem !important;
  }

  .xl\:hover\:leading-4:hover{
    line-height     : 1rem !important;
  }

  .xl\:hover\:leading-5:hover{
    line-height     : 1.25rem !important;
  }

  .xl\:hover\:leading-6:hover{
    line-height     : 1.5rem !important;
  }

  .xl\:hover\:leading-7:hover{
    line-height     : 1.75rem !important;
  }

  .xl\:hover\:leading-8:hover{
    line-height     : 2rem !important;
  }

  .xl\:hover\:leading-9:hover{
    line-height     : 2.25rem !important;
  }

  .xl\:hover\:leading-10:hover{
    line-height     : 2.5rem !important;
  }

  .xl\:hover\:leading-none:hover{
    line-height     : 1 !important;
  }

  .xl\:hover\:leading-tight:hover{
    line-height     : 1.25 !important;
  }

  .xl\:hover\:leading-snug:hover{
    line-height     : 1.375 !important;
  }

  .xl\:hover\:leading-normal:hover{
    line-height     : 1.5 !important;
  }

  .xl\:hover\:leading-relaxed:hover{
    line-height     : 1.625 !important;
  }

  .xl\:hover\:leading-loose:hover{
    line-height     : 2 !important;
  }

  .xl\:focus\:leading-3:focus{
    line-height     : .75rem !important;
  }

  .xl\:focus\:leading-4:focus{
    line-height     : 1rem !important;
  }

  .xl\:focus\:leading-5:focus{
    line-height     : 1.25rem !important;
  }

  .xl\:focus\:leading-6:focus{
    line-height     : 1.5rem !important;
  }

  .xl\:focus\:leading-7:focus{
    line-height     : 1.75rem !important;
  }

  .xl\:focus\:leading-8:focus{
    line-height     : 2rem !important;
  }

  .xl\:focus\:leading-9:focus{
    line-height     : 2.25rem !important;
  }

  .xl\:focus\:leading-10:focus{
    line-height     : 2.5rem !important;
  }

  .xl\:focus\:leading-none:focus{
    line-height     : 1 !important;
  }

  .xl\:focus\:leading-tight:focus{
    line-height     : 1.25 !important;
  }

  .xl\:focus\:leading-snug:focus{
    line-height     : 1.375 !important;
  }

  .xl\:focus\:leading-normal:focus{
    line-height     : 1.5 !important;
  }

  .xl\:focus\:leading-relaxed:focus{
    line-height     : 1.625 !important;
  }

  .xl\:focus\:leading-loose:focus{
    line-height     : 2 !important;
  }

  .xl\:list-inside{
    list-style-position     : inside !important;
  }

  .xl\:list-outside{
    list-style-position     : outside !important;
  }

  .group:hover .xl\:group-hover\:list-inside{
    list-style-position     : inside !important;
  }

  .group:hover .xl\:group-hover\:list-outside{
    list-style-position     : outside !important;
  }

  .xl\:hover\:list-inside:hover{
    list-style-position     : inside !important;
  }

  .xl\:hover\:list-outside:hover{
    list-style-position     : outside !important;
  }

  .xl\:focus\:list-inside:focus{
    list-style-position     : inside !important;
  }

  .xl\:focus\:list-outside:focus{
    list-style-position     : outside !important;
  }

  .xl\:list-none{
    list-style-type     : none !important;
  }

  .xl\:list-disc{
    list-style-type     : disc !important;
  }

  .xl\:list-decimal{
    list-style-type     : decimal !important;
  }

  .group:hover .xl\:group-hover\:list-none{
    list-style-type     : none !important;
  }

  .group:hover .xl\:group-hover\:list-disc{
    list-style-type     : disc !important;
  }

  .group:hover .xl\:group-hover\:list-decimal{
    list-style-type     : decimal !important;
  }

  .xl\:hover\:list-none:hover{
    list-style-type     : none !important;
  }

  .xl\:hover\:list-disc:hover{
    list-style-type     : disc !important;
  }

  .xl\:hover\:list-decimal:hover{
    list-style-type     : decimal !important;
  }

  .xl\:focus\:list-none:focus{
    list-style-type     : none !important;
  }

  .xl\:focus\:list-disc:focus{
    list-style-type     : disc !important;
  }

  .xl\:focus\:list-decimal:focus{
    list-style-type     : decimal !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-20{
    margin     : 5rem !important;
  }

  .xl\:m-24{
    margin     : 6rem !important;
  }

  .xl\:m-28{
    margin     : 7rem !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-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-96{
    margin     : 24rem !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-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-20{
    margin     : -5rem !important;
  }

  .xl\:-m-24{
    margin     : -6rem !important;
  }

  .xl\:-m-28{
    margin     : -7rem !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-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-96{
    margin     : -24rem !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\: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-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .xl\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 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-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .xl\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !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-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-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .xl\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !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-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-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .xl\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -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-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .xl\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !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-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-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .xl\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !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\: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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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;
  }

  .group:hover .xl\:group-hover\:m-0{
    margin     : 0 !important;
  }

  .group:hover .xl\:group-hover\:m-1{
    margin     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:m-2{
    margin     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:m-3{
    margin     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:m-4{
    margin     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:m-5{
    margin     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:m-6{
    margin     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:m-7{
    margin     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:m-8{
    margin     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:m-9{
    margin     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:m-10{
    margin     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:m-11{
    margin     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:m-12{
    margin     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:m-13{
    margin     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:m-14{
    margin     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:m-15{
    margin     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:m-16{
    margin     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:m-20{
    margin     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:m-24{
    margin     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:m-28{
    margin     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:m-32{
    margin     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:m-36{
    margin     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:m-40{
    margin     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:m-44{
    margin     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:m-48{
    margin     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:m-52{
    margin     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:m-56{
    margin     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:m-60{
    margin     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:m-64{
    margin     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:m-72{
    margin     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:m-80{
    margin     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:m-96{
    margin     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:m-auto{
    margin     : auto !important;
  }

  .group:hover .xl\:group-hover\:m-px{
    margin     : 1px !important;
  }

  .group:hover .xl\:group-hover\:m-0\.5{
    margin     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:m-1\.5{
    margin     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:m-2\.5{
    margin     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:m-3\.5{
    margin     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:m-1\/2{
    margin     : 50% !important;
  }

  .group:hover .xl\:group-hover\:m-1\/3{
    margin     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-2\/3{
    margin     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-1\/4{
    margin     : 25% !important;
  }

  .group:hover .xl\:group-hover\:m-2\/4{
    margin     : 50% !important;
  }

  .group:hover .xl\:group-hover\:m-3\/4{
    margin     : 75% !important;
  }

  .group:hover .xl\:group-hover\:m-1\/5{
    margin     : 20% !important;
  }

  .group:hover .xl\:group-hover\:m-2\/5{
    margin     : 40% !important;
  }

  .group:hover .xl\:group-hover\:m-3\/5{
    margin     : 60% !important;
  }

  .group:hover .xl\:group-hover\:m-4\/5{
    margin     : 80% !important;
  }

  .group:hover .xl\:group-hover\:m-1\/6{
    margin     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-2\/6{
    margin     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-3\/6{
    margin     : 50% !important;
  }

  .group:hover .xl\:group-hover\:m-4\/6{
    margin     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-5\/6{
    margin     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-1\/12{
    margin     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-2\/12{
    margin     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-3\/12{
    margin     : 25% !important;
  }

  .group:hover .xl\:group-hover\:m-4\/12{
    margin     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-5\/12{
    margin     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-6\/12{
    margin     : 50% !important;
  }

  .group:hover .xl\:group-hover\:m-7\/12{
    margin     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-8\/12{
    margin     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-9\/12{
    margin     : 75% !important;
  }

  .group:hover .xl\:group-hover\:m-10\/12{
    margin     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:m-11\/12{
    margin     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:m-full{
    margin     : 100% !important;
  }

  .group:hover .xl\:group-hover\:-m-1{
    margin     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-m-2{
    margin     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-m-3{
    margin     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-m-4{
    margin     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-m-5{
    margin     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-m-6{
    margin     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-m-7{
    margin     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-m-8{
    margin     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-m-9{
    margin     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-m-10{
    margin     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-m-11{
    margin     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-m-12{
    margin     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-m-13{
    margin     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-m-14{
    margin     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-m-15{
    margin     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-m-16{
    margin     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-m-20{
    margin     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-m-24{
    margin     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-m-28{
    margin     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-m-32{
    margin     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-m-36{
    margin     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-m-40{
    margin     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-m-44{
    margin     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-m-48{
    margin     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-m-52{
    margin     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-m-56{
    margin     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-m-60{
    margin     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-m-64{
    margin     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-m-72{
    margin     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-m-80{
    margin     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-m-96{
    margin     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-m-px{
    margin     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-m-0\.5{
    margin     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-m-1\.5{
    margin     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-m-2\.5{
    margin     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-m-3\.5{
    margin     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/2{
    margin     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/3{
    margin     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-2\/3{
    margin     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/4{
    margin     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-m-2\/4{
    margin     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-m-3\/4{
    margin     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/5{
    margin     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-m-2\/5{
    margin     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-m-3\/5{
    margin     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-m-4\/5{
    margin     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/6{
    margin     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-2\/6{
    margin     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-3\/6{
    margin     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-m-4\/6{
    margin     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-5\/6{
    margin     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-1\/12{
    margin     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-2\/12{
    margin     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-3\/12{
    margin     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-m-4\/12{
    margin     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-5\/12{
    margin     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-6\/12{
    margin     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-m-7\/12{
    margin     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-8\/12{
    margin     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-9\/12{
    margin     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-m-10\/12{
    margin     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-m-11\/12{
    margin     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-m-full{
    margin     : -100% !important;
  }

  .group:hover .xl\:group-hover\:my-0{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:mx-0{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .group:hover .xl\:group-hover\:my-1{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:mx-1{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:my-2{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:mx-2{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:my-3{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:mx-3{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:my-4{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:mx-4{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:my-5{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:mx-5{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:my-6{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:mx-6{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:my-7{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:mx-7{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:my-8{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:mx-8{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:my-9{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:mx-9{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:my-10{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:mx-10{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:my-11{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:mx-11{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:my-12{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:mx-12{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:my-13{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:mx-13{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:my-14{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:mx-14{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:my-15{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:mx-15{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:my-16{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:mx-16{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:my-20{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:mx-20{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:my-24{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:mx-24{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:my-28{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:mx-28{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:my-32{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:mx-32{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:my-36{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:mx-36{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:my-40{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:mx-40{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:my-44{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:mx-44{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:my-48{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:mx-48{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:my-52{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:mx-52{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:my-56{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:mx-56{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:my-60{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:mx-60{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:my-64{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:mx-64{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:my-72{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:mx-72{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:my-80{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:mx-80{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:my-96{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:mx-96{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:my-auto{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .group:hover .xl\:group-hover\:mx-auto{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .group:hover .xl\:group-hover\:my-px{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:mx-px{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .group:hover .xl\:group-hover\:my-0\.5{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:mx-0\.5{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:my-1\.5{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:mx-1\.5{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:my-2\.5{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:mx-2\.5{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:my-3\.5{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:mx-3\.5{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:my-1\/2{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/2{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:my-1\/3{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/3{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-2\/3{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-2\/3{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-1\/4{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/4{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:my-2\/4{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mx-2\/4{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:my-3\/4{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mx-3\/4{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:my-1\/5{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/5{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .group:hover .xl\:group-hover\:my-2\/5{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:mx-2\/5{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .group:hover .xl\:group-hover\:my-3\/5{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:mx-3\/5{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .group:hover .xl\:group-hover\:my-4\/5{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:mx-4\/5{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .group:hover .xl\:group-hover\:my-1\/6{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/6{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-2\/6{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-2\/6{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-3\/6{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mx-3\/6{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:my-4\/6{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-4\/6{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-5\/6{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-5\/6{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-1\/12{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-1\/12{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-2\/12{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-2\/12{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-3\/12{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mx-3\/12{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:my-4\/12{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-4\/12{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-5\/12{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-5\/12{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-6\/12{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mx-6\/12{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:my-7\/12{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-7\/12{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-8\/12{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-8\/12{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-9\/12{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mx-9\/12{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:my-10\/12{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mx-10\/12{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:my-11\/12{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:mx-11\/12{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:my-full{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:mx-full{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .group:hover .xl\:group-hover\:-my-1{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-1{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-my-2{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-2{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-my-3{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-3{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-my-4{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-4{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-my-5{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-5{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-my-6{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-6{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-my-7{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-7{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-my-8{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-8{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-my-9{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-9{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-my-10{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-10{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-my-11{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-11{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-my-12{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-12{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-my-13{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-13{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-my-14{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-14{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-my-15{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-15{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-my-16{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-16{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-my-20{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-20{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-my-24{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-24{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-my-28{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-28{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-my-32{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-32{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-my-36{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-36{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-my-40{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-40{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-my-44{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-44{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-my-48{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-48{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-my-52{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-52{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-my-56{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-56{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-my-60{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-60{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-my-64{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-64{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-my-72{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-72{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-my-80{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-80{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-my-96{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-96{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-my-px{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-mx-px{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-my-0\.5{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-0\.5{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-my-1\.5{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\.5{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-my-2\.5{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\.5{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-my-3\.5{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-mx-3\.5{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/2{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/2{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/3{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/3{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-2\/3{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\/3{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/4{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/4{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-my-2\/4{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\/4{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-my-3\/4{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mx-3\/4{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/5{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/5{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-my-2\/5{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\/5{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-my-3\/5{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-mx-3\/5{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-my-4\/5{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-mx-4\/5{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/6{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/6{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-2\/6{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\/6{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-3\/6{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mx-3\/6{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-my-4\/6{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-4\/6{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-5\/6{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-5\/6{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-1\/12{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-1\/12{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-2\/12{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-2\/12{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-3\/12{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mx-3\/12{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-my-4\/12{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-4\/12{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-5\/12{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-5\/12{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-6\/12{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mx-6\/12{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-my-7\/12{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-7\/12{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-8\/12{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-8\/12{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-9\/12{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mx-9\/12{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-my-10\/12{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mx-10\/12{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-my-11\/12{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mx-11\/12{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-my-full{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .group:hover .xl\:group-hover\:-mx-full{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .group:hover .xl\:group-hover\:mt-0{
    margin-top     : 0 !important;
  }

  .group:hover .xl\:group-hover\:mr-0{
    margin-right     : 0 !important;
  }

  .group:hover .xl\:group-hover\:mb-0{
    margin-bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:ml-0{
    margin-left     : 0 !important;
  }

  .group:hover .xl\:group-hover\:mt-1{
    margin-top     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:mr-1{
    margin-right     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:mb-1{
    margin-bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:ml-1{
    margin-left     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:mt-2{
    margin-top     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:mr-2{
    margin-right     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:mb-2{
    margin-bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:ml-2{
    margin-left     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:mt-3{
    margin-top     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:mr-3{
    margin-right     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:mb-3{
    margin-bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:ml-3{
    margin-left     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:mt-4{
    margin-top     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:mr-4{
    margin-right     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:mb-4{
    margin-bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:ml-4{
    margin-left     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:mt-5{
    margin-top     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:mr-5{
    margin-right     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:mb-5{
    margin-bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:ml-5{
    margin-left     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:mt-6{
    margin-top     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:mr-6{
    margin-right     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:mb-6{
    margin-bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:ml-6{
    margin-left     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:mt-7{
    margin-top     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:mr-7{
    margin-right     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:mb-7{
    margin-bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:ml-7{
    margin-left     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:mt-8{
    margin-top     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:mr-8{
    margin-right     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:mb-8{
    margin-bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:ml-8{
    margin-left     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:mt-9{
    margin-top     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:mr-9{
    margin-right     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:mb-9{
    margin-bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:ml-9{
    margin-left     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:mt-10{
    margin-top     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:mr-10{
    margin-right     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:mb-10{
    margin-bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:ml-10{
    margin-left     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:mt-11{
    margin-top     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:mr-11{
    margin-right     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:mb-11{
    margin-bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:ml-11{
    margin-left     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:mt-12{
    margin-top     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:mr-12{
    margin-right     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:mb-12{
    margin-bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:ml-12{
    margin-left     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:mt-13{
    margin-top     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:mr-13{
    margin-right     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:mb-13{
    margin-bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:ml-13{
    margin-left     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:mt-14{
    margin-top     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:mr-14{
    margin-right     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:mb-14{
    margin-bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:ml-14{
    margin-left     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:mt-15{
    margin-top     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:mr-15{
    margin-right     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:mb-15{
    margin-bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:ml-15{
    margin-left     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:mt-16{
    margin-top     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:mr-16{
    margin-right     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:mb-16{
    margin-bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:ml-16{
    margin-left     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:mt-20{
    margin-top     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:mr-20{
    margin-right     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:mb-20{
    margin-bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:ml-20{
    margin-left     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:mt-24{
    margin-top     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:mr-24{
    margin-right     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:mb-24{
    margin-bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:ml-24{
    margin-left     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:mt-28{
    margin-top     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:mr-28{
    margin-right     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:mb-28{
    margin-bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:ml-28{
    margin-left     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:mt-32{
    margin-top     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:mr-32{
    margin-right     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:mb-32{
    margin-bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:ml-32{
    margin-left     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:mt-36{
    margin-top     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:mr-36{
    margin-right     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:mb-36{
    margin-bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:ml-36{
    margin-left     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:mt-40{
    margin-top     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:mr-40{
    margin-right     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:mb-40{
    margin-bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:ml-40{
    margin-left     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:mt-44{
    margin-top     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:mr-44{
    margin-right     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:mb-44{
    margin-bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:ml-44{
    margin-left     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:mt-48{
    margin-top     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:mr-48{
    margin-right     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:mb-48{
    margin-bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:ml-48{
    margin-left     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:mt-52{
    margin-top     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:mr-52{
    margin-right     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:mb-52{
    margin-bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:ml-52{
    margin-left     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:mt-56{
    margin-top     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:mr-56{
    margin-right     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:mb-56{
    margin-bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:ml-56{
    margin-left     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:mt-60{
    margin-top     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:mr-60{
    margin-right     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:mb-60{
    margin-bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:ml-60{
    margin-left     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:mt-64{
    margin-top     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:mr-64{
    margin-right     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:mb-64{
    margin-bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:ml-64{
    margin-left     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:mt-72{
    margin-top     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:mr-72{
    margin-right     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:mb-72{
    margin-bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:ml-72{
    margin-left     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:mt-80{
    margin-top     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:mr-80{
    margin-right     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:mb-80{
    margin-bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:ml-80{
    margin-left     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:mt-96{
    margin-top     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:mr-96{
    margin-right     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:mb-96{
    margin-bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:ml-96{
    margin-left     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:mt-auto{
    margin-top     : auto !important;
  }

  .group:hover .xl\:group-hover\:mr-auto{
    margin-right     : auto !important;
  }

  .group:hover .xl\:group-hover\:mb-auto{
    margin-bottom     : auto !important;
  }

  .group:hover .xl\:group-hover\:ml-auto{
    margin-left     : auto !important;
  }

  .group:hover .xl\:group-hover\:mt-px{
    margin-top     : 1px !important;
  }

  .group:hover .xl\:group-hover\:mr-px{
    margin-right     : 1px !important;
  }

  .group:hover .xl\:group-hover\:mb-px{
    margin-bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:ml-px{
    margin-left     : 1px !important;
  }

  .group:hover .xl\:group-hover\:mt-0\.5{
    margin-top     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:mr-0\.5{
    margin-right     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:mb-0\.5{
    margin-bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:ml-0\.5{
    margin-left     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:mt-1\.5{
    margin-top     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:mr-1\.5{
    margin-right     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:mb-1\.5{
    margin-bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:ml-1\.5{
    margin-left     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:mt-2\.5{
    margin-top     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:mr-2\.5{
    margin-right     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:mb-2\.5{
    margin-bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:ml-2\.5{
    margin-left     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:mt-3\.5{
    margin-top     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:mr-3\.5{
    margin-right     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:mb-3\.5{
    margin-bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:ml-3\.5{
    margin-left     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/2{
    margin-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/2{
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/2{
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/2{
    margin-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/3{
    margin-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/3{
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/3{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/3{
    margin-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-2\/3{
    margin-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-2\/3{
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-2\/3{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-2\/3{
    margin-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/4{
    margin-top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/4{
    margin-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/4{
    margin-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/4{
    margin-left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mt-2\/4{
    margin-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mr-2\/4{
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mb-2\/4{
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:ml-2\/4{
    margin-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mt-3\/4{
    margin-top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mr-3\/4{
    margin-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mb-3\/4{
    margin-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:ml-3\/4{
    margin-left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/5{
    margin-top     : 20% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/5{
    margin-right     : 20% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/5{
    margin-bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/5{
    margin-left     : 20% !important;
  }

  .group:hover .xl\:group-hover\:mt-2\/5{
    margin-top     : 40% !important;
  }

  .group:hover .xl\:group-hover\:mr-2\/5{
    margin-right     : 40% !important;
  }

  .group:hover .xl\:group-hover\:mb-2\/5{
    margin-bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:ml-2\/5{
    margin-left     : 40% !important;
  }

  .group:hover .xl\:group-hover\:mt-3\/5{
    margin-top     : 60% !important;
  }

  .group:hover .xl\:group-hover\:mr-3\/5{
    margin-right     : 60% !important;
  }

  .group:hover .xl\:group-hover\:mb-3\/5{
    margin-bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:ml-3\/5{
    margin-left     : 60% !important;
  }

  .group:hover .xl\:group-hover\:mt-4\/5{
    margin-top     : 80% !important;
  }

  .group:hover .xl\:group-hover\:mr-4\/5{
    margin-right     : 80% !important;
  }

  .group:hover .xl\:group-hover\:mb-4\/5{
    margin-bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:ml-4\/5{
    margin-left     : 80% !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/6{
    margin-top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/6{
    margin-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/6{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/6{
    margin-left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-2\/6{
    margin-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-2\/6{
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-2\/6{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-2\/6{
    margin-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-3\/6{
    margin-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mr-3\/6{
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mb-3\/6{
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:ml-3\/6{
    margin-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mt-4\/6{
    margin-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-4\/6{
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-4\/6{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-4\/6{
    margin-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-5\/6{
    margin-top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-5\/6{
    margin-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-5\/6{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-5\/6{
    margin-left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-1\/12{
    margin-top     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-1\/12{
    margin-right     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-1\/12{
    margin-bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-1\/12{
    margin-left     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-2\/12{
    margin-top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-2\/12{
    margin-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-2\/12{
    margin-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-2\/12{
    margin-left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-3\/12{
    margin-top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mr-3\/12{
    margin-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mb-3\/12{
    margin-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:ml-3\/12{
    margin-left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:mt-4\/12{
    margin-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-4\/12{
    margin-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-4\/12{
    margin-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-4\/12{
    margin-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-5\/12{
    margin-top     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-5\/12{
    margin-right     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-5\/12{
    margin-bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-5\/12{
    margin-left     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-6\/12{
    margin-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mr-6\/12{
    margin-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mb-6\/12{
    margin-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:ml-6\/12{
    margin-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:mt-7\/12{
    margin-top     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-7\/12{
    margin-right     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-7\/12{
    margin-bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-7\/12{
    margin-left     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-8\/12{
    margin-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-8\/12{
    margin-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-8\/12{
    margin-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-8\/12{
    margin-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-9\/12{
    margin-top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mr-9\/12{
    margin-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mb-9\/12{
    margin-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:ml-9\/12{
    margin-left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:mt-10\/12{
    margin-top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mr-10\/12{
    margin-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mb-10\/12{
    margin-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:ml-10\/12{
    margin-left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:mt-11\/12{
    margin-top     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:mr-11\/12{
    margin-right     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:mb-11\/12{
    margin-bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:ml-11\/12{
    margin-left     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:mt-full{
    margin-top     : 100% !important;
  }

  .group:hover .xl\:group-hover\:mr-full{
    margin-right     : 100% !important;
  }

  .group:hover .xl\:group-hover\:mb-full{
    margin-bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:ml-full{
    margin-left     : 100% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1{
    margin-top     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-1{
    margin-right     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-1{
    margin-bottom     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-1{
    margin-left     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-2{
    margin-top     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-2{
    margin-right     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-2{
    margin-bottom     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-2{
    margin-left     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-3{
    margin-top     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-3{
    margin-right     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-3{
    margin-bottom     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-3{
    margin-left     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-4{
    margin-top     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-4{
    margin-right     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-4{
    margin-bottom     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-4{
    margin-left     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-5{
    margin-top     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-5{
    margin-right     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-5{
    margin-bottom     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-5{
    margin-left     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-6{
    margin-top     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-6{
    margin-right     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-6{
    margin-bottom     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-6{
    margin-left     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-7{
    margin-top     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-7{
    margin-right     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-7{
    margin-bottom     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-7{
    margin-left     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-8{
    margin-top     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-8{
    margin-right     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-8{
    margin-bottom     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-8{
    margin-left     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-9{
    margin-top     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-9{
    margin-right     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-9{
    margin-bottom     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-9{
    margin-left     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-10{
    margin-top     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-10{
    margin-right     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-10{
    margin-bottom     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-10{
    margin-left     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-11{
    margin-top     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-11{
    margin-right     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-11{
    margin-bottom     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-11{
    margin-left     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-12{
    margin-top     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-12{
    margin-right     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-12{
    margin-bottom     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-12{
    margin-left     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-13{
    margin-top     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-13{
    margin-right     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-13{
    margin-bottom     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-13{
    margin-left     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-14{
    margin-top     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-14{
    margin-right     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-14{
    margin-bottom     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-14{
    margin-left     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-15{
    margin-top     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-15{
    margin-right     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-15{
    margin-bottom     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-15{
    margin-left     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-16{
    margin-top     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-16{
    margin-right     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-16{
    margin-bottom     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-16{
    margin-left     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-20{
    margin-top     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-20{
    margin-right     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-20{
    margin-bottom     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-20{
    margin-left     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-24{
    margin-top     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-24{
    margin-right     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-24{
    margin-bottom     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-24{
    margin-left     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-28{
    margin-top     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-28{
    margin-right     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-28{
    margin-bottom     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-28{
    margin-left     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-32{
    margin-top     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-32{
    margin-right     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-32{
    margin-bottom     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-32{
    margin-left     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-36{
    margin-top     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-36{
    margin-right     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-36{
    margin-bottom     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-36{
    margin-left     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-40{
    margin-top     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-40{
    margin-right     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-40{
    margin-bottom     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-40{
    margin-left     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-44{
    margin-top     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-44{
    margin-right     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-44{
    margin-bottom     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-44{
    margin-left     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-48{
    margin-top     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-48{
    margin-right     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-48{
    margin-bottom     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-48{
    margin-left     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-52{
    margin-top     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-52{
    margin-right     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-52{
    margin-bottom     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-52{
    margin-left     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-56{
    margin-top     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-56{
    margin-right     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-56{
    margin-bottom     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-56{
    margin-left     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-60{
    margin-top     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-60{
    margin-right     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-60{
    margin-bottom     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-60{
    margin-left     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-64{
    margin-top     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-64{
    margin-right     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-64{
    margin-bottom     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-64{
    margin-left     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-72{
    margin-top     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-72{
    margin-right     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-72{
    margin-bottom     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-72{
    margin-left     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-80{
    margin-top     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-80{
    margin-right     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-80{
    margin-bottom     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-80{
    margin-left     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-96{
    margin-top     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-96{
    margin-right     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-96{
    margin-bottom     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-96{
    margin-left     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-px{
    margin-top     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-mr-px{
    margin-right     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-mb-px{
    margin-bottom     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-ml-px{
    margin-left     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-mt-0\.5{
    margin-top     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-0\.5{
    margin-right     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-0\.5{
    margin-bottom     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-0\.5{
    margin-left     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\.5{
    margin-top     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\.5{
    margin-right     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\.5{
    margin-bottom     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\.5{
    margin-left     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\.5{
    margin-top     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\.5{
    margin-right     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\.5{
    margin-bottom     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\.5{
    margin-left     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-3\.5{
    margin-top     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-mr-3\.5{
    margin-right     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-mb-3\.5{
    margin-bottom     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-ml-3\.5{
    margin-left     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/2{
    margin-top     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/2{
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/2{
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/2{
    margin-left     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/3{
    margin-top     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/3{
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/3{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/3{
    margin-left     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\/3{
    margin-top     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\/3{
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\/3{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\/3{
    margin-left     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/4{
    margin-top     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/4{
    margin-right     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/4{
    margin-bottom     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/4{
    margin-left     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\/4{
    margin-top     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\/4{
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\/4{
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\/4{
    margin-left     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mt-3\/4{
    margin-top     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mr-3\/4{
    margin-right     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mb-3\/4{
    margin-bottom     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-ml-3\/4{
    margin-left     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/5{
    margin-top     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/5{
    margin-right     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/5{
    margin-bottom     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/5{
    margin-left     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\/5{
    margin-top     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\/5{
    margin-right     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\/5{
    margin-bottom     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\/5{
    margin-left     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-mt-3\/5{
    margin-top     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-mr-3\/5{
    margin-right     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-mb-3\/5{
    margin-bottom     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-ml-3\/5{
    margin-left     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-mt-4\/5{
    margin-top     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-mr-4\/5{
    margin-right     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-mb-4\/5{
    margin-bottom     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-ml-4\/5{
    margin-left     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/6{
    margin-top     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/6{
    margin-right     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/6{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/6{
    margin-left     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\/6{
    margin-top     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\/6{
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\/6{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\/6{
    margin-left     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-3\/6{
    margin-top     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mr-3\/6{
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mb-3\/6{
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-ml-3\/6{
    margin-left     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mt-4\/6{
    margin-top     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-4\/6{
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-4\/6{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-4\/6{
    margin-left     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-5\/6{
    margin-top     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-5\/6{
    margin-right     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-5\/6{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-5\/6{
    margin-left     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-1\/12{
    margin-top     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-1\/12{
    margin-right     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-1\/12{
    margin-bottom     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-1\/12{
    margin-left     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-2\/12{
    margin-top     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-2\/12{
    margin-right     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-2\/12{
    margin-bottom     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-2\/12{
    margin-left     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-3\/12{
    margin-top     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mr-3\/12{
    margin-right     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mb-3\/12{
    margin-bottom     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-ml-3\/12{
    margin-left     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-mt-4\/12{
    margin-top     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-4\/12{
    margin-right     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-4\/12{
    margin-bottom     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-4\/12{
    margin-left     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-5\/12{
    margin-top     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-5\/12{
    margin-right     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-5\/12{
    margin-bottom     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-5\/12{
    margin-left     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-6\/12{
    margin-top     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mr-6\/12{
    margin-right     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mb-6\/12{
    margin-bottom     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-ml-6\/12{
    margin-left     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-mt-7\/12{
    margin-top     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-7\/12{
    margin-right     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-7\/12{
    margin-bottom     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-7\/12{
    margin-left     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-8\/12{
    margin-top     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-8\/12{
    margin-right     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-8\/12{
    margin-bottom     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-8\/12{
    margin-left     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-9\/12{
    margin-top     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mr-9\/12{
    margin-right     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mb-9\/12{
    margin-bottom     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-ml-9\/12{
    margin-left     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-mt-10\/12{
    margin-top     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mr-10\/12{
    margin-right     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mb-10\/12{
    margin-bottom     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-ml-10\/12{
    margin-left     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-mt-11\/12{
    margin-top     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mr-11\/12{
    margin-right     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mb-11\/12{
    margin-bottom     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-ml-11\/12{
    margin-left     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-mt-full{
    margin-top     : -100% !important;
  }

  .group:hover .xl\:group-hover\:-mr-full{
    margin-right     : -100% !important;
  }

  .group:hover .xl\:group-hover\:-mb-full{
    margin-bottom     : -100% !important;
  }

  .group:hover .xl\:group-hover\:-ml-full{
    margin-left     : -100% !important;
  }

  .xl\:hover\:m-0:hover{
    margin     : 0 !important;
  }

  .xl\:hover\:m-1:hover{
    margin     : 0.25rem !important;
  }

  .xl\:hover\:m-2:hover{
    margin     : 0.5rem !important;
  }

  .xl\:hover\:m-3:hover{
    margin     : 0.75rem !important;
  }

  .xl\:hover\:m-4:hover{
    margin     : 1rem !important;
  }

  .xl\:hover\:m-5:hover{
    margin     : 1.25rem !important;
  }

  .xl\:hover\:m-6:hover{
    margin     : 1.5rem !important;
  }

  .xl\:hover\:m-7:hover{
    margin     : 1.75rem !important;
  }

  .xl\:hover\:m-8:hover{
    margin     : 2rem !important;
  }

  .xl\:hover\:m-9:hover{
    margin     : 2.25rem !important;
  }

  .xl\:hover\:m-10:hover{
    margin     : 2.5rem !important;
  }

  .xl\:hover\:m-11:hover{
    margin     : 2.75rem !important;
  }

  .xl\:hover\:m-12:hover{
    margin     : 3rem !important;
  }

  .xl\:hover\:m-13:hover{
    margin     : 3.25rem !important;
  }

  .xl\:hover\:m-14:hover{
    margin     : 3.5rem !important;
  }

  .xl\:hover\:m-15:hover{
    margin     : 3.75rem !important;
  }

  .xl\:hover\:m-16:hover{
    margin     : 4rem !important;
  }

  .xl\:hover\:m-20:hover{
    margin     : 5rem !important;
  }

  .xl\:hover\:m-24:hover{
    margin     : 6rem !important;
  }

  .xl\:hover\:m-28:hover{
    margin     : 7rem !important;
  }

  .xl\:hover\:m-32:hover{
    margin     : 8rem !important;
  }

  .xl\:hover\:m-36:hover{
    margin     : 9rem !important;
  }

  .xl\:hover\:m-40:hover{
    margin     : 10rem !important;
  }

  .xl\:hover\:m-44:hover{
    margin     : 11rem !important;
  }

  .xl\:hover\:m-48:hover{
    margin     : 12rem !important;
  }

  .xl\:hover\:m-52:hover{
    margin     : 13rem !important;
  }

  .xl\:hover\:m-56:hover{
    margin     : 14rem !important;
  }

  .xl\:hover\:m-60:hover{
    margin     : 15rem !important;
  }

  .xl\:hover\:m-64:hover{
    margin     : 16rem !important;
  }

  .xl\:hover\:m-72:hover{
    margin     : 18rem !important;
  }

  .xl\:hover\:m-80:hover{
    margin     : 20rem !important;
  }

  .xl\:hover\:m-96:hover{
    margin     : 24rem !important;
  }

  .xl\:hover\:m-auto:hover{
    margin     : auto !important;
  }

  .xl\:hover\:m-px:hover{
    margin     : 1px !important;
  }

  .xl\:hover\:m-0\.5:hover{
    margin     : 0.125rem !important;
  }

  .xl\:hover\:m-1\.5:hover{
    margin     : 0.375rem !important;
  }

  .xl\:hover\:m-2\.5:hover{
    margin     : 0.625rem !important;
  }

  .xl\:hover\:m-3\.5:hover{
    margin     : 0.875rem !important;
  }

  .xl\:hover\:m-1\/2:hover{
    margin     : 50% !important;
  }

  .xl\:hover\:m-1\/3:hover{
    margin     : 33.333333% !important;
  }

  .xl\:hover\:m-2\/3:hover{
    margin     : 66.666667% !important;
  }

  .xl\:hover\:m-1\/4:hover{
    margin     : 25% !important;
  }

  .xl\:hover\:m-2\/4:hover{
    margin     : 50% !important;
  }

  .xl\:hover\:m-3\/4:hover{
    margin     : 75% !important;
  }

  .xl\:hover\:m-1\/5:hover{
    margin     : 20% !important;
  }

  .xl\:hover\:m-2\/5:hover{
    margin     : 40% !important;
  }

  .xl\:hover\:m-3\/5:hover{
    margin     : 60% !important;
  }

  .xl\:hover\:m-4\/5:hover{
    margin     : 80% !important;
  }

  .xl\:hover\:m-1\/6:hover{
    margin     : 16.666667% !important;
  }

  .xl\:hover\:m-2\/6:hover{
    margin     : 33.333333% !important;
  }

  .xl\:hover\:m-3\/6:hover{
    margin     : 50% !important;
  }

  .xl\:hover\:m-4\/6:hover{
    margin     : 66.666667% !important;
  }

  .xl\:hover\:m-5\/6:hover{
    margin     : 83.333333% !important;
  }

  .xl\:hover\:m-1\/12:hover{
    margin     : 8.333333% !important;
  }

  .xl\:hover\:m-2\/12:hover{
    margin     : 16.666667% !important;
  }

  .xl\:hover\:m-3\/12:hover{
    margin     : 25% !important;
  }

  .xl\:hover\:m-4\/12:hover{
    margin     : 33.333333% !important;
  }

  .xl\:hover\:m-5\/12:hover{
    margin     : 41.666667% !important;
  }

  .xl\:hover\:m-6\/12:hover{
    margin     : 50% !important;
  }

  .xl\:hover\:m-7\/12:hover{
    margin     : 58.333333% !important;
  }

  .xl\:hover\:m-8\/12:hover{
    margin     : 66.666667% !important;
  }

  .xl\:hover\:m-9\/12:hover{
    margin     : 75% !important;
  }

  .xl\:hover\:m-10\/12:hover{
    margin     : 83.333333% !important;
  }

  .xl\:hover\:m-11\/12:hover{
    margin     : 91.666667% !important;
  }

  .xl\:hover\:m-full:hover{
    margin     : 100% !important;
  }

  .xl\:hover\:-m-1:hover{
    margin     : -0.25rem !important;
  }

  .xl\:hover\:-m-2:hover{
    margin     : -0.5rem !important;
  }

  .xl\:hover\:-m-3:hover{
    margin     : -0.75rem !important;
  }

  .xl\:hover\:-m-4:hover{
    margin     : -1rem !important;
  }

  .xl\:hover\:-m-5:hover{
    margin     : -1.25rem !important;
  }

  .xl\:hover\:-m-6:hover{
    margin     : -1.5rem !important;
  }

  .xl\:hover\:-m-7:hover{
    margin     : -1.75rem !important;
  }

  .xl\:hover\:-m-8:hover{
    margin     : -2rem !important;
  }

  .xl\:hover\:-m-9:hover{
    margin     : -2.25rem !important;
  }

  .xl\:hover\:-m-10:hover{
    margin     : -2.5rem !important;
  }

  .xl\:hover\:-m-11:hover{
    margin     : -2.75rem !important;
  }

  .xl\:hover\:-m-12:hover{
    margin     : -3rem !important;
  }

  .xl\:hover\:-m-13:hover{
    margin     : -3.25rem !important;
  }

  .xl\:hover\:-m-14:hover{
    margin     : -3.5rem !important;
  }

  .xl\:hover\:-m-15:hover{
    margin     : -3.75rem !important;
  }

  .xl\:hover\:-m-16:hover{
    margin     : -4rem !important;
  }

  .xl\:hover\:-m-20:hover{
    margin     : -5rem !important;
  }

  .xl\:hover\:-m-24:hover{
    margin     : -6rem !important;
  }

  .xl\:hover\:-m-28:hover{
    margin     : -7rem !important;
  }

  .xl\:hover\:-m-32:hover{
    margin     : -8rem !important;
  }

  .xl\:hover\:-m-36:hover{
    margin     : -9rem !important;
  }

  .xl\:hover\:-m-40:hover{
    margin     : -10rem !important;
  }

  .xl\:hover\:-m-44:hover{
    margin     : -11rem !important;
  }

  .xl\:hover\:-m-48:hover{
    margin     : -12rem !important;
  }

  .xl\:hover\:-m-52:hover{
    margin     : -13rem !important;
  }

  .xl\:hover\:-m-56:hover{
    margin     : -14rem !important;
  }

  .xl\:hover\:-m-60:hover{
    margin     : -15rem !important;
  }

  .xl\:hover\:-m-64:hover{
    margin     : -16rem !important;
  }

  .xl\:hover\:-m-72:hover{
    margin     : -18rem !important;
  }

  .xl\:hover\:-m-80:hover{
    margin     : -20rem !important;
  }

  .xl\:hover\:-m-96:hover{
    margin     : -24rem !important;
  }

  .xl\:hover\:-m-px:hover{
    margin     : -1px !important;
  }

  .xl\:hover\:-m-0\.5:hover{
    margin     : -0.125rem !important;
  }

  .xl\:hover\:-m-1\.5:hover{
    margin     : -0.375rem !important;
  }

  .xl\:hover\:-m-2\.5:hover{
    margin     : -0.625rem !important;
  }

  .xl\:hover\:-m-3\.5:hover{
    margin     : -0.875rem !important;
  }

  .xl\:hover\:-m-1\/2:hover{
    margin     : -50% !important;
  }

  .xl\:hover\:-m-1\/3:hover{
    margin     : -33.33333% !important;
  }

  .xl\:hover\:-m-2\/3:hover{
    margin     : -66.66667% !important;
  }

  .xl\:hover\:-m-1\/4:hover{
    margin     : -25% !important;
  }

  .xl\:hover\:-m-2\/4:hover{
    margin     : -50% !important;
  }

  .xl\:hover\:-m-3\/4:hover{
    margin     : -75% !important;
  }

  .xl\:hover\:-m-1\/5:hover{
    margin     : -20% !important;
  }

  .xl\:hover\:-m-2\/5:hover{
    margin     : -40% !important;
  }

  .xl\:hover\:-m-3\/5:hover{
    margin     : -60% !important;
  }

  .xl\:hover\:-m-4\/5:hover{
    margin     : -80% !important;
  }

  .xl\:hover\:-m-1\/6:hover{
    margin     : -16.66667% !important;
  }

  .xl\:hover\:-m-2\/6:hover{
    margin     : -33.33333% !important;
  }

  .xl\:hover\:-m-3\/6:hover{
    margin     : -50% !important;
  }

  .xl\:hover\:-m-4\/6:hover{
    margin     : -66.66667% !important;
  }

  .xl\:hover\:-m-5\/6:hover{
    margin     : -83.33333% !important;
  }

  .xl\:hover\:-m-1\/12:hover{
    margin     : -8.33333% !important;
  }

  .xl\:hover\:-m-2\/12:hover{
    margin     : -16.66667% !important;
  }

  .xl\:hover\:-m-3\/12:hover{
    margin     : -25% !important;
  }

  .xl\:hover\:-m-4\/12:hover{
    margin     : -33.33333% !important;
  }

  .xl\:hover\:-m-5\/12:hover{
    margin     : -41.66667% !important;
  }

  .xl\:hover\:-m-6\/12:hover{
    margin     : -50% !important;
  }

  .xl\:hover\:-m-7\/12:hover{
    margin     : -58.33333% !important;
  }

  .xl\:hover\:-m-8\/12:hover{
    margin     : -66.66667% !important;
  }

  .xl\:hover\:-m-9\/12:hover{
    margin     : -75% !important;
  }

  .xl\:hover\:-m-10\/12:hover{
    margin     : -83.33333% !important;
  }

  .xl\:hover\:-m-11\/12:hover{
    margin     : -91.66667% !important;
  }

  .xl\:hover\:-m-full:hover{
    margin     : -100% !important;
  }

  .xl\:hover\:my-0:hover{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .xl\:hover\:mx-0:hover{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .xl\:hover\:my-1:hover{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .xl\:hover\:mx-1:hover{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .xl\:hover\:my-2:hover{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .xl\:hover\:mx-2:hover{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .xl\:hover\:my-3:hover{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .xl\:hover\:mx-3:hover{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .xl\:hover\:my-4:hover{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .xl\:hover\:mx-4:hover{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .xl\:hover\:my-5:hover{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .xl\:hover\:mx-5:hover{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .xl\:hover\:my-6:hover{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .xl\:hover\:mx-6:hover{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .xl\:hover\:my-7:hover{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .xl\:hover\:mx-7:hover{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .xl\:hover\:my-8:hover{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .xl\:hover\:mx-8:hover{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .xl\:hover\:my-9:hover{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .xl\:hover\:mx-9:hover{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .xl\:hover\:my-10:hover{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .xl\:hover\:mx-10:hover{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .xl\:hover\:my-11:hover{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .xl\:hover\:mx-11:hover{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .xl\:hover\:my-12:hover{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .xl\:hover\:mx-12:hover{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .xl\:hover\:my-13:hover{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .xl\:hover\:mx-13:hover{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .xl\:hover\:my-14:hover{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .xl\:hover\:mx-14:hover{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .xl\:hover\:my-15:hover{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .xl\:hover\:mx-15:hover{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .xl\:hover\:my-16:hover{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .xl\:hover\:mx-16:hover{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .xl\:hover\:my-20:hover{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .xl\:hover\:mx-20:hover{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .xl\:hover\:my-24:hover{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .xl\:hover\:mx-24:hover{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .xl\:hover\:my-28:hover{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .xl\:hover\:mx-28:hover{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .xl\:hover\:my-32:hover{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .xl\:hover\:mx-32:hover{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .xl\:hover\:my-36:hover{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .xl\:hover\:mx-36:hover{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .xl\:hover\:my-40:hover{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .xl\:hover\:mx-40:hover{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .xl\:hover\:my-44:hover{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .xl\:hover\:mx-44:hover{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .xl\:hover\:my-48:hover{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .xl\:hover\:mx-48:hover{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .xl\:hover\:my-52:hover{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .xl\:hover\:mx-52:hover{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .xl\:hover\:my-56:hover{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .xl\:hover\:mx-56:hover{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .xl\:hover\:my-60:hover{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .xl\:hover\:mx-60:hover{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .xl\:hover\:my-64:hover{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .xl\:hover\:mx-64:hover{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .xl\:hover\:my-72:hover{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .xl\:hover\:mx-72:hover{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .xl\:hover\:my-80:hover{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .xl\:hover\:mx-80:hover{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .xl\:hover\:my-96:hover{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .xl\:hover\:mx-96:hover{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .xl\:hover\:my-auto:hover{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .xl\:hover\:mx-auto:hover{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .xl\:hover\:my-px:hover{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .xl\:hover\:mx-px:hover{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .xl\:hover\:my-0\.5:hover{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .xl\:hover\:mx-0\.5:hover{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .xl\:hover\:my-1\.5:hover{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .xl\:hover\:mx-1\.5:hover{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .xl\:hover\:my-2\.5:hover{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .xl\:hover\:mx-2\.5:hover{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .xl\:hover\:my-3\.5:hover{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .xl\:hover\:mx-3\.5:hover{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .xl\:hover\:my-1\/2:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:mx-1\/2:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:hover\:my-1\/3:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:mx-1\/3:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:my-2\/3:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:mx-2\/3:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:my-1\/4:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .xl\:hover\:mx-1\/4:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .xl\:hover\:my-2\/4:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:mx-2\/4:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:hover\:my-3\/4:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .xl\:hover\:mx-3\/4:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .xl\:hover\:my-1\/5:hover{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .xl\:hover\:mx-1\/5:hover{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .xl\:hover\:my-2\/5:hover{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .xl\:hover\:mx-2\/5:hover{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .xl\:hover\:my-3\/5:hover{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .xl\:hover\:mx-3\/5:hover{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .xl\:hover\:my-4\/5:hover{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .xl\:hover\:mx-4\/5:hover{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .xl\:hover\:my-1\/6:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .xl\:hover\:mx-1\/6:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .xl\:hover\:my-2\/6:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:mx-2\/6:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:my-3\/6:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:mx-3\/6:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:hover\:my-4\/6:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:mx-4\/6:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:my-5\/6:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .xl\:hover\:mx-5\/6:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .xl\:hover\:my-1\/12:hover{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .xl\:hover\:mx-1\/12:hover{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .xl\:hover\:my-2\/12:hover{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .xl\:hover\:mx-2\/12:hover{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .xl\:hover\:my-3\/12:hover{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .xl\:hover\:mx-3\/12:hover{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .xl\:hover\:my-4\/12:hover{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:mx-4\/12:hover{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:my-5\/12:hover{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .xl\:hover\:mx-5\/12:hover{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .xl\:hover\:my-6\/12:hover{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:mx-6\/12:hover{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:hover\:my-7\/12:hover{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .xl\:hover\:mx-7\/12:hover{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .xl\:hover\:my-8\/12:hover{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:mx-8\/12:hover{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:my-9\/12:hover{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .xl\:hover\:mx-9\/12:hover{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .xl\:hover\:my-10\/12:hover{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .xl\:hover\:mx-10\/12:hover{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .xl\:hover\:my-11\/12:hover{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .xl\:hover\:mx-11\/12:hover{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .xl\:hover\:my-full:hover{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .xl\:hover\:mx-full:hover{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .xl\:hover\:-my-1:hover{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .xl\:hover\:-mx-1:hover{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .xl\:hover\:-my-2:hover{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .xl\:hover\:-mx-2:hover{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .xl\:hover\:-my-3:hover{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .xl\:hover\:-mx-3:hover{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .xl\:hover\:-my-4:hover{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .xl\:hover\:-mx-4:hover{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .xl\:hover\:-my-5:hover{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .xl\:hover\:-mx-5:hover{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .xl\:hover\:-my-6:hover{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .xl\:hover\:-mx-6:hover{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .xl\:hover\:-my-7:hover{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .xl\:hover\:-mx-7:hover{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .xl\:hover\:-my-8:hover{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .xl\:hover\:-mx-8:hover{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .xl\:hover\:-my-9:hover{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .xl\:hover\:-mx-9:hover{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .xl\:hover\:-my-10:hover{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .xl\:hover\:-mx-10:hover{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .xl\:hover\:-my-11:hover{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .xl\:hover\:-mx-11:hover{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .xl\:hover\:-my-12:hover{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .xl\:hover\:-mx-12:hover{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .xl\:hover\:-my-13:hover{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .xl\:hover\:-mx-13:hover{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .xl\:hover\:-my-14:hover{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .xl\:hover\:-mx-14:hover{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .xl\:hover\:-my-15:hover{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .xl\:hover\:-mx-15:hover{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .xl\:hover\:-my-16:hover{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .xl\:hover\:-mx-16:hover{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .xl\:hover\:-my-20:hover{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .xl\:hover\:-mx-20:hover{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .xl\:hover\:-my-24:hover{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .xl\:hover\:-mx-24:hover{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .xl\:hover\:-my-28:hover{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .xl\:hover\:-mx-28:hover{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .xl\:hover\:-my-32:hover{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .xl\:hover\:-mx-32:hover{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .xl\:hover\:-my-36:hover{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .xl\:hover\:-mx-36:hover{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .xl\:hover\:-my-40:hover{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .xl\:hover\:-mx-40:hover{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .xl\:hover\:-my-44:hover{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .xl\:hover\:-mx-44:hover{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .xl\:hover\:-my-48:hover{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .xl\:hover\:-mx-48:hover{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .xl\:hover\:-my-52:hover{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .xl\:hover\:-mx-52:hover{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .xl\:hover\:-my-56:hover{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .xl\:hover\:-mx-56:hover{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .xl\:hover\:-my-60:hover{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .xl\:hover\:-mx-60:hover{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .xl\:hover\:-my-64:hover{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .xl\:hover\:-mx-64:hover{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .xl\:hover\:-my-72:hover{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .xl\:hover\:-mx-72:hover{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .xl\:hover\:-my-80:hover{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .xl\:hover\:-mx-80:hover{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .xl\:hover\:-my-96:hover{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .xl\:hover\:-mx-96:hover{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .xl\:hover\:-my-px:hover{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .xl\:hover\:-mx-px:hover{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .xl\:hover\:-my-0\.5:hover{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .xl\:hover\:-mx-0\.5:hover{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .xl\:hover\:-my-1\.5:hover{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .xl\:hover\:-mx-1\.5:hover{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .xl\:hover\:-my-2\.5:hover{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .xl\:hover\:-mx-2\.5:hover{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .xl\:hover\:-my-3\.5:hover{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .xl\:hover\:-mx-3\.5:hover{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .xl\:hover\:-my-1\/2:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-mx-1\/2:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:hover\:-my-1\/3:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-mx-1\/3:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-my-2\/3:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-mx-2\/3:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-my-1\/4:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .xl\:hover\:-mx-1\/4:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .xl\:hover\:-my-2\/4:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-mx-2\/4:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:hover\:-my-3\/4:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .xl\:hover\:-mx-3\/4:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .xl\:hover\:-my-1\/5:hover{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .xl\:hover\:-mx-1\/5:hover{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .xl\:hover\:-my-2\/5:hover{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .xl\:hover\:-mx-2\/5:hover{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .xl\:hover\:-my-3\/5:hover{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .xl\:hover\:-mx-3\/5:hover{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .xl\:hover\:-my-4\/5:hover{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .xl\:hover\:-mx-4\/5:hover{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .xl\:hover\:-my-1\/6:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .xl\:hover\:-mx-1\/6:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .xl\:hover\:-my-2\/6:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-mx-2\/6:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-my-3\/6:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-mx-3\/6:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:hover\:-my-4\/6:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-mx-4\/6:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-my-5\/6:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .xl\:hover\:-mx-5\/6:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .xl\:hover\:-my-1\/12:hover{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .xl\:hover\:-mx-1\/12:hover{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .xl\:hover\:-my-2\/12:hover{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .xl\:hover\:-mx-2\/12:hover{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .xl\:hover\:-my-3\/12:hover{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .xl\:hover\:-mx-3\/12:hover{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .xl\:hover\:-my-4\/12:hover{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-mx-4\/12:hover{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-my-5\/12:hover{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .xl\:hover\:-mx-5\/12:hover{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .xl\:hover\:-my-6\/12:hover{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-mx-6\/12:hover{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:hover\:-my-7\/12:hover{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .xl\:hover\:-mx-7\/12:hover{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .xl\:hover\:-my-8\/12:hover{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-mx-8\/12:hover{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-my-9\/12:hover{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .xl\:hover\:-mx-9\/12:hover{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .xl\:hover\:-my-10\/12:hover{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .xl\:hover\:-mx-10\/12:hover{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .xl\:hover\:-my-11\/12:hover{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .xl\:hover\:-mx-11\/12:hover{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .xl\:hover\:-my-full:hover{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .xl\:hover\:-mx-full:hover{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .xl\:hover\:mt-0:hover{
    margin-top     : 0 !important;
  }

  .xl\:hover\:mr-0:hover{
    margin-right     : 0 !important;
  }

  .xl\:hover\:mb-0:hover{
    margin-bottom     : 0 !important;
  }

  .xl\:hover\:ml-0:hover{
    margin-left     : 0 !important;
  }

  .xl\:hover\:mt-1:hover{
    margin-top     : 0.25rem !important;
  }

  .xl\:hover\:mr-1:hover{
    margin-right     : 0.25rem !important;
  }

  .xl\:hover\:mb-1:hover{
    margin-bottom     : 0.25rem !important;
  }

  .xl\:hover\:ml-1:hover{
    margin-left     : 0.25rem !important;
  }

  .xl\:hover\:mt-2:hover{
    margin-top     : 0.5rem !important;
  }

  .xl\:hover\:mr-2:hover{
    margin-right     : 0.5rem !important;
  }

  .xl\:hover\:mb-2:hover{
    margin-bottom     : 0.5rem !important;
  }

  .xl\:hover\:ml-2:hover{
    margin-left     : 0.5rem !important;
  }

  .xl\:hover\:mt-3:hover{
    margin-top     : 0.75rem !important;
  }

  .xl\:hover\:mr-3:hover{
    margin-right     : 0.75rem !important;
  }

  .xl\:hover\:mb-3:hover{
    margin-bottom     : 0.75rem !important;
  }

  .xl\:hover\:ml-3:hover{
    margin-left     : 0.75rem !important;
  }

  .xl\:hover\:mt-4:hover{
    margin-top     : 1rem !important;
  }

  .xl\:hover\:mr-4:hover{
    margin-right     : 1rem !important;
  }

  .xl\:hover\:mb-4:hover{
    margin-bottom     : 1rem !important;
  }

  .xl\:hover\:ml-4:hover{
    margin-left     : 1rem !important;
  }

  .xl\:hover\:mt-5:hover{
    margin-top     : 1.25rem !important;
  }

  .xl\:hover\:mr-5:hover{
    margin-right     : 1.25rem !important;
  }

  .xl\:hover\:mb-5:hover{
    margin-bottom     : 1.25rem !important;
  }

  .xl\:hover\:ml-5:hover{
    margin-left     : 1.25rem !important;
  }

  .xl\:hover\:mt-6:hover{
    margin-top     : 1.5rem !important;
  }

  .xl\:hover\:mr-6:hover{
    margin-right     : 1.5rem !important;
  }

  .xl\:hover\:mb-6:hover{
    margin-bottom     : 1.5rem !important;
  }

  .xl\:hover\:ml-6:hover{
    margin-left     : 1.5rem !important;
  }

  .xl\:hover\:mt-7:hover{
    margin-top     : 1.75rem !important;
  }

  .xl\:hover\:mr-7:hover{
    margin-right     : 1.75rem !important;
  }

  .xl\:hover\:mb-7:hover{
    margin-bottom     : 1.75rem !important;
  }

  .xl\:hover\:ml-7:hover{
    margin-left     : 1.75rem !important;
  }

  .xl\:hover\:mt-8:hover{
    margin-top     : 2rem !important;
  }

  .xl\:hover\:mr-8:hover{
    margin-right     : 2rem !important;
  }

  .xl\:hover\:mb-8:hover{
    margin-bottom     : 2rem !important;
  }

  .xl\:hover\:ml-8:hover{
    margin-left     : 2rem !important;
  }

  .xl\:hover\:mt-9:hover{
    margin-top     : 2.25rem !important;
  }

  .xl\:hover\:mr-9:hover{
    margin-right     : 2.25rem !important;
  }

  .xl\:hover\:mb-9:hover{
    margin-bottom     : 2.25rem !important;
  }

  .xl\:hover\:ml-9:hover{
    margin-left     : 2.25rem !important;
  }

  .xl\:hover\:mt-10:hover{
    margin-top     : 2.5rem !important;
  }

  .xl\:hover\:mr-10:hover{
    margin-right     : 2.5rem !important;
  }

  .xl\:hover\:mb-10:hover{
    margin-bottom     : 2.5rem !important;
  }

  .xl\:hover\:ml-10:hover{
    margin-left     : 2.5rem !important;
  }

  .xl\:hover\:mt-11:hover{
    margin-top     : 2.75rem !important;
  }

  .xl\:hover\:mr-11:hover{
    margin-right     : 2.75rem !important;
  }

  .xl\:hover\:mb-11:hover{
    margin-bottom     : 2.75rem !important;
  }

  .xl\:hover\:ml-11:hover{
    margin-left     : 2.75rem !important;
  }

  .xl\:hover\:mt-12:hover{
    margin-top     : 3rem !important;
  }

  .xl\:hover\:mr-12:hover{
    margin-right     : 3rem !important;
  }

  .xl\:hover\:mb-12:hover{
    margin-bottom     : 3rem !important;
  }

  .xl\:hover\:ml-12:hover{
    margin-left     : 3rem !important;
  }

  .xl\:hover\:mt-13:hover{
    margin-top     : 3.25rem !important;
  }

  .xl\:hover\:mr-13:hover{
    margin-right     : 3.25rem !important;
  }

  .xl\:hover\:mb-13:hover{
    margin-bottom     : 3.25rem !important;
  }

  .xl\:hover\:ml-13:hover{
    margin-left     : 3.25rem !important;
  }

  .xl\:hover\:mt-14:hover{
    margin-top     : 3.5rem !important;
  }

  .xl\:hover\:mr-14:hover{
    margin-right     : 3.5rem !important;
  }

  .xl\:hover\:mb-14:hover{
    margin-bottom     : 3.5rem !important;
  }

  .xl\:hover\:ml-14:hover{
    margin-left     : 3.5rem !important;
  }

  .xl\:hover\:mt-15:hover{
    margin-top     : 3.75rem !important;
  }

  .xl\:hover\:mr-15:hover{
    margin-right     : 3.75rem !important;
  }

  .xl\:hover\:mb-15:hover{
    margin-bottom     : 3.75rem !important;
  }

  .xl\:hover\:ml-15:hover{
    margin-left     : 3.75rem !important;
  }

  .xl\:hover\:mt-16:hover{
    margin-top     : 4rem !important;
  }

  .xl\:hover\:mr-16:hover{
    margin-right     : 4rem !important;
  }

  .xl\:hover\:mb-16:hover{
    margin-bottom     : 4rem !important;
  }

  .xl\:hover\:ml-16:hover{
    margin-left     : 4rem !important;
  }

  .xl\:hover\:mt-20:hover{
    margin-top     : 5rem !important;
  }

  .xl\:hover\:mr-20:hover{
    margin-right     : 5rem !important;
  }

  .xl\:hover\:mb-20:hover{
    margin-bottom     : 5rem !important;
  }

  .xl\:hover\:ml-20:hover{
    margin-left     : 5rem !important;
  }

  .xl\:hover\:mt-24:hover{
    margin-top     : 6rem !important;
  }

  .xl\:hover\:mr-24:hover{
    margin-right     : 6rem !important;
  }

  .xl\:hover\:mb-24:hover{
    margin-bottom     : 6rem !important;
  }

  .xl\:hover\:ml-24:hover{
    margin-left     : 6rem !important;
  }

  .xl\:hover\:mt-28:hover{
    margin-top     : 7rem !important;
  }

  .xl\:hover\:mr-28:hover{
    margin-right     : 7rem !important;
  }

  .xl\:hover\:mb-28:hover{
    margin-bottom     : 7rem !important;
  }

  .xl\:hover\:ml-28:hover{
    margin-left     : 7rem !important;
  }

  .xl\:hover\:mt-32:hover{
    margin-top     : 8rem !important;
  }

  .xl\:hover\:mr-32:hover{
    margin-right     : 8rem !important;
  }

  .xl\:hover\:mb-32:hover{
    margin-bottom     : 8rem !important;
  }

  .xl\:hover\:ml-32:hover{
    margin-left     : 8rem !important;
  }

  .xl\:hover\:mt-36:hover{
    margin-top     : 9rem !important;
  }

  .xl\:hover\:mr-36:hover{
    margin-right     : 9rem !important;
  }

  .xl\:hover\:mb-36:hover{
    margin-bottom     : 9rem !important;
  }

  .xl\:hover\:ml-36:hover{
    margin-left     : 9rem !important;
  }

  .xl\:hover\:mt-40:hover{
    margin-top     : 10rem !important;
  }

  .xl\:hover\:mr-40:hover{
    margin-right     : 10rem !important;
  }

  .xl\:hover\:mb-40:hover{
    margin-bottom     : 10rem !important;
  }

  .xl\:hover\:ml-40:hover{
    margin-left     : 10rem !important;
  }

  .xl\:hover\:mt-44:hover{
    margin-top     : 11rem !important;
  }

  .xl\:hover\:mr-44:hover{
    margin-right     : 11rem !important;
  }

  .xl\:hover\:mb-44:hover{
    margin-bottom     : 11rem !important;
  }

  .xl\:hover\:ml-44:hover{
    margin-left     : 11rem !important;
  }

  .xl\:hover\:mt-48:hover{
    margin-top     : 12rem !important;
  }

  .xl\:hover\:mr-48:hover{
    margin-right     : 12rem !important;
  }

  .xl\:hover\:mb-48:hover{
    margin-bottom     : 12rem !important;
  }

  .xl\:hover\:ml-48:hover{
    margin-left     : 12rem !important;
  }

  .xl\:hover\:mt-52:hover{
    margin-top     : 13rem !important;
  }

  .xl\:hover\:mr-52:hover{
    margin-right     : 13rem !important;
  }

  .xl\:hover\:mb-52:hover{
    margin-bottom     : 13rem !important;
  }

  .xl\:hover\:ml-52:hover{
    margin-left     : 13rem !important;
  }

  .xl\:hover\:mt-56:hover{
    margin-top     : 14rem !important;
  }

  .xl\:hover\:mr-56:hover{
    margin-right     : 14rem !important;
  }

  .xl\:hover\:mb-56:hover{
    margin-bottom     : 14rem !important;
  }

  .xl\:hover\:ml-56:hover{
    margin-left     : 14rem !important;
  }

  .xl\:hover\:mt-60:hover{
    margin-top     : 15rem !important;
  }

  .xl\:hover\:mr-60:hover{
    margin-right     : 15rem !important;
  }

  .xl\:hover\:mb-60:hover{
    margin-bottom     : 15rem !important;
  }

  .xl\:hover\:ml-60:hover{
    margin-left     : 15rem !important;
  }

  .xl\:hover\:mt-64:hover{
    margin-top     : 16rem !important;
  }

  .xl\:hover\:mr-64:hover{
    margin-right     : 16rem !important;
  }

  .xl\:hover\:mb-64:hover{
    margin-bottom     : 16rem !important;
  }

  .xl\:hover\:ml-64:hover{
    margin-left     : 16rem !important;
  }

  .xl\:hover\:mt-72:hover{
    margin-top     : 18rem !important;
  }

  .xl\:hover\:mr-72:hover{
    margin-right     : 18rem !important;
  }

  .xl\:hover\:mb-72:hover{
    margin-bottom     : 18rem !important;
  }

  .xl\:hover\:ml-72:hover{
    margin-left     : 18rem !important;
  }

  .xl\:hover\:mt-80:hover{
    margin-top     : 20rem !important;
  }

  .xl\:hover\:mr-80:hover{
    margin-right     : 20rem !important;
  }

  .xl\:hover\:mb-80:hover{
    margin-bottom     : 20rem !important;
  }

  .xl\:hover\:ml-80:hover{
    margin-left     : 20rem !important;
  }

  .xl\:hover\:mt-96:hover{
    margin-top     : 24rem !important;
  }

  .xl\:hover\:mr-96:hover{
    margin-right     : 24rem !important;
  }

  .xl\:hover\:mb-96:hover{
    margin-bottom     : 24rem !important;
  }

  .xl\:hover\:ml-96:hover{
    margin-left     : 24rem !important;
  }

  .xl\:hover\:mt-auto:hover{
    margin-top     : auto !important;
  }

  .xl\:hover\:mr-auto:hover{
    margin-right     : auto !important;
  }

  .xl\:hover\:mb-auto:hover{
    margin-bottom     : auto !important;
  }

  .xl\:hover\:ml-auto:hover{
    margin-left     : auto !important;
  }

  .xl\:hover\:mt-px:hover{
    margin-top     : 1px !important;
  }

  .xl\:hover\:mr-px:hover{
    margin-right     : 1px !important;
  }

  .xl\:hover\:mb-px:hover{
    margin-bottom     : 1px !important;
  }

  .xl\:hover\:ml-px:hover{
    margin-left     : 1px !important;
  }

  .xl\:hover\:mt-0\.5:hover{
    margin-top     : 0.125rem !important;
  }

  .xl\:hover\:mr-0\.5:hover{
    margin-right     : 0.125rem !important;
  }

  .xl\:hover\:mb-0\.5:hover{
    margin-bottom     : 0.125rem !important;
  }

  .xl\:hover\:ml-0\.5:hover{
    margin-left     : 0.125rem !important;
  }

  .xl\:hover\:mt-1\.5:hover{
    margin-top     : 0.375rem !important;
  }

  .xl\:hover\:mr-1\.5:hover{
    margin-right     : 0.375rem !important;
  }

  .xl\:hover\:mb-1\.5:hover{
    margin-bottom     : 0.375rem !important;
  }

  .xl\:hover\:ml-1\.5:hover{
    margin-left     : 0.375rem !important;
  }

  .xl\:hover\:mt-2\.5:hover{
    margin-top     : 0.625rem !important;
  }

  .xl\:hover\:mr-2\.5:hover{
    margin-right     : 0.625rem !important;
  }

  .xl\:hover\:mb-2\.5:hover{
    margin-bottom     : 0.625rem !important;
  }

  .xl\:hover\:ml-2\.5:hover{
    margin-left     : 0.625rem !important;
  }

  .xl\:hover\:mt-3\.5:hover{
    margin-top     : 0.875rem !important;
  }

  .xl\:hover\:mr-3\.5:hover{
    margin-right     : 0.875rem !important;
  }

  .xl\:hover\:mb-3\.5:hover{
    margin-bottom     : 0.875rem !important;
  }

  .xl\:hover\:ml-3\.5:hover{
    margin-left     : 0.875rem !important;
  }

  .xl\:hover\:mt-1\/2:hover{
    margin-top     : 50% !important;
  }

  .xl\:hover\:mr-1\/2:hover{
    margin-right     : 50% !important;
  }

  .xl\:hover\:mb-1\/2:hover{
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:ml-1\/2:hover{
    margin-left     : 50% !important;
  }

  .xl\:hover\:mt-1\/3:hover{
    margin-top     : 33.333333% !important;
  }

  .xl\:hover\:mr-1\/3:hover{
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:mb-1\/3:hover{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:ml-1\/3:hover{
    margin-left     : 33.333333% !important;
  }

  .xl\:hover\:mt-2\/3:hover{
    margin-top     : 66.666667% !important;
  }

  .xl\:hover\:mr-2\/3:hover{
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:mb-2\/3:hover{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:ml-2\/3:hover{
    margin-left     : 66.666667% !important;
  }

  .xl\:hover\:mt-1\/4:hover{
    margin-top     : 25% !important;
  }

  .xl\:hover\:mr-1\/4:hover{
    margin-right     : 25% !important;
  }

  .xl\:hover\:mb-1\/4:hover{
    margin-bottom     : 25% !important;
  }

  .xl\:hover\:ml-1\/4:hover{
    margin-left     : 25% !important;
  }

  .xl\:hover\:mt-2\/4:hover{
    margin-top     : 50% !important;
  }

  .xl\:hover\:mr-2\/4:hover{
    margin-right     : 50% !important;
  }

  .xl\:hover\:mb-2\/4:hover{
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:ml-2\/4:hover{
    margin-left     : 50% !important;
  }

  .xl\:hover\:mt-3\/4:hover{
    margin-top     : 75% !important;
  }

  .xl\:hover\:mr-3\/4:hover{
    margin-right     : 75% !important;
  }

  .xl\:hover\:mb-3\/4:hover{
    margin-bottom     : 75% !important;
  }

  .xl\:hover\:ml-3\/4:hover{
    margin-left     : 75% !important;
  }

  .xl\:hover\:mt-1\/5:hover{
    margin-top     : 20% !important;
  }

  .xl\:hover\:mr-1\/5:hover{
    margin-right     : 20% !important;
  }

  .xl\:hover\:mb-1\/5:hover{
    margin-bottom     : 20% !important;
  }

  .xl\:hover\:ml-1\/5:hover{
    margin-left     : 20% !important;
  }

  .xl\:hover\:mt-2\/5:hover{
    margin-top     : 40% !important;
  }

  .xl\:hover\:mr-2\/5:hover{
    margin-right     : 40% !important;
  }

  .xl\:hover\:mb-2\/5:hover{
    margin-bottom     : 40% !important;
  }

  .xl\:hover\:ml-2\/5:hover{
    margin-left     : 40% !important;
  }

  .xl\:hover\:mt-3\/5:hover{
    margin-top     : 60% !important;
  }

  .xl\:hover\:mr-3\/5:hover{
    margin-right     : 60% !important;
  }

  .xl\:hover\:mb-3\/5:hover{
    margin-bottom     : 60% !important;
  }

  .xl\:hover\:ml-3\/5:hover{
    margin-left     : 60% !important;
  }

  .xl\:hover\:mt-4\/5:hover{
    margin-top     : 80% !important;
  }

  .xl\:hover\:mr-4\/5:hover{
    margin-right     : 80% !important;
  }

  .xl\:hover\:mb-4\/5:hover{
    margin-bottom     : 80% !important;
  }

  .xl\:hover\:ml-4\/5:hover{
    margin-left     : 80% !important;
  }

  .xl\:hover\:mt-1\/6:hover{
    margin-top     : 16.666667% !important;
  }

  .xl\:hover\:mr-1\/6:hover{
    margin-right     : 16.666667% !important;
  }

  .xl\:hover\:mb-1\/6:hover{
    margin-bottom     : 16.666667% !important;
  }

  .xl\:hover\:ml-1\/6:hover{
    margin-left     : 16.666667% !important;
  }

  .xl\:hover\:mt-2\/6:hover{
    margin-top     : 33.333333% !important;
  }

  .xl\:hover\:mr-2\/6:hover{
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:mb-2\/6:hover{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:ml-2\/6:hover{
    margin-left     : 33.333333% !important;
  }

  .xl\:hover\:mt-3\/6:hover{
    margin-top     : 50% !important;
  }

  .xl\:hover\:mr-3\/6:hover{
    margin-right     : 50% !important;
  }

  .xl\:hover\:mb-3\/6:hover{
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:ml-3\/6:hover{
    margin-left     : 50% !important;
  }

  .xl\:hover\:mt-4\/6:hover{
    margin-top     : 66.666667% !important;
  }

  .xl\:hover\:mr-4\/6:hover{
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:mb-4\/6:hover{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:ml-4\/6:hover{
    margin-left     : 66.666667% !important;
  }

  .xl\:hover\:mt-5\/6:hover{
    margin-top     : 83.333333% !important;
  }

  .xl\:hover\:mr-5\/6:hover{
    margin-right     : 83.333333% !important;
  }

  .xl\:hover\:mb-5\/6:hover{
    margin-bottom     : 83.333333% !important;
  }

  .xl\:hover\:ml-5\/6:hover{
    margin-left     : 83.333333% !important;
  }

  .xl\:hover\:mt-1\/12:hover{
    margin-top     : 8.333333% !important;
  }

  .xl\:hover\:mr-1\/12:hover{
    margin-right     : 8.333333% !important;
  }

  .xl\:hover\:mb-1\/12:hover{
    margin-bottom     : 8.333333% !important;
  }

  .xl\:hover\:ml-1\/12:hover{
    margin-left     : 8.333333% !important;
  }

  .xl\:hover\:mt-2\/12:hover{
    margin-top     : 16.666667% !important;
  }

  .xl\:hover\:mr-2\/12:hover{
    margin-right     : 16.666667% !important;
  }

  .xl\:hover\:mb-2\/12:hover{
    margin-bottom     : 16.666667% !important;
  }

  .xl\:hover\:ml-2\/12:hover{
    margin-left     : 16.666667% !important;
  }

  .xl\:hover\:mt-3\/12:hover{
    margin-top     : 25% !important;
  }

  .xl\:hover\:mr-3\/12:hover{
    margin-right     : 25% !important;
  }

  .xl\:hover\:mb-3\/12:hover{
    margin-bottom     : 25% !important;
  }

  .xl\:hover\:ml-3\/12:hover{
    margin-left     : 25% !important;
  }

  .xl\:hover\:mt-4\/12:hover{
    margin-top     : 33.333333% !important;
  }

  .xl\:hover\:mr-4\/12:hover{
    margin-right     : 33.333333% !important;
  }

  .xl\:hover\:mb-4\/12:hover{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:hover\:ml-4\/12:hover{
    margin-left     : 33.333333% !important;
  }

  .xl\:hover\:mt-5\/12:hover{
    margin-top     : 41.666667% !important;
  }

  .xl\:hover\:mr-5\/12:hover{
    margin-right     : 41.666667% !important;
  }

  .xl\:hover\:mb-5\/12:hover{
    margin-bottom     : 41.666667% !important;
  }

  .xl\:hover\:ml-5\/12:hover{
    margin-left     : 41.666667% !important;
  }

  .xl\:hover\:mt-6\/12:hover{
    margin-top     : 50% !important;
  }

  .xl\:hover\:mr-6\/12:hover{
    margin-right     : 50% !important;
  }

  .xl\:hover\:mb-6\/12:hover{
    margin-bottom     : 50% !important;
  }

  .xl\:hover\:ml-6\/12:hover{
    margin-left     : 50% !important;
  }

  .xl\:hover\:mt-7\/12:hover{
    margin-top     : 58.333333% !important;
  }

  .xl\:hover\:mr-7\/12:hover{
    margin-right     : 58.333333% !important;
  }

  .xl\:hover\:mb-7\/12:hover{
    margin-bottom     : 58.333333% !important;
  }

  .xl\:hover\:ml-7\/12:hover{
    margin-left     : 58.333333% !important;
  }

  .xl\:hover\:mt-8\/12:hover{
    margin-top     : 66.666667% !important;
  }

  .xl\:hover\:mr-8\/12:hover{
    margin-right     : 66.666667% !important;
  }

  .xl\:hover\:mb-8\/12:hover{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:hover\:ml-8\/12:hover{
    margin-left     : 66.666667% !important;
  }

  .xl\:hover\:mt-9\/12:hover{
    margin-top     : 75% !important;
  }

  .xl\:hover\:mr-9\/12:hover{
    margin-right     : 75% !important;
  }

  .xl\:hover\:mb-9\/12:hover{
    margin-bottom     : 75% !important;
  }

  .xl\:hover\:ml-9\/12:hover{
    margin-left     : 75% !important;
  }

  .xl\:hover\:mt-10\/12:hover{
    margin-top     : 83.333333% !important;
  }

  .xl\:hover\:mr-10\/12:hover{
    margin-right     : 83.333333% !important;
  }

  .xl\:hover\:mb-10\/12:hover{
    margin-bottom     : 83.333333% !important;
  }

  .xl\:hover\:ml-10\/12:hover{
    margin-left     : 83.333333% !important;
  }

  .xl\:hover\:mt-11\/12:hover{
    margin-top     : 91.666667% !important;
  }

  .xl\:hover\:mr-11\/12:hover{
    margin-right     : 91.666667% !important;
  }

  .xl\:hover\:mb-11\/12:hover{
    margin-bottom     : 91.666667% !important;
  }

  .xl\:hover\:ml-11\/12:hover{
    margin-left     : 91.666667% !important;
  }

  .xl\:hover\:mt-full:hover{
    margin-top     : 100% !important;
  }

  .xl\:hover\:mr-full:hover{
    margin-right     : 100% !important;
  }

  .xl\:hover\:mb-full:hover{
    margin-bottom     : 100% !important;
  }

  .xl\:hover\:ml-full:hover{
    margin-left     : 100% !important;
  }

  .xl\:hover\:-mt-1:hover{
    margin-top     : -0.25rem !important;
  }

  .xl\:hover\:-mr-1:hover{
    margin-right     : -0.25rem !important;
  }

  .xl\:hover\:-mb-1:hover{
    margin-bottom     : -0.25rem !important;
  }

  .xl\:hover\:-ml-1:hover{
    margin-left     : -0.25rem !important;
  }

  .xl\:hover\:-mt-2:hover{
    margin-top     : -0.5rem !important;
  }

  .xl\:hover\:-mr-2:hover{
    margin-right     : -0.5rem !important;
  }

  .xl\:hover\:-mb-2:hover{
    margin-bottom     : -0.5rem !important;
  }

  .xl\:hover\:-ml-2:hover{
    margin-left     : -0.5rem !important;
  }

  .xl\:hover\:-mt-3:hover{
    margin-top     : -0.75rem !important;
  }

  .xl\:hover\:-mr-3:hover{
    margin-right     : -0.75rem !important;
  }

  .xl\:hover\:-mb-3:hover{
    margin-bottom     : -0.75rem !important;
  }

  .xl\:hover\:-ml-3:hover{
    margin-left     : -0.75rem !important;
  }

  .xl\:hover\:-mt-4:hover{
    margin-top     : -1rem !important;
  }

  .xl\:hover\:-mr-4:hover{
    margin-right     : -1rem !important;
  }

  .xl\:hover\:-mb-4:hover{
    margin-bottom     : -1rem !important;
  }

  .xl\:hover\:-ml-4:hover{
    margin-left     : -1rem !important;
  }

  .xl\:hover\:-mt-5:hover{
    margin-top     : -1.25rem !important;
  }

  .xl\:hover\:-mr-5:hover{
    margin-right     : -1.25rem !important;
  }

  .xl\:hover\:-mb-5:hover{
    margin-bottom     : -1.25rem !important;
  }

  .xl\:hover\:-ml-5:hover{
    margin-left     : -1.25rem !important;
  }

  .xl\:hover\:-mt-6:hover{
    margin-top     : -1.5rem !important;
  }

  .xl\:hover\:-mr-6:hover{
    margin-right     : -1.5rem !important;
  }

  .xl\:hover\:-mb-6:hover{
    margin-bottom     : -1.5rem !important;
  }

  .xl\:hover\:-ml-6:hover{
    margin-left     : -1.5rem !important;
  }

  .xl\:hover\:-mt-7:hover{
    margin-top     : -1.75rem !important;
  }

  .xl\:hover\:-mr-7:hover{
    margin-right     : -1.75rem !important;
  }

  .xl\:hover\:-mb-7:hover{
    margin-bottom     : -1.75rem !important;
  }

  .xl\:hover\:-ml-7:hover{
    margin-left     : -1.75rem !important;
  }

  .xl\:hover\:-mt-8:hover{
    margin-top     : -2rem !important;
  }

  .xl\:hover\:-mr-8:hover{
    margin-right     : -2rem !important;
  }

  .xl\:hover\:-mb-8:hover{
    margin-bottom     : -2rem !important;
  }

  .xl\:hover\:-ml-8:hover{
    margin-left     : -2rem !important;
  }

  .xl\:hover\:-mt-9:hover{
    margin-top     : -2.25rem !important;
  }

  .xl\:hover\:-mr-9:hover{
    margin-right     : -2.25rem !important;
  }

  .xl\:hover\:-mb-9:hover{
    margin-bottom     : -2.25rem !important;
  }

  .xl\:hover\:-ml-9:hover{
    margin-left     : -2.25rem !important;
  }

  .xl\:hover\:-mt-10:hover{
    margin-top     : -2.5rem !important;
  }

  .xl\:hover\:-mr-10:hover{
    margin-right     : -2.5rem !important;
  }

  .xl\:hover\:-mb-10:hover{
    margin-bottom     : -2.5rem !important;
  }

  .xl\:hover\:-ml-10:hover{
    margin-left     : -2.5rem !important;
  }

  .xl\:hover\:-mt-11:hover{
    margin-top     : -2.75rem !important;
  }

  .xl\:hover\:-mr-11:hover{
    margin-right     : -2.75rem !important;
  }

  .xl\:hover\:-mb-11:hover{
    margin-bottom     : -2.75rem !important;
  }

  .xl\:hover\:-ml-11:hover{
    margin-left     : -2.75rem !important;
  }

  .xl\:hover\:-mt-12:hover{
    margin-top     : -3rem !important;
  }

  .xl\:hover\:-mr-12:hover{
    margin-right     : -3rem !important;
  }

  .xl\:hover\:-mb-12:hover{
    margin-bottom     : -3rem !important;
  }

  .xl\:hover\:-ml-12:hover{
    margin-left     : -3rem !important;
  }

  .xl\:hover\:-mt-13:hover{
    margin-top     : -3.25rem !important;
  }

  .xl\:hover\:-mr-13:hover{
    margin-right     : -3.25rem !important;
  }

  .xl\:hover\:-mb-13:hover{
    margin-bottom     : -3.25rem !important;
  }

  .xl\:hover\:-ml-13:hover{
    margin-left     : -3.25rem !important;
  }

  .xl\:hover\:-mt-14:hover{
    margin-top     : -3.5rem !important;
  }

  .xl\:hover\:-mr-14:hover{
    margin-right     : -3.5rem !important;
  }

  .xl\:hover\:-mb-14:hover{
    margin-bottom     : -3.5rem !important;
  }

  .xl\:hover\:-ml-14:hover{
    margin-left     : -3.5rem !important;
  }

  .xl\:hover\:-mt-15:hover{
    margin-top     : -3.75rem !important;
  }

  .xl\:hover\:-mr-15:hover{
    margin-right     : -3.75rem !important;
  }

  .xl\:hover\:-mb-15:hover{
    margin-bottom     : -3.75rem !important;
  }

  .xl\:hover\:-ml-15:hover{
    margin-left     : -3.75rem !important;
  }

  .xl\:hover\:-mt-16:hover{
    margin-top     : -4rem !important;
  }

  .xl\:hover\:-mr-16:hover{
    margin-right     : -4rem !important;
  }

  .xl\:hover\:-mb-16:hover{
    margin-bottom     : -4rem !important;
  }

  .xl\:hover\:-ml-16:hover{
    margin-left     : -4rem !important;
  }

  .xl\:hover\:-mt-20:hover{
    margin-top     : -5rem !important;
  }

  .xl\:hover\:-mr-20:hover{
    margin-right     : -5rem !important;
  }

  .xl\:hover\:-mb-20:hover{
    margin-bottom     : -5rem !important;
  }

  .xl\:hover\:-ml-20:hover{
    margin-left     : -5rem !important;
  }

  .xl\:hover\:-mt-24:hover{
    margin-top     : -6rem !important;
  }

  .xl\:hover\:-mr-24:hover{
    margin-right     : -6rem !important;
  }

  .xl\:hover\:-mb-24:hover{
    margin-bottom     : -6rem !important;
  }

  .xl\:hover\:-ml-24:hover{
    margin-left     : -6rem !important;
  }

  .xl\:hover\:-mt-28:hover{
    margin-top     : -7rem !important;
  }

  .xl\:hover\:-mr-28:hover{
    margin-right     : -7rem !important;
  }

  .xl\:hover\:-mb-28:hover{
    margin-bottom     : -7rem !important;
  }

  .xl\:hover\:-ml-28:hover{
    margin-left     : -7rem !important;
  }

  .xl\:hover\:-mt-32:hover{
    margin-top     : -8rem !important;
  }

  .xl\:hover\:-mr-32:hover{
    margin-right     : -8rem !important;
  }

  .xl\:hover\:-mb-32:hover{
    margin-bottom     : -8rem !important;
  }

  .xl\:hover\:-ml-32:hover{
    margin-left     : -8rem !important;
  }

  .xl\:hover\:-mt-36:hover{
    margin-top     : -9rem !important;
  }

  .xl\:hover\:-mr-36:hover{
    margin-right     : -9rem !important;
  }

  .xl\:hover\:-mb-36:hover{
    margin-bottom     : -9rem !important;
  }

  .xl\:hover\:-ml-36:hover{
    margin-left     : -9rem !important;
  }

  .xl\:hover\:-mt-40:hover{
    margin-top     : -10rem !important;
  }

  .xl\:hover\:-mr-40:hover{
    margin-right     : -10rem !important;
  }

  .xl\:hover\:-mb-40:hover{
    margin-bottom     : -10rem !important;
  }

  .xl\:hover\:-ml-40:hover{
    margin-left     : -10rem !important;
  }

  .xl\:hover\:-mt-44:hover{
    margin-top     : -11rem !important;
  }

  .xl\:hover\:-mr-44:hover{
    margin-right     : -11rem !important;
  }

  .xl\:hover\:-mb-44:hover{
    margin-bottom     : -11rem !important;
  }

  .xl\:hover\:-ml-44:hover{
    margin-left     : -11rem !important;
  }

  .xl\:hover\:-mt-48:hover{
    margin-top     : -12rem !important;
  }

  .xl\:hover\:-mr-48:hover{
    margin-right     : -12rem !important;
  }

  .xl\:hover\:-mb-48:hover{
    margin-bottom     : -12rem !important;
  }

  .xl\:hover\:-ml-48:hover{
    margin-left     : -12rem !important;
  }

  .xl\:hover\:-mt-52:hover{
    margin-top     : -13rem !important;
  }

  .xl\:hover\:-mr-52:hover{
    margin-right     : -13rem !important;
  }

  .xl\:hover\:-mb-52:hover{
    margin-bottom     : -13rem !important;
  }

  .xl\:hover\:-ml-52:hover{
    margin-left     : -13rem !important;
  }

  .xl\:hover\:-mt-56:hover{
    margin-top     : -14rem !important;
  }

  .xl\:hover\:-mr-56:hover{
    margin-right     : -14rem !important;
  }

  .xl\:hover\:-mb-56:hover{
    margin-bottom     : -14rem !important;
  }

  .xl\:hover\:-ml-56:hover{
    margin-left     : -14rem !important;
  }

  .xl\:hover\:-mt-60:hover{
    margin-top     : -15rem !important;
  }

  .xl\:hover\:-mr-60:hover{
    margin-right     : -15rem !important;
  }

  .xl\:hover\:-mb-60:hover{
    margin-bottom     : -15rem !important;
  }

  .xl\:hover\:-ml-60:hover{
    margin-left     : -15rem !important;
  }

  .xl\:hover\:-mt-64:hover{
    margin-top     : -16rem !important;
  }

  .xl\:hover\:-mr-64:hover{
    margin-right     : -16rem !important;
  }

  .xl\:hover\:-mb-64:hover{
    margin-bottom     : -16rem !important;
  }

  .xl\:hover\:-ml-64:hover{
    margin-left     : -16rem !important;
  }

  .xl\:hover\:-mt-72:hover{
    margin-top     : -18rem !important;
  }

  .xl\:hover\:-mr-72:hover{
    margin-right     : -18rem !important;
  }

  .xl\:hover\:-mb-72:hover{
    margin-bottom     : -18rem !important;
  }

  .xl\:hover\:-ml-72:hover{
    margin-left     : -18rem !important;
  }

  .xl\:hover\:-mt-80:hover{
    margin-top     : -20rem !important;
  }

  .xl\:hover\:-mr-80:hover{
    margin-right     : -20rem !important;
  }

  .xl\:hover\:-mb-80:hover{
    margin-bottom     : -20rem !important;
  }

  .xl\:hover\:-ml-80:hover{
    margin-left     : -20rem !important;
  }

  .xl\:hover\:-mt-96:hover{
    margin-top     : -24rem !important;
  }

  .xl\:hover\:-mr-96:hover{
    margin-right     : -24rem !important;
  }

  .xl\:hover\:-mb-96:hover{
    margin-bottom     : -24rem !important;
  }

  .xl\:hover\:-ml-96:hover{
    margin-left     : -24rem !important;
  }

  .xl\:hover\:-mt-px:hover{
    margin-top     : -1px !important;
  }

  .xl\:hover\:-mr-px:hover{
    margin-right     : -1px !important;
  }

  .xl\:hover\:-mb-px:hover{
    margin-bottom     : -1px !important;
  }

  .xl\:hover\:-ml-px:hover{
    margin-left     : -1px !important;
  }

  .xl\:hover\:-mt-0\.5:hover{
    margin-top     : -0.125rem !important;
  }

  .xl\:hover\:-mr-0\.5:hover{
    margin-right     : -0.125rem !important;
  }

  .xl\:hover\:-mb-0\.5:hover{
    margin-bottom     : -0.125rem !important;
  }

  .xl\:hover\:-ml-0\.5:hover{
    margin-left     : -0.125rem !important;
  }

  .xl\:hover\:-mt-1\.5:hover{
    margin-top     : -0.375rem !important;
  }

  .xl\:hover\:-mr-1\.5:hover{
    margin-right     : -0.375rem !important;
  }

  .xl\:hover\:-mb-1\.5:hover{
    margin-bottom     : -0.375rem !important;
  }

  .xl\:hover\:-ml-1\.5:hover{
    margin-left     : -0.375rem !important;
  }

  .xl\:hover\:-mt-2\.5:hover{
    margin-top     : -0.625rem !important;
  }

  .xl\:hover\:-mr-2\.5:hover{
    margin-right     : -0.625rem !important;
  }

  .xl\:hover\:-mb-2\.5:hover{
    margin-bottom     : -0.625rem !important;
  }

  .xl\:hover\:-ml-2\.5:hover{
    margin-left     : -0.625rem !important;
  }

  .xl\:hover\:-mt-3\.5:hover{
    margin-top     : -0.875rem !important;
  }

  .xl\:hover\:-mr-3\.5:hover{
    margin-right     : -0.875rem !important;
  }

  .xl\:hover\:-mb-3\.5:hover{
    margin-bottom     : -0.875rem !important;
  }

  .xl\:hover\:-ml-3\.5:hover{
    margin-left     : -0.875rem !important;
  }

  .xl\:hover\:-mt-1\/2:hover{
    margin-top     : -50% !important;
  }

  .xl\:hover\:-mr-1\/2:hover{
    margin-right     : -50% !important;
  }

  .xl\:hover\:-mb-1\/2:hover{
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-ml-1\/2:hover{
    margin-left     : -50% !important;
  }

  .xl\:hover\:-mt-1\/3:hover{
    margin-top     : -33.33333% !important;
  }

  .xl\:hover\:-mr-1\/3:hover{
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-mb-1\/3:hover{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-ml-1\/3:hover{
    margin-left     : -33.33333% !important;
  }

  .xl\:hover\:-mt-2\/3:hover{
    margin-top     : -66.66667% !important;
  }

  .xl\:hover\:-mr-2\/3:hover{
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-mb-2\/3:hover{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-ml-2\/3:hover{
    margin-left     : -66.66667% !important;
  }

  .xl\:hover\:-mt-1\/4:hover{
    margin-top     : -25% !important;
  }

  .xl\:hover\:-mr-1\/4:hover{
    margin-right     : -25% !important;
  }

  .xl\:hover\:-mb-1\/4:hover{
    margin-bottom     : -25% !important;
  }

  .xl\:hover\:-ml-1\/4:hover{
    margin-left     : -25% !important;
  }

  .xl\:hover\:-mt-2\/4:hover{
    margin-top     : -50% !important;
  }

  .xl\:hover\:-mr-2\/4:hover{
    margin-right     : -50% !important;
  }

  .xl\:hover\:-mb-2\/4:hover{
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-ml-2\/4:hover{
    margin-left     : -50% !important;
  }

  .xl\:hover\:-mt-3\/4:hover{
    margin-top     : -75% !important;
  }

  .xl\:hover\:-mr-3\/4:hover{
    margin-right     : -75% !important;
  }

  .xl\:hover\:-mb-3\/4:hover{
    margin-bottom     : -75% !important;
  }

  .xl\:hover\:-ml-3\/4:hover{
    margin-left     : -75% !important;
  }

  .xl\:hover\:-mt-1\/5:hover{
    margin-top     : -20% !important;
  }

  .xl\:hover\:-mr-1\/5:hover{
    margin-right     : -20% !important;
  }

  .xl\:hover\:-mb-1\/5:hover{
    margin-bottom     : -20% !important;
  }

  .xl\:hover\:-ml-1\/5:hover{
    margin-left     : -20% !important;
  }

  .xl\:hover\:-mt-2\/5:hover{
    margin-top     : -40% !important;
  }

  .xl\:hover\:-mr-2\/5:hover{
    margin-right     : -40% !important;
  }

  .xl\:hover\:-mb-2\/5:hover{
    margin-bottom     : -40% !important;
  }

  .xl\:hover\:-ml-2\/5:hover{
    margin-left     : -40% !important;
  }

  .xl\:hover\:-mt-3\/5:hover{
    margin-top     : -60% !important;
  }

  .xl\:hover\:-mr-3\/5:hover{
    margin-right     : -60% !important;
  }

  .xl\:hover\:-mb-3\/5:hover{
    margin-bottom     : -60% !important;
  }

  .xl\:hover\:-ml-3\/5:hover{
    margin-left     : -60% !important;
  }

  .xl\:hover\:-mt-4\/5:hover{
    margin-top     : -80% !important;
  }

  .xl\:hover\:-mr-4\/5:hover{
    margin-right     : -80% !important;
  }

  .xl\:hover\:-mb-4\/5:hover{
    margin-bottom     : -80% !important;
  }

  .xl\:hover\:-ml-4\/5:hover{
    margin-left     : -80% !important;
  }

  .xl\:hover\:-mt-1\/6:hover{
    margin-top     : -16.66667% !important;
  }

  .xl\:hover\:-mr-1\/6:hover{
    margin-right     : -16.66667% !important;
  }

  .xl\:hover\:-mb-1\/6:hover{
    margin-bottom     : -16.66667% !important;
  }

  .xl\:hover\:-ml-1\/6:hover{
    margin-left     : -16.66667% !important;
  }

  .xl\:hover\:-mt-2\/6:hover{
    margin-top     : -33.33333% !important;
  }

  .xl\:hover\:-mr-2\/6:hover{
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-mb-2\/6:hover{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-ml-2\/6:hover{
    margin-left     : -33.33333% !important;
  }

  .xl\:hover\:-mt-3\/6:hover{
    margin-top     : -50% !important;
  }

  .xl\:hover\:-mr-3\/6:hover{
    margin-right     : -50% !important;
  }

  .xl\:hover\:-mb-3\/6:hover{
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-ml-3\/6:hover{
    margin-left     : -50% !important;
  }

  .xl\:hover\:-mt-4\/6:hover{
    margin-top     : -66.66667% !important;
  }

  .xl\:hover\:-mr-4\/6:hover{
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-mb-4\/6:hover{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-ml-4\/6:hover{
    margin-left     : -66.66667% !important;
  }

  .xl\:hover\:-mt-5\/6:hover{
    margin-top     : -83.33333% !important;
  }

  .xl\:hover\:-mr-5\/6:hover{
    margin-right     : -83.33333% !important;
  }

  .xl\:hover\:-mb-5\/6:hover{
    margin-bottom     : -83.33333% !important;
  }

  .xl\:hover\:-ml-5\/6:hover{
    margin-left     : -83.33333% !important;
  }

  .xl\:hover\:-mt-1\/12:hover{
    margin-top     : -8.33333% !important;
  }

  .xl\:hover\:-mr-1\/12:hover{
    margin-right     : -8.33333% !important;
  }

  .xl\:hover\:-mb-1\/12:hover{
    margin-bottom     : -8.33333% !important;
  }

  .xl\:hover\:-ml-1\/12:hover{
    margin-left     : -8.33333% !important;
  }

  .xl\:hover\:-mt-2\/12:hover{
    margin-top     : -16.66667% !important;
  }

  .xl\:hover\:-mr-2\/12:hover{
    margin-right     : -16.66667% !important;
  }

  .xl\:hover\:-mb-2\/12:hover{
    margin-bottom     : -16.66667% !important;
  }

  .xl\:hover\:-ml-2\/12:hover{
    margin-left     : -16.66667% !important;
  }

  .xl\:hover\:-mt-3\/12:hover{
    margin-top     : -25% !important;
  }

  .xl\:hover\:-mr-3\/12:hover{
    margin-right     : -25% !important;
  }

  .xl\:hover\:-mb-3\/12:hover{
    margin-bottom     : -25% !important;
  }

  .xl\:hover\:-ml-3\/12:hover{
    margin-left     : -25% !important;
  }

  .xl\:hover\:-mt-4\/12:hover{
    margin-top     : -33.33333% !important;
  }

  .xl\:hover\:-mr-4\/12:hover{
    margin-right     : -33.33333% !important;
  }

  .xl\:hover\:-mb-4\/12:hover{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:hover\:-ml-4\/12:hover{
    margin-left     : -33.33333% !important;
  }

  .xl\:hover\:-mt-5\/12:hover{
    margin-top     : -41.66667% !important;
  }

  .xl\:hover\:-mr-5\/12:hover{
    margin-right     : -41.66667% !important;
  }

  .xl\:hover\:-mb-5\/12:hover{
    margin-bottom     : -41.66667% !important;
  }

  .xl\:hover\:-ml-5\/12:hover{
    margin-left     : -41.66667% !important;
  }

  .xl\:hover\:-mt-6\/12:hover{
    margin-top     : -50% !important;
  }

  .xl\:hover\:-mr-6\/12:hover{
    margin-right     : -50% !important;
  }

  .xl\:hover\:-mb-6\/12:hover{
    margin-bottom     : -50% !important;
  }

  .xl\:hover\:-ml-6\/12:hover{
    margin-left     : -50% !important;
  }

  .xl\:hover\:-mt-7\/12:hover{
    margin-top     : -58.33333% !important;
  }

  .xl\:hover\:-mr-7\/12:hover{
    margin-right     : -58.33333% !important;
  }

  .xl\:hover\:-mb-7\/12:hover{
    margin-bottom     : -58.33333% !important;
  }

  .xl\:hover\:-ml-7\/12:hover{
    margin-left     : -58.33333% !important;
  }

  .xl\:hover\:-mt-8\/12:hover{
    margin-top     : -66.66667% !important;
  }

  .xl\:hover\:-mr-8\/12:hover{
    margin-right     : -66.66667% !important;
  }

  .xl\:hover\:-mb-8\/12:hover{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:hover\:-ml-8\/12:hover{
    margin-left     : -66.66667% !important;
  }

  .xl\:hover\:-mt-9\/12:hover{
    margin-top     : -75% !important;
  }

  .xl\:hover\:-mr-9\/12:hover{
    margin-right     : -75% !important;
  }

  .xl\:hover\:-mb-9\/12:hover{
    margin-bottom     : -75% !important;
  }

  .xl\:hover\:-ml-9\/12:hover{
    margin-left     : -75% !important;
  }

  .xl\:hover\:-mt-10\/12:hover{
    margin-top     : -83.33333% !important;
  }

  .xl\:hover\:-mr-10\/12:hover{
    margin-right     : -83.33333% !important;
  }

  .xl\:hover\:-mb-10\/12:hover{
    margin-bottom     : -83.33333% !important;
  }

  .xl\:hover\:-ml-10\/12:hover{
    margin-left     : -83.33333% !important;
  }

  .xl\:hover\:-mt-11\/12:hover{
    margin-top     : -91.66667% !important;
  }

  .xl\:hover\:-mr-11\/12:hover{
    margin-right     : -91.66667% !important;
  }

  .xl\:hover\:-mb-11\/12:hover{
    margin-bottom     : -91.66667% !important;
  }

  .xl\:hover\:-ml-11\/12:hover{
    margin-left     : -91.66667% !important;
  }

  .xl\:hover\:-mt-full:hover{
    margin-top     : -100% !important;
  }

  .xl\:hover\:-mr-full:hover{
    margin-right     : -100% !important;
  }

  .xl\:hover\:-mb-full:hover{
    margin-bottom     : -100% !important;
  }

  .xl\:hover\:-ml-full:hover{
    margin-left     : -100% !important;
  }

  .xl\:focus\:m-0:focus{
    margin     : 0 !important;
  }

  .xl\:focus\:m-1:focus{
    margin     : 0.25rem !important;
  }

  .xl\:focus\:m-2:focus{
    margin     : 0.5rem !important;
  }

  .xl\:focus\:m-3:focus{
    margin     : 0.75rem !important;
  }

  .xl\:focus\:m-4:focus{
    margin     : 1rem !important;
  }

  .xl\:focus\:m-5:focus{
    margin     : 1.25rem !important;
  }

  .xl\:focus\:m-6:focus{
    margin     : 1.5rem !important;
  }

  .xl\:focus\:m-7:focus{
    margin     : 1.75rem !important;
  }

  .xl\:focus\:m-8:focus{
    margin     : 2rem !important;
  }

  .xl\:focus\:m-9:focus{
    margin     : 2.25rem !important;
  }

  .xl\:focus\:m-10:focus{
    margin     : 2.5rem !important;
  }

  .xl\:focus\:m-11:focus{
    margin     : 2.75rem !important;
  }

  .xl\:focus\:m-12:focus{
    margin     : 3rem !important;
  }

  .xl\:focus\:m-13:focus{
    margin     : 3.25rem !important;
  }

  .xl\:focus\:m-14:focus{
    margin     : 3.5rem !important;
  }

  .xl\:focus\:m-15:focus{
    margin     : 3.75rem !important;
  }

  .xl\:focus\:m-16:focus{
    margin     : 4rem !important;
  }

  .xl\:focus\:m-20:focus{
    margin     : 5rem !important;
  }

  .xl\:focus\:m-24:focus{
    margin     : 6rem !important;
  }

  .xl\:focus\:m-28:focus{
    margin     : 7rem !important;
  }

  .xl\:focus\:m-32:focus{
    margin     : 8rem !important;
  }

  .xl\:focus\:m-36:focus{
    margin     : 9rem !important;
  }

  .xl\:focus\:m-40:focus{
    margin     : 10rem !important;
  }

  .xl\:focus\:m-44:focus{
    margin     : 11rem !important;
  }

  .xl\:focus\:m-48:focus{
    margin     : 12rem !important;
  }

  .xl\:focus\:m-52:focus{
    margin     : 13rem !important;
  }

  .xl\:focus\:m-56:focus{
    margin     : 14rem !important;
  }

  .xl\:focus\:m-60:focus{
    margin     : 15rem !important;
  }

  .xl\:focus\:m-64:focus{
    margin     : 16rem !important;
  }

  .xl\:focus\:m-72:focus{
    margin     : 18rem !important;
  }

  .xl\:focus\:m-80:focus{
    margin     : 20rem !important;
  }

  .xl\:focus\:m-96:focus{
    margin     : 24rem !important;
  }

  .xl\:focus\:m-auto:focus{
    margin     : auto !important;
  }

  .xl\:focus\:m-px:focus{
    margin     : 1px !important;
  }

  .xl\:focus\:m-0\.5:focus{
    margin     : 0.125rem !important;
  }

  .xl\:focus\:m-1\.5:focus{
    margin     : 0.375rem !important;
  }

  .xl\:focus\:m-2\.5:focus{
    margin     : 0.625rem !important;
  }

  .xl\:focus\:m-3\.5:focus{
    margin     : 0.875rem !important;
  }

  .xl\:focus\:m-1\/2:focus{
    margin     : 50% !important;
  }

  .xl\:focus\:m-1\/3:focus{
    margin     : 33.333333% !important;
  }

  .xl\:focus\:m-2\/3:focus{
    margin     : 66.666667% !important;
  }

  .xl\:focus\:m-1\/4:focus{
    margin     : 25% !important;
  }

  .xl\:focus\:m-2\/4:focus{
    margin     : 50% !important;
  }

  .xl\:focus\:m-3\/4:focus{
    margin     : 75% !important;
  }

  .xl\:focus\:m-1\/5:focus{
    margin     : 20% !important;
  }

  .xl\:focus\:m-2\/5:focus{
    margin     : 40% !important;
  }

  .xl\:focus\:m-3\/5:focus{
    margin     : 60% !important;
  }

  .xl\:focus\:m-4\/5:focus{
    margin     : 80% !important;
  }

  .xl\:focus\:m-1\/6:focus{
    margin     : 16.666667% !important;
  }

  .xl\:focus\:m-2\/6:focus{
    margin     : 33.333333% !important;
  }

  .xl\:focus\:m-3\/6:focus{
    margin     : 50% !important;
  }

  .xl\:focus\:m-4\/6:focus{
    margin     : 66.666667% !important;
  }

  .xl\:focus\:m-5\/6:focus{
    margin     : 83.333333% !important;
  }

  .xl\:focus\:m-1\/12:focus{
    margin     : 8.333333% !important;
  }

  .xl\:focus\:m-2\/12:focus{
    margin     : 16.666667% !important;
  }

  .xl\:focus\:m-3\/12:focus{
    margin     : 25% !important;
  }

  .xl\:focus\:m-4\/12:focus{
    margin     : 33.333333% !important;
  }

  .xl\:focus\:m-5\/12:focus{
    margin     : 41.666667% !important;
  }

  .xl\:focus\:m-6\/12:focus{
    margin     : 50% !important;
  }

  .xl\:focus\:m-7\/12:focus{
    margin     : 58.333333% !important;
  }

  .xl\:focus\:m-8\/12:focus{
    margin     : 66.666667% !important;
  }

  .xl\:focus\:m-9\/12:focus{
    margin     : 75% !important;
  }

  .xl\:focus\:m-10\/12:focus{
    margin     : 83.333333% !important;
  }

  .xl\:focus\:m-11\/12:focus{
    margin     : 91.666667% !important;
  }

  .xl\:focus\:m-full:focus{
    margin     : 100% !important;
  }

  .xl\:focus\:-m-1:focus{
    margin     : -0.25rem !important;
  }

  .xl\:focus\:-m-2:focus{
    margin     : -0.5rem !important;
  }

  .xl\:focus\:-m-3:focus{
    margin     : -0.75rem !important;
  }

  .xl\:focus\:-m-4:focus{
    margin     : -1rem !important;
  }

  .xl\:focus\:-m-5:focus{
    margin     : -1.25rem !important;
  }

  .xl\:focus\:-m-6:focus{
    margin     : -1.5rem !important;
  }

  .xl\:focus\:-m-7:focus{
    margin     : -1.75rem !important;
  }

  .xl\:focus\:-m-8:focus{
    margin     : -2rem !important;
  }

  .xl\:focus\:-m-9:focus{
    margin     : -2.25rem !important;
  }

  .xl\:focus\:-m-10:focus{
    margin     : -2.5rem !important;
  }

  .xl\:focus\:-m-11:focus{
    margin     : -2.75rem !important;
  }

  .xl\:focus\:-m-12:focus{
    margin     : -3rem !important;
  }

  .xl\:focus\:-m-13:focus{
    margin     : -3.25rem !important;
  }

  .xl\:focus\:-m-14:focus{
    margin     : -3.5rem !important;
  }

  .xl\:focus\:-m-15:focus{
    margin     : -3.75rem !important;
  }

  .xl\:focus\:-m-16:focus{
    margin     : -4rem !important;
  }

  .xl\:focus\:-m-20:focus{
    margin     : -5rem !important;
  }

  .xl\:focus\:-m-24:focus{
    margin     : -6rem !important;
  }

  .xl\:focus\:-m-28:focus{
    margin     : -7rem !important;
  }

  .xl\:focus\:-m-32:focus{
    margin     : -8rem !important;
  }

  .xl\:focus\:-m-36:focus{
    margin     : -9rem !important;
  }

  .xl\:focus\:-m-40:focus{
    margin     : -10rem !important;
  }

  .xl\:focus\:-m-44:focus{
    margin     : -11rem !important;
  }

  .xl\:focus\:-m-48:focus{
    margin     : -12rem !important;
  }

  .xl\:focus\:-m-52:focus{
    margin     : -13rem !important;
  }

  .xl\:focus\:-m-56:focus{
    margin     : -14rem !important;
  }

  .xl\:focus\:-m-60:focus{
    margin     : -15rem !important;
  }

  .xl\:focus\:-m-64:focus{
    margin     : -16rem !important;
  }

  .xl\:focus\:-m-72:focus{
    margin     : -18rem !important;
  }

  .xl\:focus\:-m-80:focus{
    margin     : -20rem !important;
  }

  .xl\:focus\:-m-96:focus{
    margin     : -24rem !important;
  }

  .xl\:focus\:-m-px:focus{
    margin     : -1px !important;
  }

  .xl\:focus\:-m-0\.5:focus{
    margin     : -0.125rem !important;
  }

  .xl\:focus\:-m-1\.5:focus{
    margin     : -0.375rem !important;
  }

  .xl\:focus\:-m-2\.5:focus{
    margin     : -0.625rem !important;
  }

  .xl\:focus\:-m-3\.5:focus{
    margin     : -0.875rem !important;
  }

  .xl\:focus\:-m-1\/2:focus{
    margin     : -50% !important;
  }

  .xl\:focus\:-m-1\/3:focus{
    margin     : -33.33333% !important;
  }

  .xl\:focus\:-m-2\/3:focus{
    margin     : -66.66667% !important;
  }

  .xl\:focus\:-m-1\/4:focus{
    margin     : -25% !important;
  }

  .xl\:focus\:-m-2\/4:focus{
    margin     : -50% !important;
  }

  .xl\:focus\:-m-3\/4:focus{
    margin     : -75% !important;
  }

  .xl\:focus\:-m-1\/5:focus{
    margin     : -20% !important;
  }

  .xl\:focus\:-m-2\/5:focus{
    margin     : -40% !important;
  }

  .xl\:focus\:-m-3\/5:focus{
    margin     : -60% !important;
  }

  .xl\:focus\:-m-4\/5:focus{
    margin     : -80% !important;
  }

  .xl\:focus\:-m-1\/6:focus{
    margin     : -16.66667% !important;
  }

  .xl\:focus\:-m-2\/6:focus{
    margin     : -33.33333% !important;
  }

  .xl\:focus\:-m-3\/6:focus{
    margin     : -50% !important;
  }

  .xl\:focus\:-m-4\/6:focus{
    margin     : -66.66667% !important;
  }

  .xl\:focus\:-m-5\/6:focus{
    margin     : -83.33333% !important;
  }

  .xl\:focus\:-m-1\/12:focus{
    margin     : -8.33333% !important;
  }

  .xl\:focus\:-m-2\/12:focus{
    margin     : -16.66667% !important;
  }

  .xl\:focus\:-m-3\/12:focus{
    margin     : -25% !important;
  }

  .xl\:focus\:-m-4\/12:focus{
    margin     : -33.33333% !important;
  }

  .xl\:focus\:-m-5\/12:focus{
    margin     : -41.66667% !important;
  }

  .xl\:focus\:-m-6\/12:focus{
    margin     : -50% !important;
  }

  .xl\:focus\:-m-7\/12:focus{
    margin     : -58.33333% !important;
  }

  .xl\:focus\:-m-8\/12:focus{
    margin     : -66.66667% !important;
  }

  .xl\:focus\:-m-9\/12:focus{
    margin     : -75% !important;
  }

  .xl\:focus\:-m-10\/12:focus{
    margin     : -83.33333% !important;
  }

  .xl\:focus\:-m-11\/12:focus{
    margin     : -91.66667% !important;
  }

  .xl\:focus\:-m-full:focus{
    margin     : -100% !important;
  }

  .xl\:focus\:my-0:focus{
    margin-top     : 0 !important;
    margin-bottom     : 0 !important;
  }

  .xl\:focus\:mx-0:focus{
    margin-left     : 0 !important;
    margin-right     : 0 !important;
  }

  .xl\:focus\:my-1:focus{
    margin-top     : 0.25rem !important;
    margin-bottom     : 0.25rem !important;
  }

  .xl\:focus\:mx-1:focus{
    margin-left     : 0.25rem !important;
    margin-right     : 0.25rem !important;
  }

  .xl\:focus\:my-2:focus{
    margin-top     : 0.5rem !important;
    margin-bottom     : 0.5rem !important;
  }

  .xl\:focus\:mx-2:focus{
    margin-left     : 0.5rem !important;
    margin-right     : 0.5rem !important;
  }

  .xl\:focus\:my-3:focus{
    margin-top     : 0.75rem !important;
    margin-bottom     : 0.75rem !important;
  }

  .xl\:focus\:mx-3:focus{
    margin-left     : 0.75rem !important;
    margin-right     : 0.75rem !important;
  }

  .xl\:focus\:my-4:focus{
    margin-top     : 1rem !important;
    margin-bottom     : 1rem !important;
  }

  .xl\:focus\:mx-4:focus{
    margin-left     : 1rem !important;
    margin-right     : 1rem !important;
  }

  .xl\:focus\:my-5:focus{
    margin-top     : 1.25rem !important;
    margin-bottom     : 1.25rem !important;
  }

  .xl\:focus\:mx-5:focus{
    margin-left     : 1.25rem !important;
    margin-right     : 1.25rem !important;
  }

  .xl\:focus\:my-6:focus{
    margin-top     : 1.5rem !important;
    margin-bottom     : 1.5rem !important;
  }

  .xl\:focus\:mx-6:focus{
    margin-left     : 1.5rem !important;
    margin-right     : 1.5rem !important;
  }

  .xl\:focus\:my-7:focus{
    margin-top     : 1.75rem !important;
    margin-bottom     : 1.75rem !important;
  }

  .xl\:focus\:mx-7:focus{
    margin-left     : 1.75rem !important;
    margin-right     : 1.75rem !important;
  }

  .xl\:focus\:my-8:focus{
    margin-top     : 2rem !important;
    margin-bottom     : 2rem !important;
  }

  .xl\:focus\:mx-8:focus{
    margin-left     : 2rem !important;
    margin-right     : 2rem !important;
  }

  .xl\:focus\:my-9:focus{
    margin-top     : 2.25rem !important;
    margin-bottom     : 2.25rem !important;
  }

  .xl\:focus\:mx-9:focus{
    margin-left     : 2.25rem !important;
    margin-right     : 2.25rem !important;
  }

  .xl\:focus\:my-10:focus{
    margin-top     : 2.5rem !important;
    margin-bottom     : 2.5rem !important;
  }

  .xl\:focus\:mx-10:focus{
    margin-left     : 2.5rem !important;
    margin-right     : 2.5rem !important;
  }

  .xl\:focus\:my-11:focus{
    margin-top     : 2.75rem !important;
    margin-bottom     : 2.75rem !important;
  }

  .xl\:focus\:mx-11:focus{
    margin-left     : 2.75rem !important;
    margin-right     : 2.75rem !important;
  }

  .xl\:focus\:my-12:focus{
    margin-top     : 3rem !important;
    margin-bottom     : 3rem !important;
  }

  .xl\:focus\:mx-12:focus{
    margin-left     : 3rem !important;
    margin-right     : 3rem !important;
  }

  .xl\:focus\:my-13:focus{
    margin-top     : 3.25rem !important;
    margin-bottom     : 3.25rem !important;
  }

  .xl\:focus\:mx-13:focus{
    margin-left     : 3.25rem !important;
    margin-right     : 3.25rem !important;
  }

  .xl\:focus\:my-14:focus{
    margin-top     : 3.5rem !important;
    margin-bottom     : 3.5rem !important;
  }

  .xl\:focus\:mx-14:focus{
    margin-left     : 3.5rem !important;
    margin-right     : 3.5rem !important;
  }

  .xl\:focus\:my-15:focus{
    margin-top     : 3.75rem !important;
    margin-bottom     : 3.75rem !important;
  }

  .xl\:focus\:mx-15:focus{
    margin-left     : 3.75rem !important;
    margin-right     : 3.75rem !important;
  }

  .xl\:focus\:my-16:focus{
    margin-top     : 4rem !important;
    margin-bottom     : 4rem !important;
  }

  .xl\:focus\:mx-16:focus{
    margin-left     : 4rem !important;
    margin-right     : 4rem !important;
  }

  .xl\:focus\:my-20:focus{
    margin-top     : 5rem !important;
    margin-bottom     : 5rem !important;
  }

  .xl\:focus\:mx-20:focus{
    margin-left     : 5rem !important;
    margin-right     : 5rem !important;
  }

  .xl\:focus\:my-24:focus{
    margin-top     : 6rem !important;
    margin-bottom     : 6rem !important;
  }

  .xl\:focus\:mx-24:focus{
    margin-left     : 6rem !important;
    margin-right     : 6rem !important;
  }

  .xl\:focus\:my-28:focus{
    margin-top     : 7rem !important;
    margin-bottom     : 7rem !important;
  }

  .xl\:focus\:mx-28:focus{
    margin-left     : 7rem !important;
    margin-right     : 7rem !important;
  }

  .xl\:focus\:my-32:focus{
    margin-top     : 8rem !important;
    margin-bottom     : 8rem !important;
  }

  .xl\:focus\:mx-32:focus{
    margin-left     : 8rem !important;
    margin-right     : 8rem !important;
  }

  .xl\:focus\:my-36:focus{
    margin-top     : 9rem !important;
    margin-bottom     : 9rem !important;
  }

  .xl\:focus\:mx-36:focus{
    margin-left     : 9rem !important;
    margin-right     : 9rem !important;
  }

  .xl\:focus\:my-40:focus{
    margin-top     : 10rem !important;
    margin-bottom     : 10rem !important;
  }

  .xl\:focus\:mx-40:focus{
    margin-left     : 10rem !important;
    margin-right     : 10rem !important;
  }

  .xl\:focus\:my-44:focus{
    margin-top     : 11rem !important;
    margin-bottom     : 11rem !important;
  }

  .xl\:focus\:mx-44:focus{
    margin-left     : 11rem !important;
    margin-right     : 11rem !important;
  }

  .xl\:focus\:my-48:focus{
    margin-top     : 12rem !important;
    margin-bottom     : 12rem !important;
  }

  .xl\:focus\:mx-48:focus{
    margin-left     : 12rem !important;
    margin-right     : 12rem !important;
  }

  .xl\:focus\:my-52:focus{
    margin-top     : 13rem !important;
    margin-bottom     : 13rem !important;
  }

  .xl\:focus\:mx-52:focus{
    margin-left     : 13rem !important;
    margin-right     : 13rem !important;
  }

  .xl\:focus\:my-56:focus{
    margin-top     : 14rem !important;
    margin-bottom     : 14rem !important;
  }

  .xl\:focus\:mx-56:focus{
    margin-left     : 14rem !important;
    margin-right     : 14rem !important;
  }

  .xl\:focus\:my-60:focus{
    margin-top     : 15rem !important;
    margin-bottom     : 15rem !important;
  }

  .xl\:focus\:mx-60:focus{
    margin-left     : 15rem !important;
    margin-right     : 15rem !important;
  }

  .xl\:focus\:my-64:focus{
    margin-top     : 16rem !important;
    margin-bottom     : 16rem !important;
  }

  .xl\:focus\:mx-64:focus{
    margin-left     : 16rem !important;
    margin-right     : 16rem !important;
  }

  .xl\:focus\:my-72:focus{
    margin-top     : 18rem !important;
    margin-bottom     : 18rem !important;
  }

  .xl\:focus\:mx-72:focus{
    margin-left     : 18rem !important;
    margin-right     : 18rem !important;
  }

  .xl\:focus\:my-80:focus{
    margin-top     : 20rem !important;
    margin-bottom     : 20rem !important;
  }

  .xl\:focus\:mx-80:focus{
    margin-left     : 20rem !important;
    margin-right     : 20rem !important;
  }

  .xl\:focus\:my-96:focus{
    margin-top     : 24rem !important;
    margin-bottom     : 24rem !important;
  }

  .xl\:focus\:mx-96:focus{
    margin-left     : 24rem !important;
    margin-right     : 24rem !important;
  }

  .xl\:focus\:my-auto:focus{
    margin-top     : auto !important;
    margin-bottom     : auto !important;
  }

  .xl\:focus\:mx-auto:focus{
    margin-left     : auto !important;
    margin-right     : auto !important;
  }

  .xl\:focus\:my-px:focus{
    margin-top     : 1px !important;
    margin-bottom     : 1px !important;
  }

  .xl\:focus\:mx-px:focus{
    margin-left     : 1px !important;
    margin-right     : 1px !important;
  }

  .xl\:focus\:my-0\.5:focus{
    margin-top     : 0.125rem !important;
    margin-bottom     : 0.125rem !important;
  }

  .xl\:focus\:mx-0\.5:focus{
    margin-left     : 0.125rem !important;
    margin-right     : 0.125rem !important;
  }

  .xl\:focus\:my-1\.5:focus{
    margin-top     : 0.375rem !important;
    margin-bottom     : 0.375rem !important;
  }

  .xl\:focus\:mx-1\.5:focus{
    margin-left     : 0.375rem !important;
    margin-right     : 0.375rem !important;
  }

  .xl\:focus\:my-2\.5:focus{
    margin-top     : 0.625rem !important;
    margin-bottom     : 0.625rem !important;
  }

  .xl\:focus\:mx-2\.5:focus{
    margin-left     : 0.625rem !important;
    margin-right     : 0.625rem !important;
  }

  .xl\:focus\:my-3\.5:focus{
    margin-top     : 0.875rem !important;
    margin-bottom     : 0.875rem !important;
  }

  .xl\:focus\:mx-3\.5:focus{
    margin-left     : 0.875rem !important;
    margin-right     : 0.875rem !important;
  }

  .xl\:focus\:my-1\/2:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:mx-1\/2:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:focus\:my-1\/3:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:mx-1\/3:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:my-2\/3:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:mx-2\/3:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:my-1\/4:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .xl\:focus\:mx-1\/4:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .xl\:focus\:my-2\/4:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:mx-2\/4:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:focus\:my-3\/4:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .xl\:focus\:mx-3\/4:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .xl\:focus\:my-1\/5:focus{
    margin-top     : 20% !important;
    margin-bottom     : 20% !important;
  }

  .xl\:focus\:mx-1\/5:focus{
    margin-left     : 20% !important;
    margin-right     : 20% !important;
  }

  .xl\:focus\:my-2\/5:focus{
    margin-top     : 40% !important;
    margin-bottom     : 40% !important;
  }

  .xl\:focus\:mx-2\/5:focus{
    margin-left     : 40% !important;
    margin-right     : 40% !important;
  }

  .xl\:focus\:my-3\/5:focus{
    margin-top     : 60% !important;
    margin-bottom     : 60% !important;
  }

  .xl\:focus\:mx-3\/5:focus{
    margin-left     : 60% !important;
    margin-right     : 60% !important;
  }

  .xl\:focus\:my-4\/5:focus{
    margin-top     : 80% !important;
    margin-bottom     : 80% !important;
  }

  .xl\:focus\:mx-4\/5:focus{
    margin-left     : 80% !important;
    margin-right     : 80% !important;
  }

  .xl\:focus\:my-1\/6:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .xl\:focus\:mx-1\/6:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .xl\:focus\:my-2\/6:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:mx-2\/6:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:my-3\/6:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:mx-3\/6:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:focus\:my-4\/6:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:mx-4\/6:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:my-5\/6:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .xl\:focus\:mx-5\/6:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .xl\:focus\:my-1\/12:focus{
    margin-top     : 8.333333% !important;
    margin-bottom     : 8.333333% !important;
  }

  .xl\:focus\:mx-1\/12:focus{
    margin-left     : 8.333333% !important;
    margin-right     : 8.333333% !important;
  }

  .xl\:focus\:my-2\/12:focus{
    margin-top     : 16.666667% !important;
    margin-bottom     : 16.666667% !important;
  }

  .xl\:focus\:mx-2\/12:focus{
    margin-left     : 16.666667% !important;
    margin-right     : 16.666667% !important;
  }

  .xl\:focus\:my-3\/12:focus{
    margin-top     : 25% !important;
    margin-bottom     : 25% !important;
  }

  .xl\:focus\:mx-3\/12:focus{
    margin-left     : 25% !important;
    margin-right     : 25% !important;
  }

  .xl\:focus\:my-4\/12:focus{
    margin-top     : 33.333333% !important;
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:mx-4\/12:focus{
    margin-left     : 33.333333% !important;
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:my-5\/12:focus{
    margin-top     : 41.666667% !important;
    margin-bottom     : 41.666667% !important;
  }

  .xl\:focus\:mx-5\/12:focus{
    margin-left     : 41.666667% !important;
    margin-right     : 41.666667% !important;
  }

  .xl\:focus\:my-6\/12:focus{
    margin-top     : 50% !important;
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:mx-6\/12:focus{
    margin-left     : 50% !important;
    margin-right     : 50% !important;
  }

  .xl\:focus\:my-7\/12:focus{
    margin-top     : 58.333333% !important;
    margin-bottom     : 58.333333% !important;
  }

  .xl\:focus\:mx-7\/12:focus{
    margin-left     : 58.333333% !important;
    margin-right     : 58.333333% !important;
  }

  .xl\:focus\:my-8\/12:focus{
    margin-top     : 66.666667% !important;
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:mx-8\/12:focus{
    margin-left     : 66.666667% !important;
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:my-9\/12:focus{
    margin-top     : 75% !important;
    margin-bottom     : 75% !important;
  }

  .xl\:focus\:mx-9\/12:focus{
    margin-left     : 75% !important;
    margin-right     : 75% !important;
  }

  .xl\:focus\:my-10\/12:focus{
    margin-top     : 83.333333% !important;
    margin-bottom     : 83.333333% !important;
  }

  .xl\:focus\:mx-10\/12:focus{
    margin-left     : 83.333333% !important;
    margin-right     : 83.333333% !important;
  }

  .xl\:focus\:my-11\/12:focus{
    margin-top     : 91.666667% !important;
    margin-bottom     : 91.666667% !important;
  }

  .xl\:focus\:mx-11\/12:focus{
    margin-left     : 91.666667% !important;
    margin-right     : 91.666667% !important;
  }

  .xl\:focus\:my-full:focus{
    margin-top     : 100% !important;
    margin-bottom     : 100% !important;
  }

  .xl\:focus\:mx-full:focus{
    margin-left     : 100% !important;
    margin-right     : 100% !important;
  }

  .xl\:focus\:-my-1:focus{
    margin-top     : -0.25rem !important;
    margin-bottom     : -0.25rem !important;
  }

  .xl\:focus\:-mx-1:focus{
    margin-left     : -0.25rem !important;
    margin-right     : -0.25rem !important;
  }

  .xl\:focus\:-my-2:focus{
    margin-top     : -0.5rem !important;
    margin-bottom     : -0.5rem !important;
  }

  .xl\:focus\:-mx-2:focus{
    margin-left     : -0.5rem !important;
    margin-right     : -0.5rem !important;
  }

  .xl\:focus\:-my-3:focus{
    margin-top     : -0.75rem !important;
    margin-bottom     : -0.75rem !important;
  }

  .xl\:focus\:-mx-3:focus{
    margin-left     : -0.75rem !important;
    margin-right     : -0.75rem !important;
  }

  .xl\:focus\:-my-4:focus{
    margin-top     : -1rem !important;
    margin-bottom     : -1rem !important;
  }

  .xl\:focus\:-mx-4:focus{
    margin-left     : -1rem !important;
    margin-right     : -1rem !important;
  }

  .xl\:focus\:-my-5:focus{
    margin-top     : -1.25rem !important;
    margin-bottom     : -1.25rem !important;
  }

  .xl\:focus\:-mx-5:focus{
    margin-left     : -1.25rem !important;
    margin-right     : -1.25rem !important;
  }

  .xl\:focus\:-my-6:focus{
    margin-top     : -1.5rem !important;
    margin-bottom     : -1.5rem !important;
  }

  .xl\:focus\:-mx-6:focus{
    margin-left     : -1.5rem !important;
    margin-right     : -1.5rem !important;
  }

  .xl\:focus\:-my-7:focus{
    margin-top     : -1.75rem !important;
    margin-bottom     : -1.75rem !important;
  }

  .xl\:focus\:-mx-7:focus{
    margin-left     : -1.75rem !important;
    margin-right     : -1.75rem !important;
  }

  .xl\:focus\:-my-8:focus{
    margin-top     : -2rem !important;
    margin-bottom     : -2rem !important;
  }

  .xl\:focus\:-mx-8:focus{
    margin-left     : -2rem !important;
    margin-right     : -2rem !important;
  }

  .xl\:focus\:-my-9:focus{
    margin-top     : -2.25rem !important;
    margin-bottom     : -2.25rem !important;
  }

  .xl\:focus\:-mx-9:focus{
    margin-left     : -2.25rem !important;
    margin-right     : -2.25rem !important;
  }

  .xl\:focus\:-my-10:focus{
    margin-top     : -2.5rem !important;
    margin-bottom     : -2.5rem !important;
  }

  .xl\:focus\:-mx-10:focus{
    margin-left     : -2.5rem !important;
    margin-right     : -2.5rem !important;
  }

  .xl\:focus\:-my-11:focus{
    margin-top     : -2.75rem !important;
    margin-bottom     : -2.75rem !important;
  }

  .xl\:focus\:-mx-11:focus{
    margin-left     : -2.75rem !important;
    margin-right     : -2.75rem !important;
  }

  .xl\:focus\:-my-12:focus{
    margin-top     : -3rem !important;
    margin-bottom     : -3rem !important;
  }

  .xl\:focus\:-mx-12:focus{
    margin-left     : -3rem !important;
    margin-right     : -3rem !important;
  }

  .xl\:focus\:-my-13:focus{
    margin-top     : -3.25rem !important;
    margin-bottom     : -3.25rem !important;
  }

  .xl\:focus\:-mx-13:focus{
    margin-left     : -3.25rem !important;
    margin-right     : -3.25rem !important;
  }

  .xl\:focus\:-my-14:focus{
    margin-top     : -3.5rem !important;
    margin-bottom     : -3.5rem !important;
  }

  .xl\:focus\:-mx-14:focus{
    margin-left     : -3.5rem !important;
    margin-right     : -3.5rem !important;
  }

  .xl\:focus\:-my-15:focus{
    margin-top     : -3.75rem !important;
    margin-bottom     : -3.75rem !important;
  }

  .xl\:focus\:-mx-15:focus{
    margin-left     : -3.75rem !important;
    margin-right     : -3.75rem !important;
  }

  .xl\:focus\:-my-16:focus{
    margin-top     : -4rem !important;
    margin-bottom     : -4rem !important;
  }

  .xl\:focus\:-mx-16:focus{
    margin-left     : -4rem !important;
    margin-right     : -4rem !important;
  }

  .xl\:focus\:-my-20:focus{
    margin-top     : -5rem !important;
    margin-bottom     : -5rem !important;
  }

  .xl\:focus\:-mx-20:focus{
    margin-left     : -5rem !important;
    margin-right     : -5rem !important;
  }

  .xl\:focus\:-my-24:focus{
    margin-top     : -6rem !important;
    margin-bottom     : -6rem !important;
  }

  .xl\:focus\:-mx-24:focus{
    margin-left     : -6rem !important;
    margin-right     : -6rem !important;
  }

  .xl\:focus\:-my-28:focus{
    margin-top     : -7rem !important;
    margin-bottom     : -7rem !important;
  }

  .xl\:focus\:-mx-28:focus{
    margin-left     : -7rem !important;
    margin-right     : -7rem !important;
  }

  .xl\:focus\:-my-32:focus{
    margin-top     : -8rem !important;
    margin-bottom     : -8rem !important;
  }

  .xl\:focus\:-mx-32:focus{
    margin-left     : -8rem !important;
    margin-right     : -8rem !important;
  }

  .xl\:focus\:-my-36:focus{
    margin-top     : -9rem !important;
    margin-bottom     : -9rem !important;
  }

  .xl\:focus\:-mx-36:focus{
    margin-left     : -9rem !important;
    margin-right     : -9rem !important;
  }

  .xl\:focus\:-my-40:focus{
    margin-top     : -10rem !important;
    margin-bottom     : -10rem !important;
  }

  .xl\:focus\:-mx-40:focus{
    margin-left     : -10rem !important;
    margin-right     : -10rem !important;
  }

  .xl\:focus\:-my-44:focus{
    margin-top     : -11rem !important;
    margin-bottom     : -11rem !important;
  }

  .xl\:focus\:-mx-44:focus{
    margin-left     : -11rem !important;
    margin-right     : -11rem !important;
  }

  .xl\:focus\:-my-48:focus{
    margin-top     : -12rem !important;
    margin-bottom     : -12rem !important;
  }

  .xl\:focus\:-mx-48:focus{
    margin-left     : -12rem !important;
    margin-right     : -12rem !important;
  }

  .xl\:focus\:-my-52:focus{
    margin-top     : -13rem !important;
    margin-bottom     : -13rem !important;
  }

  .xl\:focus\:-mx-52:focus{
    margin-left     : -13rem !important;
    margin-right     : -13rem !important;
  }

  .xl\:focus\:-my-56:focus{
    margin-top     : -14rem !important;
    margin-bottom     : -14rem !important;
  }

  .xl\:focus\:-mx-56:focus{
    margin-left     : -14rem !important;
    margin-right     : -14rem !important;
  }

  .xl\:focus\:-my-60:focus{
    margin-top     : -15rem !important;
    margin-bottom     : -15rem !important;
  }

  .xl\:focus\:-mx-60:focus{
    margin-left     : -15rem !important;
    margin-right     : -15rem !important;
  }

  .xl\:focus\:-my-64:focus{
    margin-top     : -16rem !important;
    margin-bottom     : -16rem !important;
  }

  .xl\:focus\:-mx-64:focus{
    margin-left     : -16rem !important;
    margin-right     : -16rem !important;
  }

  .xl\:focus\:-my-72:focus{
    margin-top     : -18rem !important;
    margin-bottom     : -18rem !important;
  }

  .xl\:focus\:-mx-72:focus{
    margin-left     : -18rem !important;
    margin-right     : -18rem !important;
  }

  .xl\:focus\:-my-80:focus{
    margin-top     : -20rem !important;
    margin-bottom     : -20rem !important;
  }

  .xl\:focus\:-mx-80:focus{
    margin-left     : -20rem !important;
    margin-right     : -20rem !important;
  }

  .xl\:focus\:-my-96:focus{
    margin-top     : -24rem !important;
    margin-bottom     : -24rem !important;
  }

  .xl\:focus\:-mx-96:focus{
    margin-left     : -24rem !important;
    margin-right     : -24rem !important;
  }

  .xl\:focus\:-my-px:focus{
    margin-top     : -1px !important;
    margin-bottom     : -1px !important;
  }

  .xl\:focus\:-mx-px:focus{
    margin-left     : -1px !important;
    margin-right     : -1px !important;
  }

  .xl\:focus\:-my-0\.5:focus{
    margin-top     : -0.125rem !important;
    margin-bottom     : -0.125rem !important;
  }

  .xl\:focus\:-mx-0\.5:focus{
    margin-left     : -0.125rem !important;
    margin-right     : -0.125rem !important;
  }

  .xl\:focus\:-my-1\.5:focus{
    margin-top     : -0.375rem !important;
    margin-bottom     : -0.375rem !important;
  }

  .xl\:focus\:-mx-1\.5:focus{
    margin-left     : -0.375rem !important;
    margin-right     : -0.375rem !important;
  }

  .xl\:focus\:-my-2\.5:focus{
    margin-top     : -0.625rem !important;
    margin-bottom     : -0.625rem !important;
  }

  .xl\:focus\:-mx-2\.5:focus{
    margin-left     : -0.625rem !important;
    margin-right     : -0.625rem !important;
  }

  .xl\:focus\:-my-3\.5:focus{
    margin-top     : -0.875rem !important;
    margin-bottom     : -0.875rem !important;
  }

  .xl\:focus\:-mx-3\.5:focus{
    margin-left     : -0.875rem !important;
    margin-right     : -0.875rem !important;
  }

  .xl\:focus\:-my-1\/2:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-mx-1\/2:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:focus\:-my-1\/3:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-mx-1\/3:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-my-2\/3:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-mx-2\/3:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-my-1\/4:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .xl\:focus\:-mx-1\/4:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .xl\:focus\:-my-2\/4:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-mx-2\/4:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:focus\:-my-3\/4:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .xl\:focus\:-mx-3\/4:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .xl\:focus\:-my-1\/5:focus{
    margin-top     : -20% !important;
    margin-bottom     : -20% !important;
  }

  .xl\:focus\:-mx-1\/5:focus{
    margin-left     : -20% !important;
    margin-right     : -20% !important;
  }

  .xl\:focus\:-my-2\/5:focus{
    margin-top     : -40% !important;
    margin-bottom     : -40% !important;
  }

  .xl\:focus\:-mx-2\/5:focus{
    margin-left     : -40% !important;
    margin-right     : -40% !important;
  }

  .xl\:focus\:-my-3\/5:focus{
    margin-top     : -60% !important;
    margin-bottom     : -60% !important;
  }

  .xl\:focus\:-mx-3\/5:focus{
    margin-left     : -60% !important;
    margin-right     : -60% !important;
  }

  .xl\:focus\:-my-4\/5:focus{
    margin-top     : -80% !important;
    margin-bottom     : -80% !important;
  }

  .xl\:focus\:-mx-4\/5:focus{
    margin-left     : -80% !important;
    margin-right     : -80% !important;
  }

  .xl\:focus\:-my-1\/6:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .xl\:focus\:-mx-1\/6:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .xl\:focus\:-my-2\/6:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-mx-2\/6:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-my-3\/6:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-mx-3\/6:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:focus\:-my-4\/6:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-mx-4\/6:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-my-5\/6:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .xl\:focus\:-mx-5\/6:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .xl\:focus\:-my-1\/12:focus{
    margin-top     : -8.33333% !important;
    margin-bottom     : -8.33333% !important;
  }

  .xl\:focus\:-mx-1\/12:focus{
    margin-left     : -8.33333% !important;
    margin-right     : -8.33333% !important;
  }

  .xl\:focus\:-my-2\/12:focus{
    margin-top     : -16.66667% !important;
    margin-bottom     : -16.66667% !important;
  }

  .xl\:focus\:-mx-2\/12:focus{
    margin-left     : -16.66667% !important;
    margin-right     : -16.66667% !important;
  }

  .xl\:focus\:-my-3\/12:focus{
    margin-top     : -25% !important;
    margin-bottom     : -25% !important;
  }

  .xl\:focus\:-mx-3\/12:focus{
    margin-left     : -25% !important;
    margin-right     : -25% !important;
  }

  .xl\:focus\:-my-4\/12:focus{
    margin-top     : -33.33333% !important;
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-mx-4\/12:focus{
    margin-left     : -33.33333% !important;
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-my-5\/12:focus{
    margin-top     : -41.66667% !important;
    margin-bottom     : -41.66667% !important;
  }

  .xl\:focus\:-mx-5\/12:focus{
    margin-left     : -41.66667% !important;
    margin-right     : -41.66667% !important;
  }

  .xl\:focus\:-my-6\/12:focus{
    margin-top     : -50% !important;
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-mx-6\/12:focus{
    margin-left     : -50% !important;
    margin-right     : -50% !important;
  }

  .xl\:focus\:-my-7\/12:focus{
    margin-top     : -58.33333% !important;
    margin-bottom     : -58.33333% !important;
  }

  .xl\:focus\:-mx-7\/12:focus{
    margin-left     : -58.33333% !important;
    margin-right     : -58.33333% !important;
  }

  .xl\:focus\:-my-8\/12:focus{
    margin-top     : -66.66667% !important;
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-mx-8\/12:focus{
    margin-left     : -66.66667% !important;
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-my-9\/12:focus{
    margin-top     : -75% !important;
    margin-bottom     : -75% !important;
  }

  .xl\:focus\:-mx-9\/12:focus{
    margin-left     : -75% !important;
    margin-right     : -75% !important;
  }

  .xl\:focus\:-my-10\/12:focus{
    margin-top     : -83.33333% !important;
    margin-bottom     : -83.33333% !important;
  }

  .xl\:focus\:-mx-10\/12:focus{
    margin-left     : -83.33333% !important;
    margin-right     : -83.33333% !important;
  }

  .xl\:focus\:-my-11\/12:focus{
    margin-top     : -91.66667% !important;
    margin-bottom     : -91.66667% !important;
  }

  .xl\:focus\:-mx-11\/12:focus{
    margin-left     : -91.66667% !important;
    margin-right     : -91.66667% !important;
  }

  .xl\:focus\:-my-full:focus{
    margin-top     : -100% !important;
    margin-bottom     : -100% !important;
  }

  .xl\:focus\:-mx-full:focus{
    margin-left     : -100% !important;
    margin-right     : -100% !important;
  }

  .xl\:focus\:mt-0:focus{
    margin-top     : 0 !important;
  }

  .xl\:focus\:mr-0:focus{
    margin-right     : 0 !important;
  }

  .xl\:focus\:mb-0:focus{
    margin-bottom     : 0 !important;
  }

  .xl\:focus\:ml-0:focus{
    margin-left     : 0 !important;
  }

  .xl\:focus\:mt-1:focus{
    margin-top     : 0.25rem !important;
  }

  .xl\:focus\:mr-1:focus{
    margin-right     : 0.25rem !important;
  }

  .xl\:focus\:mb-1:focus{
    margin-bottom     : 0.25rem !important;
  }

  .xl\:focus\:ml-1:focus{
    margin-left     : 0.25rem !important;
  }

  .xl\:focus\:mt-2:focus{
    margin-top     : 0.5rem !important;
  }

  .xl\:focus\:mr-2:focus{
    margin-right     : 0.5rem !important;
  }

  .xl\:focus\:mb-2:focus{
    margin-bottom     : 0.5rem !important;
  }

  .xl\:focus\:ml-2:focus{
    margin-left     : 0.5rem !important;
  }

  .xl\:focus\:mt-3:focus{
    margin-top     : 0.75rem !important;
  }

  .xl\:focus\:mr-3:focus{
    margin-right     : 0.75rem !important;
  }

  .xl\:focus\:mb-3:focus{
    margin-bottom     : 0.75rem !important;
  }

  .xl\:focus\:ml-3:focus{
    margin-left     : 0.75rem !important;
  }

  .xl\:focus\:mt-4:focus{
    margin-top     : 1rem !important;
  }

  .xl\:focus\:mr-4:focus{
    margin-right     : 1rem !important;
  }

  .xl\:focus\:mb-4:focus{
    margin-bottom     : 1rem !important;
  }

  .xl\:focus\:ml-4:focus{
    margin-left     : 1rem !important;
  }

  .xl\:focus\:mt-5:focus{
    margin-top     : 1.25rem !important;
  }

  .xl\:focus\:mr-5:focus{
    margin-right     : 1.25rem !important;
  }

  .xl\:focus\:mb-5:focus{
    margin-bottom     : 1.25rem !important;
  }

  .xl\:focus\:ml-5:focus{
    margin-left     : 1.25rem !important;
  }

  .xl\:focus\:mt-6:focus{
    margin-top     : 1.5rem !important;
  }

  .xl\:focus\:mr-6:focus{
    margin-right     : 1.5rem !important;
  }

  .xl\:focus\:mb-6:focus{
    margin-bottom     : 1.5rem !important;
  }

  .xl\:focus\:ml-6:focus{
    margin-left     : 1.5rem !important;
  }

  .xl\:focus\:mt-7:focus{
    margin-top     : 1.75rem !important;
  }

  .xl\:focus\:mr-7:focus{
    margin-right     : 1.75rem !important;
  }

  .xl\:focus\:mb-7:focus{
    margin-bottom     : 1.75rem !important;
  }

  .xl\:focus\:ml-7:focus{
    margin-left     : 1.75rem !important;
  }

  .xl\:focus\:mt-8:focus{
    margin-top     : 2rem !important;
  }

  .xl\:focus\:mr-8:focus{
    margin-right     : 2rem !important;
  }

  .xl\:focus\:mb-8:focus{
    margin-bottom     : 2rem !important;
  }

  .xl\:focus\:ml-8:focus{
    margin-left     : 2rem !important;
  }

  .xl\:focus\:mt-9:focus{
    margin-top     : 2.25rem !important;
  }

  .xl\:focus\:mr-9:focus{
    margin-right     : 2.25rem !important;
  }

  .xl\:focus\:mb-9:focus{
    margin-bottom     : 2.25rem !important;
  }

  .xl\:focus\:ml-9:focus{
    margin-left     : 2.25rem !important;
  }

  .xl\:focus\:mt-10:focus{
    margin-top     : 2.5rem !important;
  }

  .xl\:focus\:mr-10:focus{
    margin-right     : 2.5rem !important;
  }

  .xl\:focus\:mb-10:focus{
    margin-bottom     : 2.5rem !important;
  }

  .xl\:focus\:ml-10:focus{
    margin-left     : 2.5rem !important;
  }

  .xl\:focus\:mt-11:focus{
    margin-top     : 2.75rem !important;
  }

  .xl\:focus\:mr-11:focus{
    margin-right     : 2.75rem !important;
  }

  .xl\:focus\:mb-11:focus{
    margin-bottom     : 2.75rem !important;
  }

  .xl\:focus\:ml-11:focus{
    margin-left     : 2.75rem !important;
  }

  .xl\:focus\:mt-12:focus{
    margin-top     : 3rem !important;
  }

  .xl\:focus\:mr-12:focus{
    margin-right     : 3rem !important;
  }

  .xl\:focus\:mb-12:focus{
    margin-bottom     : 3rem !important;
  }

  .xl\:focus\:ml-12:focus{
    margin-left     : 3rem !important;
  }

  .xl\:focus\:mt-13:focus{
    margin-top     : 3.25rem !important;
  }

  .xl\:focus\:mr-13:focus{
    margin-right     : 3.25rem !important;
  }

  .xl\:focus\:mb-13:focus{
    margin-bottom     : 3.25rem !important;
  }

  .xl\:focus\:ml-13:focus{
    margin-left     : 3.25rem !important;
  }

  .xl\:focus\:mt-14:focus{
    margin-top     : 3.5rem !important;
  }

  .xl\:focus\:mr-14:focus{
    margin-right     : 3.5rem !important;
  }

  .xl\:focus\:mb-14:focus{
    margin-bottom     : 3.5rem !important;
  }

  .xl\:focus\:ml-14:focus{
    margin-left     : 3.5rem !important;
  }

  .xl\:focus\:mt-15:focus{
    margin-top     : 3.75rem !important;
  }

  .xl\:focus\:mr-15:focus{
    margin-right     : 3.75rem !important;
  }

  .xl\:focus\:mb-15:focus{
    margin-bottom     : 3.75rem !important;
  }

  .xl\:focus\:ml-15:focus{
    margin-left     : 3.75rem !important;
  }

  .xl\:focus\:mt-16:focus{
    margin-top     : 4rem !important;
  }

  .xl\:focus\:mr-16:focus{
    margin-right     : 4rem !important;
  }

  .xl\:focus\:mb-16:focus{
    margin-bottom     : 4rem !important;
  }

  .xl\:focus\:ml-16:focus{
    margin-left     : 4rem !important;
  }

  .xl\:focus\:mt-20:focus{
    margin-top     : 5rem !important;
  }

  .xl\:focus\:mr-20:focus{
    margin-right     : 5rem !important;
  }

  .xl\:focus\:mb-20:focus{
    margin-bottom     : 5rem !important;
  }

  .xl\:focus\:ml-20:focus{
    margin-left     : 5rem !important;
  }

  .xl\:focus\:mt-24:focus{
    margin-top     : 6rem !important;
  }

  .xl\:focus\:mr-24:focus{
    margin-right     : 6rem !important;
  }

  .xl\:focus\:mb-24:focus{
    margin-bottom     : 6rem !important;
  }

  .xl\:focus\:ml-24:focus{
    margin-left     : 6rem !important;
  }

  .xl\:focus\:mt-28:focus{
    margin-top     : 7rem !important;
  }

  .xl\:focus\:mr-28:focus{
    margin-right     : 7rem !important;
  }

  .xl\:focus\:mb-28:focus{
    margin-bottom     : 7rem !important;
  }

  .xl\:focus\:ml-28:focus{
    margin-left     : 7rem !important;
  }

  .xl\:focus\:mt-32:focus{
    margin-top     : 8rem !important;
  }

  .xl\:focus\:mr-32:focus{
    margin-right     : 8rem !important;
  }

  .xl\:focus\:mb-32:focus{
    margin-bottom     : 8rem !important;
  }

  .xl\:focus\:ml-32:focus{
    margin-left     : 8rem !important;
  }

  .xl\:focus\:mt-36:focus{
    margin-top     : 9rem !important;
  }

  .xl\:focus\:mr-36:focus{
    margin-right     : 9rem !important;
  }

  .xl\:focus\:mb-36:focus{
    margin-bottom     : 9rem !important;
  }

  .xl\:focus\:ml-36:focus{
    margin-left     : 9rem !important;
  }

  .xl\:focus\:mt-40:focus{
    margin-top     : 10rem !important;
  }

  .xl\:focus\:mr-40:focus{
    margin-right     : 10rem !important;
  }

  .xl\:focus\:mb-40:focus{
    margin-bottom     : 10rem !important;
  }

  .xl\:focus\:ml-40:focus{
    margin-left     : 10rem !important;
  }

  .xl\:focus\:mt-44:focus{
    margin-top     : 11rem !important;
  }

  .xl\:focus\:mr-44:focus{
    margin-right     : 11rem !important;
  }

  .xl\:focus\:mb-44:focus{
    margin-bottom     : 11rem !important;
  }

  .xl\:focus\:ml-44:focus{
    margin-left     : 11rem !important;
  }

  .xl\:focus\:mt-48:focus{
    margin-top     : 12rem !important;
  }

  .xl\:focus\:mr-48:focus{
    margin-right     : 12rem !important;
  }

  .xl\:focus\:mb-48:focus{
    margin-bottom     : 12rem !important;
  }

  .xl\:focus\:ml-48:focus{
    margin-left     : 12rem !important;
  }

  .xl\:focus\:mt-52:focus{
    margin-top     : 13rem !important;
  }

  .xl\:focus\:mr-52:focus{
    margin-right     : 13rem !important;
  }

  .xl\:focus\:mb-52:focus{
    margin-bottom     : 13rem !important;
  }

  .xl\:focus\:ml-52:focus{
    margin-left     : 13rem !important;
  }

  .xl\:focus\:mt-56:focus{
    margin-top     : 14rem !important;
  }

  .xl\:focus\:mr-56:focus{
    margin-right     : 14rem !important;
  }

  .xl\:focus\:mb-56:focus{
    margin-bottom     : 14rem !important;
  }

  .xl\:focus\:ml-56:focus{
    margin-left     : 14rem !important;
  }

  .xl\:focus\:mt-60:focus{
    margin-top     : 15rem !important;
  }

  .xl\:focus\:mr-60:focus{
    margin-right     : 15rem !important;
  }

  .xl\:focus\:mb-60:focus{
    margin-bottom     : 15rem !important;
  }

  .xl\:focus\:ml-60:focus{
    margin-left     : 15rem !important;
  }

  .xl\:focus\:mt-64:focus{
    margin-top     : 16rem !important;
  }

  .xl\:focus\:mr-64:focus{
    margin-right     : 16rem !important;
  }

  .xl\:focus\:mb-64:focus{
    margin-bottom     : 16rem !important;
  }

  .xl\:focus\:ml-64:focus{
    margin-left     : 16rem !important;
  }

  .xl\:focus\:mt-72:focus{
    margin-top     : 18rem !important;
  }

  .xl\:focus\:mr-72:focus{
    margin-right     : 18rem !important;
  }

  .xl\:focus\:mb-72:focus{
    margin-bottom     : 18rem !important;
  }

  .xl\:focus\:ml-72:focus{
    margin-left     : 18rem !important;
  }

  .xl\:focus\:mt-80:focus{
    margin-top     : 20rem !important;
  }

  .xl\:focus\:mr-80:focus{
    margin-right     : 20rem !important;
  }

  .xl\:focus\:mb-80:focus{
    margin-bottom     : 20rem !important;
  }

  .xl\:focus\:ml-80:focus{
    margin-left     : 20rem !important;
  }

  .xl\:focus\:mt-96:focus{
    margin-top     : 24rem !important;
  }

  .xl\:focus\:mr-96:focus{
    margin-right     : 24rem !important;
  }

  .xl\:focus\:mb-96:focus{
    margin-bottom     : 24rem !important;
  }

  .xl\:focus\:ml-96:focus{
    margin-left     : 24rem !important;
  }

  .xl\:focus\:mt-auto:focus{
    margin-top     : auto !important;
  }

  .xl\:focus\:mr-auto:focus{
    margin-right     : auto !important;
  }

  .xl\:focus\:mb-auto:focus{
    margin-bottom     : auto !important;
  }

  .xl\:focus\:ml-auto:focus{
    margin-left     : auto !important;
  }

  .xl\:focus\:mt-px:focus{
    margin-top     : 1px !important;
  }

  .xl\:focus\:mr-px:focus{
    margin-right     : 1px !important;
  }

  .xl\:focus\:mb-px:focus{
    margin-bottom     : 1px !important;
  }

  .xl\:focus\:ml-px:focus{
    margin-left     : 1px !important;
  }

  .xl\:focus\:mt-0\.5:focus{
    margin-top     : 0.125rem !important;
  }

  .xl\:focus\:mr-0\.5:focus{
    margin-right     : 0.125rem !important;
  }

  .xl\:focus\:mb-0\.5:focus{
    margin-bottom     : 0.125rem !important;
  }

  .xl\:focus\:ml-0\.5:focus{
    margin-left     : 0.125rem !important;
  }

  .xl\:focus\:mt-1\.5:focus{
    margin-top     : 0.375rem !important;
  }

  .xl\:focus\:mr-1\.5:focus{
    margin-right     : 0.375rem !important;
  }

  .xl\:focus\:mb-1\.5:focus{
    margin-bottom     : 0.375rem !important;
  }

  .xl\:focus\:ml-1\.5:focus{
    margin-left     : 0.375rem !important;
  }

  .xl\:focus\:mt-2\.5:focus{
    margin-top     : 0.625rem !important;
  }

  .xl\:focus\:mr-2\.5:focus{
    margin-right     : 0.625rem !important;
  }

  .xl\:focus\:mb-2\.5:focus{
    margin-bottom     : 0.625rem !important;
  }

  .xl\:focus\:ml-2\.5:focus{
    margin-left     : 0.625rem !important;
  }

  .xl\:focus\:mt-3\.5:focus{
    margin-top     : 0.875rem !important;
  }

  .xl\:focus\:mr-3\.5:focus{
    margin-right     : 0.875rem !important;
  }

  .xl\:focus\:mb-3\.5:focus{
    margin-bottom     : 0.875rem !important;
  }

  .xl\:focus\:ml-3\.5:focus{
    margin-left     : 0.875rem !important;
  }

  .xl\:focus\:mt-1\/2:focus{
    margin-top     : 50% !important;
  }

  .xl\:focus\:mr-1\/2:focus{
    margin-right     : 50% !important;
  }

  .xl\:focus\:mb-1\/2:focus{
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:ml-1\/2:focus{
    margin-left     : 50% !important;
  }

  .xl\:focus\:mt-1\/3:focus{
    margin-top     : 33.333333% !important;
  }

  .xl\:focus\:mr-1\/3:focus{
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:mb-1\/3:focus{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:ml-1\/3:focus{
    margin-left     : 33.333333% !important;
  }

  .xl\:focus\:mt-2\/3:focus{
    margin-top     : 66.666667% !important;
  }

  .xl\:focus\:mr-2\/3:focus{
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:mb-2\/3:focus{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:ml-2\/3:focus{
    margin-left     : 66.666667% !important;
  }

  .xl\:focus\:mt-1\/4:focus{
    margin-top     : 25% !important;
  }

  .xl\:focus\:mr-1\/4:focus{
    margin-right     : 25% !important;
  }

  .xl\:focus\:mb-1\/4:focus{
    margin-bottom     : 25% !important;
  }

  .xl\:focus\:ml-1\/4:focus{
    margin-left     : 25% !important;
  }

  .xl\:focus\:mt-2\/4:focus{
    margin-top     : 50% !important;
  }

  .xl\:focus\:mr-2\/4:focus{
    margin-right     : 50% !important;
  }

  .xl\:focus\:mb-2\/4:focus{
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:ml-2\/4:focus{
    margin-left     : 50% !important;
  }

  .xl\:focus\:mt-3\/4:focus{
    margin-top     : 75% !important;
  }

  .xl\:focus\:mr-3\/4:focus{
    margin-right     : 75% !important;
  }

  .xl\:focus\:mb-3\/4:focus{
    margin-bottom     : 75% !important;
  }

  .xl\:focus\:ml-3\/4:focus{
    margin-left     : 75% !important;
  }

  .xl\:focus\:mt-1\/5:focus{
    margin-top     : 20% !important;
  }

  .xl\:focus\:mr-1\/5:focus{
    margin-right     : 20% !important;
  }

  .xl\:focus\:mb-1\/5:focus{
    margin-bottom     : 20% !important;
  }

  .xl\:focus\:ml-1\/5:focus{
    margin-left     : 20% !important;
  }

  .xl\:focus\:mt-2\/5:focus{
    margin-top     : 40% !important;
  }

  .xl\:focus\:mr-2\/5:focus{
    margin-right     : 40% !important;
  }

  .xl\:focus\:mb-2\/5:focus{
    margin-bottom     : 40% !important;
  }

  .xl\:focus\:ml-2\/5:focus{
    margin-left     : 40% !important;
  }

  .xl\:focus\:mt-3\/5:focus{
    margin-top     : 60% !important;
  }

  .xl\:focus\:mr-3\/5:focus{
    margin-right     : 60% !important;
  }

  .xl\:focus\:mb-3\/5:focus{
    margin-bottom     : 60% !important;
  }

  .xl\:focus\:ml-3\/5:focus{
    margin-left     : 60% !important;
  }

  .xl\:focus\:mt-4\/5:focus{
    margin-top     : 80% !important;
  }

  .xl\:focus\:mr-4\/5:focus{
    margin-right     : 80% !important;
  }

  .xl\:focus\:mb-4\/5:focus{
    margin-bottom     : 80% !important;
  }

  .xl\:focus\:ml-4\/5:focus{
    margin-left     : 80% !important;
  }

  .xl\:focus\:mt-1\/6:focus{
    margin-top     : 16.666667% !important;
  }

  .xl\:focus\:mr-1\/6:focus{
    margin-right     : 16.666667% !important;
  }

  .xl\:focus\:mb-1\/6:focus{
    margin-bottom     : 16.666667% !important;
  }

  .xl\:focus\:ml-1\/6:focus{
    margin-left     : 16.666667% !important;
  }

  .xl\:focus\:mt-2\/6:focus{
    margin-top     : 33.333333% !important;
  }

  .xl\:focus\:mr-2\/6:focus{
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:mb-2\/6:focus{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:ml-2\/6:focus{
    margin-left     : 33.333333% !important;
  }

  .xl\:focus\:mt-3\/6:focus{
    margin-top     : 50% !important;
  }

  .xl\:focus\:mr-3\/6:focus{
    margin-right     : 50% !important;
  }

  .xl\:focus\:mb-3\/6:focus{
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:ml-3\/6:focus{
    margin-left     : 50% !important;
  }

  .xl\:focus\:mt-4\/6:focus{
    margin-top     : 66.666667% !important;
  }

  .xl\:focus\:mr-4\/6:focus{
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:mb-4\/6:focus{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:ml-4\/6:focus{
    margin-left     : 66.666667% !important;
  }

  .xl\:focus\:mt-5\/6:focus{
    margin-top     : 83.333333% !important;
  }

  .xl\:focus\:mr-5\/6:focus{
    margin-right     : 83.333333% !important;
  }

  .xl\:focus\:mb-5\/6:focus{
    margin-bottom     : 83.333333% !important;
  }

  .xl\:focus\:ml-5\/6:focus{
    margin-left     : 83.333333% !important;
  }

  .xl\:focus\:mt-1\/12:focus{
    margin-top     : 8.333333% !important;
  }

  .xl\:focus\:mr-1\/12:focus{
    margin-right     : 8.333333% !important;
  }

  .xl\:focus\:mb-1\/12:focus{
    margin-bottom     : 8.333333% !important;
  }

  .xl\:focus\:ml-1\/12:focus{
    margin-left     : 8.333333% !important;
  }

  .xl\:focus\:mt-2\/12:focus{
    margin-top     : 16.666667% !important;
  }

  .xl\:focus\:mr-2\/12:focus{
    margin-right     : 16.666667% !important;
  }

  .xl\:focus\:mb-2\/12:focus{
    margin-bottom     : 16.666667% !important;
  }

  .xl\:focus\:ml-2\/12:focus{
    margin-left     : 16.666667% !important;
  }

  .xl\:focus\:mt-3\/12:focus{
    margin-top     : 25% !important;
  }

  .xl\:focus\:mr-3\/12:focus{
    margin-right     : 25% !important;
  }

  .xl\:focus\:mb-3\/12:focus{
    margin-bottom     : 25% !important;
  }

  .xl\:focus\:ml-3\/12:focus{
    margin-left     : 25% !important;
  }

  .xl\:focus\:mt-4\/12:focus{
    margin-top     : 33.333333% !important;
  }

  .xl\:focus\:mr-4\/12:focus{
    margin-right     : 33.333333% !important;
  }

  .xl\:focus\:mb-4\/12:focus{
    margin-bottom     : 33.333333% !important;
  }

  .xl\:focus\:ml-4\/12:focus{
    margin-left     : 33.333333% !important;
  }

  .xl\:focus\:mt-5\/12:focus{
    margin-top     : 41.666667% !important;
  }

  .xl\:focus\:mr-5\/12:focus{
    margin-right     : 41.666667% !important;
  }

  .xl\:focus\:mb-5\/12:focus{
    margin-bottom     : 41.666667% !important;
  }

  .xl\:focus\:ml-5\/12:focus{
    margin-left     : 41.666667% !important;
  }

  .xl\:focus\:mt-6\/12:focus{
    margin-top     : 50% !important;
  }

  .xl\:focus\:mr-6\/12:focus{
    margin-right     : 50% !important;
  }

  .xl\:focus\:mb-6\/12:focus{
    margin-bottom     : 50% !important;
  }

  .xl\:focus\:ml-6\/12:focus{
    margin-left     : 50% !important;
  }

  .xl\:focus\:mt-7\/12:focus{
    margin-top     : 58.333333% !important;
  }

  .xl\:focus\:mr-7\/12:focus{
    margin-right     : 58.333333% !important;
  }

  .xl\:focus\:mb-7\/12:focus{
    margin-bottom     : 58.333333% !important;
  }

  .xl\:focus\:ml-7\/12:focus{
    margin-left     : 58.333333% !important;
  }

  .xl\:focus\:mt-8\/12:focus{
    margin-top     : 66.666667% !important;
  }

  .xl\:focus\:mr-8\/12:focus{
    margin-right     : 66.666667% !important;
  }

  .xl\:focus\:mb-8\/12:focus{
    margin-bottom     : 66.666667% !important;
  }

  .xl\:focus\:ml-8\/12:focus{
    margin-left     : 66.666667% !important;
  }

  .xl\:focus\:mt-9\/12:focus{
    margin-top     : 75% !important;
  }

  .xl\:focus\:mr-9\/12:focus{
    margin-right     : 75% !important;
  }

  .xl\:focus\:mb-9\/12:focus{
    margin-bottom     : 75% !important;
  }

  .xl\:focus\:ml-9\/12:focus{
    margin-left     : 75% !important;
  }

  .xl\:focus\:mt-10\/12:focus{
    margin-top     : 83.333333% !important;
  }

  .xl\:focus\:mr-10\/12:focus{
    margin-right     : 83.333333% !important;
  }

  .xl\:focus\:mb-10\/12:focus{
    margin-bottom     : 83.333333% !important;
  }

  .xl\:focus\:ml-10\/12:focus{
    margin-left     : 83.333333% !important;
  }

  .xl\:focus\:mt-11\/12:focus{
    margin-top     : 91.666667% !important;
  }

  .xl\:focus\:mr-11\/12:focus{
    margin-right     : 91.666667% !important;
  }

  .xl\:focus\:mb-11\/12:focus{
    margin-bottom     : 91.666667% !important;
  }

  .xl\:focus\:ml-11\/12:focus{
    margin-left     : 91.666667% !important;
  }

  .xl\:focus\:mt-full:focus{
    margin-top     : 100% !important;
  }

  .xl\:focus\:mr-full:focus{
    margin-right     : 100% !important;
  }

  .xl\:focus\:mb-full:focus{
    margin-bottom     : 100% !important;
  }

  .xl\:focus\:ml-full:focus{
    margin-left     : 100% !important;
  }

  .xl\:focus\:-mt-1:focus{
    margin-top     : -0.25rem !important;
  }

  .xl\:focus\:-mr-1:focus{
    margin-right     : -0.25rem !important;
  }

  .xl\:focus\:-mb-1:focus{
    margin-bottom     : -0.25rem !important;
  }

  .xl\:focus\:-ml-1:focus{
    margin-left     : -0.25rem !important;
  }

  .xl\:focus\:-mt-2:focus{
    margin-top     : -0.5rem !important;
  }

  .xl\:focus\:-mr-2:focus{
    margin-right     : -0.5rem !important;
  }

  .xl\:focus\:-mb-2:focus{
    margin-bottom     : -0.5rem !important;
  }

  .xl\:focus\:-ml-2:focus{
    margin-left     : -0.5rem !important;
  }

  .xl\:focus\:-mt-3:focus{
    margin-top     : -0.75rem !important;
  }

  .xl\:focus\:-mr-3:focus{
    margin-right     : -0.75rem !important;
  }

  .xl\:focus\:-mb-3:focus{
    margin-bottom     : -0.75rem !important;
  }

  .xl\:focus\:-ml-3:focus{
    margin-left     : -0.75rem !important;
  }

  .xl\:focus\:-mt-4:focus{
    margin-top     : -1rem !important;
  }

  .xl\:focus\:-mr-4:focus{
    margin-right     : -1rem !important;
  }

  .xl\:focus\:-mb-4:focus{
    margin-bottom     : -1rem !important;
  }

  .xl\:focus\:-ml-4:focus{
    margin-left     : -1rem !important;
  }

  .xl\:focus\:-mt-5:focus{
    margin-top     : -1.25rem !important;
  }

  .xl\:focus\:-mr-5:focus{
    margin-right     : -1.25rem !important;
  }

  .xl\:focus\:-mb-5:focus{
    margin-bottom     : -1.25rem !important;
  }

  .xl\:focus\:-ml-5:focus{
    margin-left     : -1.25rem !important;
  }

  .xl\:focus\:-mt-6:focus{
    margin-top     : -1.5rem !important;
  }

  .xl\:focus\:-mr-6:focus{
    margin-right     : -1.5rem !important;
  }

  .xl\:focus\:-mb-6:focus{
    margin-bottom     : -1.5rem !important;
  }

  .xl\:focus\:-ml-6:focus{
    margin-left     : -1.5rem !important;
  }

  .xl\:focus\:-mt-7:focus{
    margin-top     : -1.75rem !important;
  }

  .xl\:focus\:-mr-7:focus{
    margin-right     : -1.75rem !important;
  }

  .xl\:focus\:-mb-7:focus{
    margin-bottom     : -1.75rem !important;
  }

  .xl\:focus\:-ml-7:focus{
    margin-left     : -1.75rem !important;
  }

  .xl\:focus\:-mt-8:focus{
    margin-top     : -2rem !important;
  }

  .xl\:focus\:-mr-8:focus{
    margin-right     : -2rem !important;
  }

  .xl\:focus\:-mb-8:focus{
    margin-bottom     : -2rem !important;
  }

  .xl\:focus\:-ml-8:focus{
    margin-left     : -2rem !important;
  }

  .xl\:focus\:-mt-9:focus{
    margin-top     : -2.25rem !important;
  }

  .xl\:focus\:-mr-9:focus{
    margin-right     : -2.25rem !important;
  }

  .xl\:focus\:-mb-9:focus{
    margin-bottom     : -2.25rem !important;
  }

  .xl\:focus\:-ml-9:focus{
    margin-left     : -2.25rem !important;
  }

  .xl\:focus\:-mt-10:focus{
    margin-top     : -2.5rem !important;
  }

  .xl\:focus\:-mr-10:focus{
    margin-right     : -2.5rem !important;
  }

  .xl\:focus\:-mb-10:focus{
    margin-bottom     : -2.5rem !important;
  }

  .xl\:focus\:-ml-10:focus{
    margin-left     : -2.5rem !important;
  }

  .xl\:focus\:-mt-11:focus{
    margin-top     : -2.75rem !important;
  }

  .xl\:focus\:-mr-11:focus{
    margin-right     : -2.75rem !important;
  }

  .xl\:focus\:-mb-11:focus{
    margin-bottom     : -2.75rem !important;
  }

  .xl\:focus\:-ml-11:focus{
    margin-left     : -2.75rem !important;
  }

  .xl\:focus\:-mt-12:focus{
    margin-top     : -3rem !important;
  }

  .xl\:focus\:-mr-12:focus{
    margin-right     : -3rem !important;
  }

  .xl\:focus\:-mb-12:focus{
    margin-bottom     : -3rem !important;
  }

  .xl\:focus\:-ml-12:focus{
    margin-left     : -3rem !important;
  }

  .xl\:focus\:-mt-13:focus{
    margin-top     : -3.25rem !important;
  }

  .xl\:focus\:-mr-13:focus{
    margin-right     : -3.25rem !important;
  }

  .xl\:focus\:-mb-13:focus{
    margin-bottom     : -3.25rem !important;
  }

  .xl\:focus\:-ml-13:focus{
    margin-left     : -3.25rem !important;
  }

  .xl\:focus\:-mt-14:focus{
    margin-top     : -3.5rem !important;
  }

  .xl\:focus\:-mr-14:focus{
    margin-right     : -3.5rem !important;
  }

  .xl\:focus\:-mb-14:focus{
    margin-bottom     : -3.5rem !important;
  }

  .xl\:focus\:-ml-14:focus{
    margin-left     : -3.5rem !important;
  }

  .xl\:focus\:-mt-15:focus{
    margin-top     : -3.75rem !important;
  }

  .xl\:focus\:-mr-15:focus{
    margin-right     : -3.75rem !important;
  }

  .xl\:focus\:-mb-15:focus{
    margin-bottom     : -3.75rem !important;
  }

  .xl\:focus\:-ml-15:focus{
    margin-left     : -3.75rem !important;
  }

  .xl\:focus\:-mt-16:focus{
    margin-top     : -4rem !important;
  }

  .xl\:focus\:-mr-16:focus{
    margin-right     : -4rem !important;
  }

  .xl\:focus\:-mb-16:focus{
    margin-bottom     : -4rem !important;
  }

  .xl\:focus\:-ml-16:focus{
    margin-left     : -4rem !important;
  }

  .xl\:focus\:-mt-20:focus{
    margin-top     : -5rem !important;
  }

  .xl\:focus\:-mr-20:focus{
    margin-right     : -5rem !important;
  }

  .xl\:focus\:-mb-20:focus{
    margin-bottom     : -5rem !important;
  }

  .xl\:focus\:-ml-20:focus{
    margin-left     : -5rem !important;
  }

  .xl\:focus\:-mt-24:focus{
    margin-top     : -6rem !important;
  }

  .xl\:focus\:-mr-24:focus{
    margin-right     : -6rem !important;
  }

  .xl\:focus\:-mb-24:focus{
    margin-bottom     : -6rem !important;
  }

  .xl\:focus\:-ml-24:focus{
    margin-left     : -6rem !important;
  }

  .xl\:focus\:-mt-28:focus{
    margin-top     : -7rem !important;
  }

  .xl\:focus\:-mr-28:focus{
    margin-right     : -7rem !important;
  }

  .xl\:focus\:-mb-28:focus{
    margin-bottom     : -7rem !important;
  }

  .xl\:focus\:-ml-28:focus{
    margin-left     : -7rem !important;
  }

  .xl\:focus\:-mt-32:focus{
    margin-top     : -8rem !important;
  }

  .xl\:focus\:-mr-32:focus{
    margin-right     : -8rem !important;
  }

  .xl\:focus\:-mb-32:focus{
    margin-bottom     : -8rem !important;
  }

  .xl\:focus\:-ml-32:focus{
    margin-left     : -8rem !important;
  }

  .xl\:focus\:-mt-36:focus{
    margin-top     : -9rem !important;
  }

  .xl\:focus\:-mr-36:focus{
    margin-right     : -9rem !important;
  }

  .xl\:focus\:-mb-36:focus{
    margin-bottom     : -9rem !important;
  }

  .xl\:focus\:-ml-36:focus{
    margin-left     : -9rem !important;
  }

  .xl\:focus\:-mt-40:focus{
    margin-top     : -10rem !important;
  }

  .xl\:focus\:-mr-40:focus{
    margin-right     : -10rem !important;
  }

  .xl\:focus\:-mb-40:focus{
    margin-bottom     : -10rem !important;
  }

  .xl\:focus\:-ml-40:focus{
    margin-left     : -10rem !important;
  }

  .xl\:focus\:-mt-44:focus{
    margin-top     : -11rem !important;
  }

  .xl\:focus\:-mr-44:focus{
    margin-right     : -11rem !important;
  }

  .xl\:focus\:-mb-44:focus{
    margin-bottom     : -11rem !important;
  }

  .xl\:focus\:-ml-44:focus{
    margin-left     : -11rem !important;
  }

  .xl\:focus\:-mt-48:focus{
    margin-top     : -12rem !important;
  }

  .xl\:focus\:-mr-48:focus{
    margin-right     : -12rem !important;
  }

  .xl\:focus\:-mb-48:focus{
    margin-bottom     : -12rem !important;
  }

  .xl\:focus\:-ml-48:focus{
    margin-left     : -12rem !important;
  }

  .xl\:focus\:-mt-52:focus{
    margin-top     : -13rem !important;
  }

  .xl\:focus\:-mr-52:focus{
    margin-right     : -13rem !important;
  }

  .xl\:focus\:-mb-52:focus{
    margin-bottom     : -13rem !important;
  }

  .xl\:focus\:-ml-52:focus{
    margin-left     : -13rem !important;
  }

  .xl\:focus\:-mt-56:focus{
    margin-top     : -14rem !important;
  }

  .xl\:focus\:-mr-56:focus{
    margin-right     : -14rem !important;
  }

  .xl\:focus\:-mb-56:focus{
    margin-bottom     : -14rem !important;
  }

  .xl\:focus\:-ml-56:focus{
    margin-left     : -14rem !important;
  }

  .xl\:focus\:-mt-60:focus{
    margin-top     : -15rem !important;
  }

  .xl\:focus\:-mr-60:focus{
    margin-right     : -15rem !important;
  }

  .xl\:focus\:-mb-60:focus{
    margin-bottom     : -15rem !important;
  }

  .xl\:focus\:-ml-60:focus{
    margin-left     : -15rem !important;
  }

  .xl\:focus\:-mt-64:focus{
    margin-top     : -16rem !important;
  }

  .xl\:focus\:-mr-64:focus{
    margin-right     : -16rem !important;
  }

  .xl\:focus\:-mb-64:focus{
    margin-bottom     : -16rem !important;
  }

  .xl\:focus\:-ml-64:focus{
    margin-left     : -16rem !important;
  }

  .xl\:focus\:-mt-72:focus{
    margin-top     : -18rem !important;
  }

  .xl\:focus\:-mr-72:focus{
    margin-right     : -18rem !important;
  }

  .xl\:focus\:-mb-72:focus{
    margin-bottom     : -18rem !important;
  }

  .xl\:focus\:-ml-72:focus{
    margin-left     : -18rem !important;
  }

  .xl\:focus\:-mt-80:focus{
    margin-top     : -20rem !important;
  }

  .xl\:focus\:-mr-80:focus{
    margin-right     : -20rem !important;
  }

  .xl\:focus\:-mb-80:focus{
    margin-bottom     : -20rem !important;
  }

  .xl\:focus\:-ml-80:focus{
    margin-left     : -20rem !important;
  }

  .xl\:focus\:-mt-96:focus{
    margin-top     : -24rem !important;
  }

  .xl\:focus\:-mr-96:focus{
    margin-right     : -24rem !important;
  }

  .xl\:focus\:-mb-96:focus{
    margin-bottom     : -24rem !important;
  }

  .xl\:focus\:-ml-96:focus{
    margin-left     : -24rem !important;
  }

  .xl\:focus\:-mt-px:focus{
    margin-top     : -1px !important;
  }

  .xl\:focus\:-mr-px:focus{
    margin-right     : -1px !important;
  }

  .xl\:focus\:-mb-px:focus{
    margin-bottom     : -1px !important;
  }

  .xl\:focus\:-ml-px:focus{
    margin-left     : -1px !important;
  }

  .xl\:focus\:-mt-0\.5:focus{
    margin-top     : -0.125rem !important;
  }

  .xl\:focus\:-mr-0\.5:focus{
    margin-right     : -0.125rem !important;
  }

  .xl\:focus\:-mb-0\.5:focus{
    margin-bottom     : -0.125rem !important;
  }

  .xl\:focus\:-ml-0\.5:focus{
    margin-left     : -0.125rem !important;
  }

  .xl\:focus\:-mt-1\.5:focus{
    margin-top     : -0.375rem !important;
  }

  .xl\:focus\:-mr-1\.5:focus{
    margin-right     : -0.375rem !important;
  }

  .xl\:focus\:-mb-1\.5:focus{
    margin-bottom     : -0.375rem !important;
  }

  .xl\:focus\:-ml-1\.5:focus{
    margin-left     : -0.375rem !important;
  }

  .xl\:focus\:-mt-2\.5:focus{
    margin-top     : -0.625rem !important;
  }

  .xl\:focus\:-mr-2\.5:focus{
    margin-right     : -0.625rem !important;
  }

  .xl\:focus\:-mb-2\.5:focus{
    margin-bottom     : -0.625rem !important;
  }

  .xl\:focus\:-ml-2\.5:focus{
    margin-left     : -0.625rem !important;
  }

  .xl\:focus\:-mt-3\.5:focus{
    margin-top     : -0.875rem !important;
  }

  .xl\:focus\:-mr-3\.5:focus{
    margin-right     : -0.875rem !important;
  }

  .xl\:focus\:-mb-3\.5:focus{
    margin-bottom     : -0.875rem !important;
  }

  .xl\:focus\:-ml-3\.5:focus{
    margin-left     : -0.875rem !important;
  }

  .xl\:focus\:-mt-1\/2:focus{
    margin-top     : -50% !important;
  }

  .xl\:focus\:-mr-1\/2:focus{
    margin-right     : -50% !important;
  }

  .xl\:focus\:-mb-1\/2:focus{
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-ml-1\/2:focus{
    margin-left     : -50% !important;
  }

  .xl\:focus\:-mt-1\/3:focus{
    margin-top     : -33.33333% !important;
  }

  .xl\:focus\:-mr-1\/3:focus{
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-mb-1\/3:focus{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-ml-1\/3:focus{
    margin-left     : -33.33333% !important;
  }

  .xl\:focus\:-mt-2\/3:focus{
    margin-top     : -66.66667% !important;
  }

  .xl\:focus\:-mr-2\/3:focus{
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-mb-2\/3:focus{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-ml-2\/3:focus{
    margin-left     : -66.66667% !important;
  }

  .xl\:focus\:-mt-1\/4:focus{
    margin-top     : -25% !important;
  }

  .xl\:focus\:-mr-1\/4:focus{
    margin-right     : -25% !important;
  }

  .xl\:focus\:-mb-1\/4:focus{
    margin-bottom     : -25% !important;
  }

  .xl\:focus\:-ml-1\/4:focus{
    margin-left     : -25% !important;
  }

  .xl\:focus\:-mt-2\/4:focus{
    margin-top     : -50% !important;
  }

  .xl\:focus\:-mr-2\/4:focus{
    margin-right     : -50% !important;
  }

  .xl\:focus\:-mb-2\/4:focus{
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-ml-2\/4:focus{
    margin-left     : -50% !important;
  }

  .xl\:focus\:-mt-3\/4:focus{
    margin-top     : -75% !important;
  }

  .xl\:focus\:-mr-3\/4:focus{
    margin-right     : -75% !important;
  }

  .xl\:focus\:-mb-3\/4:focus{
    margin-bottom     : -75% !important;
  }

  .xl\:focus\:-ml-3\/4:focus{
    margin-left     : -75% !important;
  }

  .xl\:focus\:-mt-1\/5:focus{
    margin-top     : -20% !important;
  }

  .xl\:focus\:-mr-1\/5:focus{
    margin-right     : -20% !important;
  }

  .xl\:focus\:-mb-1\/5:focus{
    margin-bottom     : -20% !important;
  }

  .xl\:focus\:-ml-1\/5:focus{
    margin-left     : -20% !important;
  }

  .xl\:focus\:-mt-2\/5:focus{
    margin-top     : -40% !important;
  }

  .xl\:focus\:-mr-2\/5:focus{
    margin-right     : -40% !important;
  }

  .xl\:focus\:-mb-2\/5:focus{
    margin-bottom     : -40% !important;
  }

  .xl\:focus\:-ml-2\/5:focus{
    margin-left     : -40% !important;
  }

  .xl\:focus\:-mt-3\/5:focus{
    margin-top     : -60% !important;
  }

  .xl\:focus\:-mr-3\/5:focus{
    margin-right     : -60% !important;
  }

  .xl\:focus\:-mb-3\/5:focus{
    margin-bottom     : -60% !important;
  }

  .xl\:focus\:-ml-3\/5:focus{
    margin-left     : -60% !important;
  }

  .xl\:focus\:-mt-4\/5:focus{
    margin-top     : -80% !important;
  }

  .xl\:focus\:-mr-4\/5:focus{
    margin-right     : -80% !important;
  }

  .xl\:focus\:-mb-4\/5:focus{
    margin-bottom     : -80% !important;
  }

  .xl\:focus\:-ml-4\/5:focus{
    margin-left     : -80% !important;
  }

  .xl\:focus\:-mt-1\/6:focus{
    margin-top     : -16.66667% !important;
  }

  .xl\:focus\:-mr-1\/6:focus{
    margin-right     : -16.66667% !important;
  }

  .xl\:focus\:-mb-1\/6:focus{
    margin-bottom     : -16.66667% !important;
  }

  .xl\:focus\:-ml-1\/6:focus{
    margin-left     : -16.66667% !important;
  }

  .xl\:focus\:-mt-2\/6:focus{
    margin-top     : -33.33333% !important;
  }

  .xl\:focus\:-mr-2\/6:focus{
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-mb-2\/6:focus{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-ml-2\/6:focus{
    margin-left     : -33.33333% !important;
  }

  .xl\:focus\:-mt-3\/6:focus{
    margin-top     : -50% !important;
  }

  .xl\:focus\:-mr-3\/6:focus{
    margin-right     : -50% !important;
  }

  .xl\:focus\:-mb-3\/6:focus{
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-ml-3\/6:focus{
    margin-left     : -50% !important;
  }

  .xl\:focus\:-mt-4\/6:focus{
    margin-top     : -66.66667% !important;
  }

  .xl\:focus\:-mr-4\/6:focus{
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-mb-4\/6:focus{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-ml-4\/6:focus{
    margin-left     : -66.66667% !important;
  }

  .xl\:focus\:-mt-5\/6:focus{
    margin-top     : -83.33333% !important;
  }

  .xl\:focus\:-mr-5\/6:focus{
    margin-right     : -83.33333% !important;
  }

  .xl\:focus\:-mb-5\/6:focus{
    margin-bottom     : -83.33333% !important;
  }

  .xl\:focus\:-ml-5\/6:focus{
    margin-left     : -83.33333% !important;
  }

  .xl\:focus\:-mt-1\/12:focus{
    margin-top     : -8.33333% !important;
  }

  .xl\:focus\:-mr-1\/12:focus{
    margin-right     : -8.33333% !important;
  }

  .xl\:focus\:-mb-1\/12:focus{
    margin-bottom     : -8.33333% !important;
  }

  .xl\:focus\:-ml-1\/12:focus{
    margin-left     : -8.33333% !important;
  }

  .xl\:focus\:-mt-2\/12:focus{
    margin-top     : -16.66667% !important;
  }

  .xl\:focus\:-mr-2\/12:focus{
    margin-right     : -16.66667% !important;
  }

  .xl\:focus\:-mb-2\/12:focus{
    margin-bottom     : -16.66667% !important;
  }

  .xl\:focus\:-ml-2\/12:focus{
    margin-left     : -16.66667% !important;
  }

  .xl\:focus\:-mt-3\/12:focus{
    margin-top     : -25% !important;
  }

  .xl\:focus\:-mr-3\/12:focus{
    margin-right     : -25% !important;
  }

  .xl\:focus\:-mb-3\/12:focus{
    margin-bottom     : -25% !important;
  }

  .xl\:focus\:-ml-3\/12:focus{
    margin-left     : -25% !important;
  }

  .xl\:focus\:-mt-4\/12:focus{
    margin-top     : -33.33333% !important;
  }

  .xl\:focus\:-mr-4\/12:focus{
    margin-right     : -33.33333% !important;
  }

  .xl\:focus\:-mb-4\/12:focus{
    margin-bottom     : -33.33333% !important;
  }

  .xl\:focus\:-ml-4\/12:focus{
    margin-left     : -33.33333% !important;
  }

  .xl\:focus\:-mt-5\/12:focus{
    margin-top     : -41.66667% !important;
  }

  .xl\:focus\:-mr-5\/12:focus{
    margin-right     : -41.66667% !important;
  }

  .xl\:focus\:-mb-5\/12:focus{
    margin-bottom     : -41.66667% !important;
  }

  .xl\:focus\:-ml-5\/12:focus{
    margin-left     : -41.66667% !important;
  }

  .xl\:focus\:-mt-6\/12:focus{
    margin-top     : -50% !important;
  }

  .xl\:focus\:-mr-6\/12:focus{
    margin-right     : -50% !important;
  }

  .xl\:focus\:-mb-6\/12:focus{
    margin-bottom     : -50% !important;
  }

  .xl\:focus\:-ml-6\/12:focus{
    margin-left     : -50% !important;
  }

  .xl\:focus\:-mt-7\/12:focus{
    margin-top     : -58.33333% !important;
  }

  .xl\:focus\:-mr-7\/12:focus{
    margin-right     : -58.33333% !important;
  }

  .xl\:focus\:-mb-7\/12:focus{
    margin-bottom     : -58.33333% !important;
  }

  .xl\:focus\:-ml-7\/12:focus{
    margin-left     : -58.33333% !important;
  }

  .xl\:focus\:-mt-8\/12:focus{
    margin-top     : -66.66667% !important;
  }

  .xl\:focus\:-mr-8\/12:focus{
    margin-right     : -66.66667% !important;
  }

  .xl\:focus\:-mb-8\/12:focus{
    margin-bottom     : -66.66667% !important;
  }

  .xl\:focus\:-ml-8\/12:focus{
    margin-left     : -66.66667% !important;
  }

  .xl\:focus\:-mt-9\/12:focus{
    margin-top     : -75% !important;
  }

  .xl\:focus\:-mr-9\/12:focus{
    margin-right     : -75% !important;
  }

  .xl\:focus\:-mb-9\/12:focus{
    margin-bottom     : -75% !important;
  }

  .xl\:focus\:-ml-9\/12:focus{
    margin-left     : -75% !important;
  }

  .xl\:focus\:-mt-10\/12:focus{
    margin-top     : -83.33333% !important;
  }

  .xl\:focus\:-mr-10\/12:focus{
    margin-right     : -83.33333% !important;
  }

  .xl\:focus\:-mb-10\/12:focus{
    margin-bottom     : -83.33333% !important;
  }

  .xl\:focus\:-ml-10\/12:focus{
    margin-left     : -83.33333% !important;
  }

  .xl\:focus\:-mt-11\/12:focus{
    margin-top     : -91.66667% !important;
  }

  .xl\:focus\:-mr-11\/12:focus{
    margin-right     : -91.66667% !important;
  }

  .xl\:focus\:-mb-11\/12:focus{
    margin-bottom     : -91.66667% !important;
  }

  .xl\:focus\:-ml-11\/12:focus{
    margin-left     : -91.66667% !important;
  }

  .xl\:focus\:-mt-full:focus{
    margin-top     : -100% !important;
  }

  .xl\:focus\:-mr-full:focus{
    margin-right     : -100% !important;
  }

  .xl\:focus\:-mb-full:focus{
    margin-bottom     : -100% !important;
  }

  .xl\:focus\:-ml-full:focus{
    margin-left     : -100% !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-20{
    max-height     : 5rem !important;
  }

  .xl\:max-h-24{
    max-height     : 6rem !important;
  }

  .xl\:max-h-28{
    max-height     : 7rem !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-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-96{
    max-height     : 24rem !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;
  }

  .group:hover .xl\:group-hover\:max-h-0{
    max-height     : 0 !important;
  }

  .group:hover .xl\:group-hover\:max-h-1{
    max-height     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-2{
    max-height     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-3{
    max-height     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-4{
    max-height     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-5{
    max-height     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-6{
    max-height     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-7{
    max-height     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-8{
    max-height     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-9{
    max-height     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-10{
    max-height     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-11{
    max-height     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-12{
    max-height     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-13{
    max-height     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-14{
    max-height     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-15{
    max-height     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-16{
    max-height     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-20{
    max-height     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-24{
    max-height     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-28{
    max-height     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-32{
    max-height     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-36{
    max-height     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-40{
    max-height     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-44{
    max-height     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-48{
    max-height     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-52{
    max-height     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-56{
    max-height     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-60{
    max-height     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-64{
    max-height     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-72{
    max-height     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-80{
    max-height     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-96{
    max-height     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-screen{
    max-height     : 100vh !important;
  }

  .group:hover .xl\:group-hover\:max-h-px{
    max-height     : 1px !important;
  }

  .group:hover .xl\:group-hover\:max-h-0\.5{
    max-height     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\.5{
    max-height     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\.5{
    max-height     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-3\.5{
    max-height     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/2{
    max-height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/3{
    max-height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\/3{
    max-height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/4{
    max-height     : 25% !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\/4{
    max-height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:max-h-3\/4{
    max-height     : 75% !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/5{
    max-height     : 20% !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\/5{
    max-height     : 40% !important;
  }

  .group:hover .xl\:group-hover\:max-h-3\/5{
    max-height     : 60% !important;
  }

  .group:hover .xl\:group-hover\:max-h-4\/5{
    max-height     : 80% !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/6{
    max-height     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\/6{
    max-height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-3\/6{
    max-height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:max-h-4\/6{
    max-height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-5\/6{
    max-height     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-1\/12{
    max-height     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-2\/12{
    max-height     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-3\/12{
    max-height     : 25% !important;
  }

  .group:hover .xl\:group-hover\:max-h-4\/12{
    max-height     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-5\/12{
    max-height     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-6\/12{
    max-height     : 50% !important;
  }

  .group:hover .xl\:group-hover\:max-h-7\/12{
    max-height     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-8\/12{
    max-height     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-9\/12{
    max-height     : 75% !important;
  }

  .group:hover .xl\:group-hover\:max-h-10\/12{
    max-height     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:max-h-11\/12{
    max-height     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:max-h-full{
    max-height     : 100% !important;
  }

  .xl\:hover\:max-h-0:hover{
    max-height     : 0 !important;
  }

  .xl\:hover\:max-h-1:hover{
    max-height     : 0.25rem !important;
  }

  .xl\:hover\:max-h-2:hover{
    max-height     : 0.5rem !important;
  }

  .xl\:hover\:max-h-3:hover{
    max-height     : 0.75rem !important;
  }

  .xl\:hover\:max-h-4:hover{
    max-height     : 1rem !important;
  }

  .xl\:hover\:max-h-5:hover{
    max-height     : 1.25rem !important;
  }

  .xl\:hover\:max-h-6:hover{
    max-height     : 1.5rem !important;
  }

  .xl\:hover\:max-h-7:hover{
    max-height     : 1.75rem !important;
  }

  .xl\:hover\:max-h-8:hover{
    max-height     : 2rem !important;
  }

  .xl\:hover\:max-h-9:hover{
    max-height     : 2.25rem !important;
  }

  .xl\:hover\:max-h-10:hover{
    max-height     : 2.5rem !important;
  }

  .xl\:hover\:max-h-11:hover{
    max-height     : 2.75rem !important;
  }

  .xl\:hover\:max-h-12:hover{
    max-height     : 3rem !important;
  }

  .xl\:hover\:max-h-13:hover{
    max-height     : 3.25rem !important;
  }

  .xl\:hover\:max-h-14:hover{
    max-height     : 3.5rem !important;
  }

  .xl\:hover\:max-h-15:hover{
    max-height     : 3.75rem !important;
  }

  .xl\:hover\:max-h-16:hover{
    max-height     : 4rem !important;
  }

  .xl\:hover\:max-h-20:hover{
    max-height     : 5rem !important;
  }

  .xl\:hover\:max-h-24:hover{
    max-height     : 6rem !important;
  }

  .xl\:hover\:max-h-28:hover{
    max-height     : 7rem !important;
  }

  .xl\:hover\:max-h-32:hover{
    max-height     : 8rem !important;
  }

  .xl\:hover\:max-h-36:hover{
    max-height     : 9rem !important;
  }

  .xl\:hover\:max-h-40:hover{
    max-height     : 10rem !important;
  }

  .xl\:hover\:max-h-44:hover{
    max-height     : 11rem !important;
  }

  .xl\:hover\:max-h-48:hover{
    max-height     : 12rem !important;
  }

  .xl\:hover\:max-h-52:hover{
    max-height     : 13rem !important;
  }

  .xl\:hover\:max-h-56:hover{
    max-height     : 14rem !important;
  }

  .xl\:hover\:max-h-60:hover{
    max-height     : 15rem !important;
  }

  .xl\:hover\:max-h-64:hover{
    max-height     : 16rem !important;
  }

  .xl\:hover\:max-h-72:hover{
    max-height     : 18rem !important;
  }

  .xl\:hover\:max-h-80:hover{
    max-height     : 20rem !important;
  }

  .xl\:hover\:max-h-96:hover{
    max-height     : 24rem !important;
  }

  .xl\:hover\:max-h-screen:hover{
    max-height     : 100vh !important;
  }

  .xl\:hover\:max-h-px:hover{
    max-height     : 1px !important;
  }

  .xl\:hover\:max-h-0\.5:hover{
    max-height     : 0.125rem !important;
  }

  .xl\:hover\:max-h-1\.5:hover{
    max-height     : 0.375rem !important;
  }

  .xl\:hover\:max-h-2\.5:hover{
    max-height     : 0.625rem !important;
  }

  .xl\:hover\:max-h-3\.5:hover{
    max-height     : 0.875rem !important;
  }

  .xl\:hover\:max-h-1\/2:hover{
    max-height     : 50% !important;
  }

  .xl\:hover\:max-h-1\/3:hover{
    max-height     : 33.333333% !important;
  }

  .xl\:hover\:max-h-2\/3:hover{
    max-height     : 66.666667% !important;
  }

  .xl\:hover\:max-h-1\/4:hover{
    max-height     : 25% !important;
  }

  .xl\:hover\:max-h-2\/4:hover{
    max-height     : 50% !important;
  }

  .xl\:hover\:max-h-3\/4:hover{
    max-height     : 75% !important;
  }

  .xl\:hover\:max-h-1\/5:hover{
    max-height     : 20% !important;
  }

  .xl\:hover\:max-h-2\/5:hover{
    max-height     : 40% !important;
  }

  .xl\:hover\:max-h-3\/5:hover{
    max-height     : 60% !important;
  }

  .xl\:hover\:max-h-4\/5:hover{
    max-height     : 80% !important;
  }

  .xl\:hover\:max-h-1\/6:hover{
    max-height     : 16.666667% !important;
  }

  .xl\:hover\:max-h-2\/6:hover{
    max-height     : 33.333333% !important;
  }

  .xl\:hover\:max-h-3\/6:hover{
    max-height     : 50% !important;
  }

  .xl\:hover\:max-h-4\/6:hover{
    max-height     : 66.666667% !important;
  }

  .xl\:hover\:max-h-5\/6:hover{
    max-height     : 83.333333% !important;
  }

  .xl\:hover\:max-h-1\/12:hover{
    max-height     : 8.333333% !important;
  }

  .xl\:hover\:max-h-2\/12:hover{
    max-height     : 16.666667% !important;
  }

  .xl\:hover\:max-h-3\/12:hover{
    max-height     : 25% !important;
  }

  .xl\:hover\:max-h-4\/12:hover{
    max-height     : 33.333333% !important;
  }

  .xl\:hover\:max-h-5\/12:hover{
    max-height     : 41.666667% !important;
  }

  .xl\:hover\:max-h-6\/12:hover{
    max-height     : 50% !important;
  }

  .xl\:hover\:max-h-7\/12:hover{
    max-height     : 58.333333% !important;
  }

  .xl\:hover\:max-h-8\/12:hover{
    max-height     : 66.666667% !important;
  }

  .xl\:hover\:max-h-9\/12:hover{
    max-height     : 75% !important;
  }

  .xl\:hover\:max-h-10\/12:hover{
    max-height     : 83.333333% !important;
  }

  .xl\:hover\:max-h-11\/12:hover{
    max-height     : 91.666667% !important;
  }

  .xl\:hover\:max-h-full:hover{
    max-height     : 100% !important;
  }

  .xl\:focus\:max-h-0:focus{
    max-height     : 0 !important;
  }

  .xl\:focus\:max-h-1:focus{
    max-height     : 0.25rem !important;
  }

  .xl\:focus\:max-h-2:focus{
    max-height     : 0.5rem !important;
  }

  .xl\:focus\:max-h-3:focus{
    max-height     : 0.75rem !important;
  }

  .xl\:focus\:max-h-4:focus{
    max-height     : 1rem !important;
  }

  .xl\:focus\:max-h-5:focus{
    max-height     : 1.25rem !important;
  }

  .xl\:focus\:max-h-6:focus{
    max-height     : 1.5rem !important;
  }

  .xl\:focus\:max-h-7:focus{
    max-height     : 1.75rem !important;
  }

  .xl\:focus\:max-h-8:focus{
    max-height     : 2rem !important;
  }

  .xl\:focus\:max-h-9:focus{
    max-height     : 2.25rem !important;
  }

  .xl\:focus\:max-h-10:focus{
    max-height     : 2.5rem !important;
  }

  .xl\:focus\:max-h-11:focus{
    max-height     : 2.75rem !important;
  }

  .xl\:focus\:max-h-12:focus{
    max-height     : 3rem !important;
  }

  .xl\:focus\:max-h-13:focus{
    max-height     : 3.25rem !important;
  }

  .xl\:focus\:max-h-14:focus{
    max-height     : 3.5rem !important;
  }

  .xl\:focus\:max-h-15:focus{
    max-height     : 3.75rem !important;
  }

  .xl\:focus\:max-h-16:focus{
    max-height     : 4rem !important;
  }

  .xl\:focus\:max-h-20:focus{
    max-height     : 5rem !important;
  }

  .xl\:focus\:max-h-24:focus{
    max-height     : 6rem !important;
  }

  .xl\:focus\:max-h-28:focus{
    max-height     : 7rem !important;
  }

  .xl\:focus\:max-h-32:focus{
    max-height     : 8rem !important;
  }

  .xl\:focus\:max-h-36:focus{
    max-height     : 9rem !important;
  }

  .xl\:focus\:max-h-40:focus{
    max-height     : 10rem !important;
  }

  .xl\:focus\:max-h-44:focus{
    max-height     : 11rem !important;
  }

  .xl\:focus\:max-h-48:focus{
    max-height     : 12rem !important;
  }

  .xl\:focus\:max-h-52:focus{
    max-height     : 13rem !important;
  }

  .xl\:focus\:max-h-56:focus{
    max-height     : 14rem !important;
  }

  .xl\:focus\:max-h-60:focus{
    max-height     : 15rem !important;
  }

  .xl\:focus\:max-h-64:focus{
    max-height     : 16rem !important;
  }

  .xl\:focus\:max-h-72:focus{
    max-height     : 18rem !important;
  }

  .xl\:focus\:max-h-80:focus{
    max-height     : 20rem !important;
  }

  .xl\:focus\:max-h-96:focus{
    max-height     : 24rem !important;
  }

  .xl\:focus\:max-h-screen:focus{
    max-height     : 100vh !important;
  }

  .xl\:focus\:max-h-px:focus{
    max-height     : 1px !important;
  }

  .xl\:focus\:max-h-0\.5:focus{
    max-height     : 0.125rem !important;
  }

  .xl\:focus\:max-h-1\.5:focus{
    max-height     : 0.375rem !important;
  }

  .xl\:focus\:max-h-2\.5:focus{
    max-height     : 0.625rem !important;
  }

  .xl\:focus\:max-h-3\.5:focus{
    max-height     : 0.875rem !important;
  }

  .xl\:focus\:max-h-1\/2:focus{
    max-height     : 50% !important;
  }

  .xl\:focus\:max-h-1\/3:focus{
    max-height     : 33.333333% !important;
  }

  .xl\:focus\:max-h-2\/3:focus{
    max-height     : 66.666667% !important;
  }

  .xl\:focus\:max-h-1\/4:focus{
    max-height     : 25% !important;
  }

  .xl\:focus\:max-h-2\/4:focus{
    max-height     : 50% !important;
  }

  .xl\:focus\:max-h-3\/4:focus{
    max-height     : 75% !important;
  }

  .xl\:focus\:max-h-1\/5:focus{
    max-height     : 20% !important;
  }

  .xl\:focus\:max-h-2\/5:focus{
    max-height     : 40% !important;
  }

  .xl\:focus\:max-h-3\/5:focus{
    max-height     : 60% !important;
  }

  .xl\:focus\:max-h-4\/5:focus{
    max-height     : 80% !important;
  }

  .xl\:focus\:max-h-1\/6:focus{
    max-height     : 16.666667% !important;
  }

  .xl\:focus\:max-h-2\/6:focus{
    max-height     : 33.333333% !important;
  }

  .xl\:focus\:max-h-3\/6:focus{
    max-height     : 50% !important;
  }

  .xl\:focus\:max-h-4\/6:focus{
    max-height     : 66.666667% !important;
  }

  .xl\:focus\:max-h-5\/6:focus{
    max-height     : 83.333333% !important;
  }

  .xl\:focus\:max-h-1\/12:focus{
    max-height     : 8.333333% !important;
  }

  .xl\:focus\:max-h-2\/12:focus{
    max-height     : 16.666667% !important;
  }

  .xl\:focus\:max-h-3\/12:focus{
    max-height     : 25% !important;
  }

  .xl\:focus\:max-h-4\/12:focus{
    max-height     : 33.333333% !important;
  }

  .xl\:focus\:max-h-5\/12:focus{
    max-height     : 41.666667% !important;
  }

  .xl\:focus\:max-h-6\/12:focus{
    max-height     : 50% !important;
  }

  .xl\:focus\:max-h-7\/12:focus{
    max-height     : 58.333333% !important;
  }

  .xl\:focus\:max-h-8\/12:focus{
    max-height     : 66.666667% !important;
  }

  .xl\:focus\:max-h-9\/12:focus{
    max-height     : 75% !important;
  }

  .xl\:focus\:max-h-10\/12:focus{
    max-height     : 83.333333% !important;
  }

  .xl\:focus\:max-h-11\/12:focus{
    max-height     : 91.666667% !important;
  }

  .xl\:focus\:max-h-full:focus{
    max-height     : 100% !important;
  }

  .xl\:max-w-0{
    max-width     : 0rem !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-prose{
    max-width     : 65ch !important;
  }

  .xl\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .xl\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .xl\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .xl\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .group:hover .xl\:group-hover\:max-w-0{
    max-width     : 0rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-none{
    max-width     : none !important;
  }

  .group:hover .xl\:group-hover\:max-w-xs{
    max-width     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-sm{
    max-width     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-md{
    max-width     : 28rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-lg{
    max-width     : 32rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-xl{
    max-width     : 36rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-2xl{
    max-width     : 42rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-3xl{
    max-width     : 48rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-4xl{
    max-width     : 56rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-5xl{
    max-width     : 64rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-6xl{
    max-width     : 72rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-7xl{
    max-width     : 80rem !important;
  }

  .group:hover .xl\:group-hover\:max-w-full{
    max-width     : 100% !important;
  }

  .group:hover .xl\:group-hover\:max-w-min-content{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .group:hover .xl\:group-hover\:max-w-max-content{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .group:hover .xl\:group-hover\:max-w-prose{
    max-width     : 65ch !important;
  }

  .group:hover .xl\:group-hover\:max-w-screen-sm{
    max-width     : 640px !important;
  }

  .group:hover .xl\:group-hover\:max-w-screen-md{
    max-width     : 768px !important;
  }

  .group:hover .xl\:group-hover\:max-w-screen-lg{
    max-width     : 1024px !important;
  }

  .group:hover .xl\:group-hover\:max-w-screen-xl{
    max-width     : 1280px !important;
  }

  .xl\:hover\:max-w-0:hover{
    max-width     : 0rem !important;
  }

  .xl\:hover\:max-w-none:hover{
    max-width     : none !important;
  }

  .xl\:hover\:max-w-xs:hover{
    max-width     : 20rem !important;
  }

  .xl\:hover\:max-w-sm:hover{
    max-width     : 24rem !important;
  }

  .xl\:hover\:max-w-md:hover{
    max-width     : 28rem !important;
  }

  .xl\:hover\:max-w-lg:hover{
    max-width     : 32rem !important;
  }

  .xl\:hover\:max-w-xl:hover{
    max-width     : 36rem !important;
  }

  .xl\:hover\:max-w-2xl:hover{
    max-width     : 42rem !important;
  }

  .xl\:hover\:max-w-3xl:hover{
    max-width     : 48rem !important;
  }

  .xl\:hover\:max-w-4xl:hover{
    max-width     : 56rem !important;
  }

  .xl\:hover\:max-w-5xl:hover{
    max-width     : 64rem !important;
  }

  .xl\:hover\:max-w-6xl:hover{
    max-width     : 72rem !important;
  }

  .xl\:hover\:max-w-7xl:hover{
    max-width     : 80rem !important;
  }

  .xl\:hover\:max-w-full:hover{
    max-width     : 100% !important;
  }

  .xl\:hover\:max-w-min-content:hover{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .xl\:hover\:max-w-max-content:hover{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .xl\:hover\:max-w-prose:hover{
    max-width     : 65ch !important;
  }

  .xl\:hover\:max-w-screen-sm:hover{
    max-width     : 640px !important;
  }

  .xl\:hover\:max-w-screen-md:hover{
    max-width     : 768px !important;
  }

  .xl\:hover\:max-w-screen-lg:hover{
    max-width     : 1024px !important;
  }

  .xl\:hover\:max-w-screen-xl:hover{
    max-width     : 1280px !important;
  }

  .xl\:focus\:max-w-0:focus{
    max-width     : 0rem !important;
  }

  .xl\:focus\:max-w-none:focus{
    max-width     : none !important;
  }

  .xl\:focus\:max-w-xs:focus{
    max-width     : 20rem !important;
  }

  .xl\:focus\:max-w-sm:focus{
    max-width     : 24rem !important;
  }

  .xl\:focus\:max-w-md:focus{
    max-width     : 28rem !important;
  }

  .xl\:focus\:max-w-lg:focus{
    max-width     : 32rem !important;
  }

  .xl\:focus\:max-w-xl:focus{
    max-width     : 36rem !important;
  }

  .xl\:focus\:max-w-2xl:focus{
    max-width     : 42rem !important;
  }

  .xl\:focus\:max-w-3xl:focus{
    max-width     : 48rem !important;
  }

  .xl\:focus\:max-w-4xl:focus{
    max-width     : 56rem !important;
  }

  .xl\:focus\:max-w-5xl:focus{
    max-width     : 64rem !important;
  }

  .xl\:focus\:max-w-6xl:focus{
    max-width     : 72rem !important;
  }

  .xl\:focus\:max-w-7xl:focus{
    max-width     : 80rem !important;
  }

  .xl\:focus\:max-w-full:focus{
    max-width     : 100% !important;
  }

  .xl\:focus\:max-w-min-content:focus{
    max-width     : -webkit-min-content !important;
    max-width     : -moz-min-content !important;
    max-width     : min-content !important;
  }

  .xl\:focus\:max-w-max-content:focus{
    max-width     : -webkit-max-content !important;
    max-width     : -moz-max-content !important;
    max-width     : max-content !important;
  }

  .xl\:focus\:max-w-prose:focus{
    max-width     : 65ch !important;
  }

  .xl\:focus\:max-w-screen-sm:focus{
    max-width     : 640px !important;
  }

  .xl\:focus\:max-w-screen-md:focus{
    max-width     : 768px !important;
  }

  .xl\:focus\:max-w-screen-lg:focus{
    max-width     : 1024px !important;
  }

  .xl\:focus\:max-w-screen-xl:focus{
    max-width     : 1280px !important;
  }

  .xl\:min-h-0{
    min-height     : 0 !important;
  }

  .xl\:min-h-full{
    min-height     : 100% !important;
  }

  .xl\:min-h-screen{
    min-height     : 100vh !important;
  }

  .group:hover .xl\:group-hover\:min-h-0{
    min-height     : 0 !important;
  }

  .group:hover .xl\:group-hover\:min-h-full{
    min-height     : 100% !important;
  }

  .group:hover .xl\:group-hover\:min-h-screen{
    min-height     : 100vh !important;
  }

  .xl\:hover\:min-h-0:hover{
    min-height     : 0 !important;
  }

  .xl\:hover\:min-h-full:hover{
    min-height     : 100% !important;
  }

  .xl\:hover\:min-h-screen:hover{
    min-height     : 100vh !important;
  }

  .xl\:focus\:min-h-0:focus{
    min-height     : 0 !important;
  }

  .xl\:focus\:min-h-full:focus{
    min-height     : 100% !important;
  }

  .xl\:focus\:min-h-screen:focus{
    min-height     : 100vh !important;
  }

  .xl\:min-w-0{
    min-width     : 0 !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;
  }

  .group:hover .xl\:group-hover\:min-w-0{
    min-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:min-w-full{
    min-width     : 100% !important;
  }

  .group:hover .xl\:group-hover\:min-w-min-content{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .group:hover .xl\:group-hover\:min-w-max-content{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .xl\:hover\:min-w-0:hover{
    min-width     : 0 !important;
  }

  .xl\:hover\:min-w-full:hover{
    min-width     : 100% !important;
  }

  .xl\:hover\:min-w-min-content:hover{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .xl\:hover\:min-w-max-content:hover{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !important;
  }

  .xl\:focus\:min-w-0:focus{
    min-width     : 0 !important;
  }

  .xl\:focus\:min-w-full:focus{
    min-width     : 100% !important;
  }

  .xl\:focus\:min-w-min-content:focus{
    min-width     : -webkit-min-content !important;
    min-width     : -moz-min-content !important;
    min-width     : min-content !important;
  }

  .xl\:focus\:min-w-max-content:focus{
    min-width     : -webkit-max-content !important;
    min-width     : -moz-max-content !important;
    min-width     : max-content !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;
  }

  .group:hover .xl\:group-hover\:object-contain{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .group:hover .xl\:group-hover\:object-cover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .group:hover .xl\:group-hover\:object-fill{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .group:hover .xl\:group-hover\:object-none{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .group:hover .xl\:group-hover\:object-scale-down{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .xl\:hover\:object-contain:hover{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .xl\:hover\:object-cover:hover{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .xl\:hover\:object-fill:hover{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .xl\:hover\:object-none:hover{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .xl\:hover\:object-scale-down:hover{
    -o-object-fit     : scale-down !important;
       object-fit     : scale-down !important;
  }

  .xl\:focus\:object-contain:focus{
    -o-object-fit     : contain !important;
       object-fit     : contain !important;
  }

  .xl\:focus\:object-cover:focus{
    -o-object-fit     : cover !important;
       object-fit     : cover !important;
  }

  .xl\:focus\:object-fill:focus{
    -o-object-fit     : fill !important;
       object-fit     : fill !important;
  }

  .xl\:focus\:object-none:focus{
    -o-object-fit     : none !important;
       object-fit     : none !important;
  }

  .xl\:focus\:object-scale-down:focus{
    -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;
  }

  .group:hover .xl\:group-hover\:object-bottom{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .group:hover .xl\:group-hover\:object-center{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .group:hover .xl\:group-hover\:object-left{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .group:hover .xl\:group-hover\:object-left-bottom{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .group:hover .xl\:group-hover\:object-left-top{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .group:hover .xl\:group-hover\:object-right{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .group:hover .xl\:group-hover\:object-right-bottom{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .group:hover .xl\:group-hover\:object-right-top{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .group:hover .xl\:group-hover\:object-top{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .xl\:hover\:object-bottom:hover{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .xl\:hover\:object-center:hover{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .xl\:hover\:object-left:hover{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .xl\:hover\:object-left-bottom:hover{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .xl\:hover\:object-left-top:hover{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .xl\:hover\:object-right:hover{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .xl\:hover\:object-right-bottom:hover{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .xl\:hover\:object-right-top:hover{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .xl\:hover\:object-top:hover{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .xl\:focus\:object-bottom:focus{
    -o-object-position     : bottom !important;
       object-position     : bottom !important;
  }

  .xl\:focus\:object-center:focus{
    -o-object-position     : center !important;
       object-position     : center !important;
  }

  .xl\:focus\:object-left:focus{
    -o-object-position     : left !important;
       object-position     : left !important;
  }

  .xl\:focus\:object-left-bottom:focus{
    -o-object-position     : left bottom !important;
       object-position     : left bottom !important;
  }

  .xl\:focus\:object-left-top:focus{
    -o-object-position     : left top !important;
       object-position     : left top !important;
  }

  .xl\:focus\:object-right:focus{
    -o-object-position     : right !important;
       object-position     : right !important;
  }

  .xl\:focus\:object-right-bottom:focus{
    -o-object-position     : right bottom !important;
       object-position     : right bottom !important;
  }

  .xl\:focus\:object-right-top:focus{
    -o-object-position     : right top !important;
       object-position     : right top !important;
  }

  .xl\:focus\:object-top:focus{
    -o-object-position     : top !important;
       object-position     : top !important;
  }

  .xl\:opacity-0{
    opacity     : 0 !important;
  }

  .xl\:opacity-25{
    opacity     : 0.25 !important;
  }

  .xl\:opacity-50{
    opacity     : 0.5 !important;
  }

  .xl\:opacity-75{
    opacity     : 0.75 !important;
  }

  .xl\:opacity-100{
    opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:opacity-0{
    opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:opacity-25{
    opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:opacity-50{
    opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:opacity-75{
    opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:opacity-100{
    opacity     : 1 !important;
  }

  .xl\:hover\:opacity-0:hover{
    opacity     : 0 !important;
  }

  .xl\:hover\:opacity-25:hover{
    opacity     : 0.25 !important;
  }

  .xl\:hover\:opacity-50:hover{
    opacity     : 0.5 !important;
  }

  .xl\:hover\:opacity-75:hover{
    opacity     : 0.75 !important;
  }

  .xl\:hover\:opacity-100:hover{
    opacity     : 1 !important;
  }

  .xl\:focus\:opacity-0:focus{
    opacity     : 0 !important;
  }

  .xl\:focus\:opacity-25:focus{
    opacity     : 0.25 !important;
  }

  .xl\:focus\:opacity-50:focus{
    opacity     : 0.5 !important;
  }

  .xl\:focus\:opacity-75:focus{
    opacity     : 0.75 !important;
  }

  .xl\:focus\:opacity-100:focus{
    opacity     : 1 !important;
  }

  .xl\:outline-none{
    outline     : 0 !important;
  }

  .group:hover .xl\:group-hover\:outline-none{
    outline     : 0 !important;
  }

  .xl\:hover\:outline-none:hover{
    outline     : 0 !important;
  }

  .xl\:focus\:outline-none:focus{
    outline     : 0 !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;
  }

  .group:hover .xl\:group-hover\:overflow-auto{
    overflow     : auto !important;
  }

  .group:hover .xl\:group-hover\:overflow-hidden{
    overflow     : hidden !important;
  }

  .group:hover .xl\:group-hover\:overflow-visible{
    overflow     : visible !important;
  }

  .group:hover .xl\:group-hover\:overflow-scroll{
    overflow     : scroll !important;
  }

  .group:hover .xl\:group-hover\:overflow-x-auto{
    overflow-x     : auto !important;
  }

  .group:hover .xl\:group-hover\:overflow-y-auto{
    overflow-y     : auto !important;
  }

  .group:hover .xl\:group-hover\:overflow-x-hidden{
    overflow-x     : hidden !important;
  }

  .group:hover .xl\:group-hover\:overflow-y-hidden{
    overflow-y     : hidden !important;
  }

  .group:hover .xl\:group-hover\:overflow-x-visible{
    overflow-x     : visible !important;
  }

  .group:hover .xl\:group-hover\:overflow-y-visible{
    overflow-y     : visible !important;
  }

  .group:hover .xl\:group-hover\:overflow-x-scroll{
    overflow-x     : scroll !important;
  }

  .group:hover .xl\:group-hover\:overflow-y-scroll{
    overflow-y     : scroll !important;
  }

  .group:hover .xl\:group-hover\:scrolling-touch{
    -webkit-overflow-scrolling     : touch !important;
  }

  .group:hover .xl\:group-hover\:scrolling-auto{
    -webkit-overflow-scrolling     : auto !important;
  }

  .xl\:hover\:overflow-auto:hover{
    overflow     : auto !important;
  }

  .xl\:hover\:overflow-hidden:hover{
    overflow     : hidden !important;
  }

  .xl\:hover\:overflow-visible:hover{
    overflow     : visible !important;
  }

  .xl\:hover\:overflow-scroll:hover{
    overflow     : scroll !important;
  }

  .xl\:hover\:overflow-x-auto:hover{
    overflow-x     : auto !important;
  }

  .xl\:hover\:overflow-y-auto:hover{
    overflow-y     : auto !important;
  }

  .xl\:hover\:overflow-x-hidden:hover{
    overflow-x     : hidden !important;
  }

  .xl\:hover\:overflow-y-hidden:hover{
    overflow-y     : hidden !important;
  }

  .xl\:hover\:overflow-x-visible:hover{
    overflow-x     : visible !important;
  }

  .xl\:hover\:overflow-y-visible:hover{
    overflow-y     : visible !important;
  }

  .xl\:hover\:overflow-x-scroll:hover{
    overflow-x     : scroll !important;
  }

  .xl\:hover\:overflow-y-scroll:hover{
    overflow-y     : scroll !important;
  }

  .xl\:hover\:scrolling-touch:hover{
    -webkit-overflow-scrolling     : touch !important;
  }

  .xl\:hover\:scrolling-auto:hover{
    -webkit-overflow-scrolling     : auto !important;
  }

  .xl\:focus\:overflow-auto:focus{
    overflow     : auto !important;
  }

  .xl\:focus\:overflow-hidden:focus{
    overflow     : hidden !important;
  }

  .xl\:focus\:overflow-visible:focus{
    overflow     : visible !important;
  }

  .xl\:focus\:overflow-scroll:focus{
    overflow     : scroll !important;
  }

  .xl\:focus\:overflow-x-auto:focus{
    overflow-x     : auto !important;
  }

  .xl\:focus\:overflow-y-auto:focus{
    overflow-y     : auto !important;
  }

  .xl\:focus\:overflow-x-hidden:focus{
    overflow-x     : hidden !important;
  }

  .xl\:focus\:overflow-y-hidden:focus{
    overflow-y     : hidden !important;
  }

  .xl\:focus\:overflow-x-visible:focus{
    overflow-x     : visible !important;
  }

  .xl\:focus\:overflow-y-visible:focus{
    overflow-y     : visible !important;
  }

  .xl\:focus\:overflow-x-scroll:focus{
    overflow-x     : scroll !important;
  }

  .xl\:focus\:overflow-y-scroll:focus{
    overflow-y     : scroll !important;
  }

  .xl\:focus\:scrolling-touch:focus{
    -webkit-overflow-scrolling     : touch !important;
  }

  .xl\:focus\:scrolling-auto:focus{
    -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;
  }

  .group:hover .xl\:group-hover\:overscroll-auto{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .group:hover .xl\:group-hover\:overscroll-contain{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .group:hover .xl\:group-hover\:overscroll-none{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .group:hover .xl\:group-hover\:overscroll-y-auto{
    overscroll-behavior-y     : auto !important;
  }

  .group:hover .xl\:group-hover\:overscroll-y-contain{
    overscroll-behavior-y     : contain !important;
  }

  .group:hover .xl\:group-hover\:overscroll-y-none{
    overscroll-behavior-y     : none !important;
  }

  .group:hover .xl\:group-hover\:overscroll-x-auto{
    overscroll-behavior-x     : auto !important;
  }

  .group:hover .xl\:group-hover\:overscroll-x-contain{
    overscroll-behavior-x     : contain !important;
  }

  .group:hover .xl\:group-hover\:overscroll-x-none{
    overscroll-behavior-x     : none !important;
  }

  .xl\:hover\:overscroll-auto:hover{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .xl\:hover\:overscroll-contain:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .xl\:hover\:overscroll-none:hover{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .xl\:hover\:overscroll-y-auto:hover{
    overscroll-behavior-y     : auto !important;
  }

  .xl\:hover\:overscroll-y-contain:hover{
    overscroll-behavior-y     : contain !important;
  }

  .xl\:hover\:overscroll-y-none:hover{
    overscroll-behavior-y     : none !important;
  }

  .xl\:hover\:overscroll-x-auto:hover{
    overscroll-behavior-x     : auto !important;
  }

  .xl\:hover\:overscroll-x-contain:hover{
    overscroll-behavior-x     : contain !important;
  }

  .xl\:hover\:overscroll-x-none:hover{
    overscroll-behavior-x     : none !important;
  }

  .xl\:focus\:overscroll-auto:focus{
    -ms-scroll-chaining     : chained !important;
        overscroll-behavior     : auto !important;
  }

  .xl\:focus\:overscroll-contain:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : contain !important;
  }

  .xl\:focus\:overscroll-none:focus{
    -ms-scroll-chaining     : none !important;
        overscroll-behavior     : none !important;
  }

  .xl\:focus\:overscroll-y-auto:focus{
    overscroll-behavior-y     : auto !important;
  }

  .xl\:focus\:overscroll-y-contain:focus{
    overscroll-behavior-y     : contain !important;
  }

  .xl\:focus\:overscroll-y-none:focus{
    overscroll-behavior-y     : none !important;
  }

  .xl\:focus\:overscroll-x-auto:focus{
    overscroll-behavior-x     : auto !important;
  }

  .xl\:focus\:overscroll-x-contain:focus{
    overscroll-behavior-x     : contain !important;
  }

  .xl\:focus\:overscroll-x-none:focus{
    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-20{
    padding     : 5rem !important;
  }

  .xl\:p-24{
    padding     : 6rem !important;
  }

  .xl\:p-28{
    padding     : 7rem !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-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-96{
    padding     : 24rem !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\: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-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .xl\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 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-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .xl\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !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-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-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .xl\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !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\: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-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-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-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-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-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-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-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;
  }

  .group:hover .xl\:group-hover\:p-0{
    padding     : 0 !important;
  }

  .group:hover .xl\:group-hover\:p-1{
    padding     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:p-2{
    padding     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:p-3{
    padding     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:p-4{
    padding     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:p-5{
    padding     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:p-6{
    padding     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:p-7{
    padding     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:p-8{
    padding     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:p-9{
    padding     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:p-10{
    padding     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:p-11{
    padding     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:p-12{
    padding     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:p-13{
    padding     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:p-14{
    padding     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:p-15{
    padding     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:p-16{
    padding     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:p-20{
    padding     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:p-24{
    padding     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:p-28{
    padding     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:p-32{
    padding     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:p-36{
    padding     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:p-40{
    padding     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:p-44{
    padding     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:p-48{
    padding     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:p-52{
    padding     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:p-56{
    padding     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:p-60{
    padding     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:p-64{
    padding     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:p-72{
    padding     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:p-80{
    padding     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:p-96{
    padding     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:p-px{
    padding     : 1px !important;
  }

  .group:hover .xl\:group-hover\:p-0\.5{
    padding     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:p-1\.5{
    padding     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:p-2\.5{
    padding     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:p-3\.5{
    padding     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:p-1\/2{
    padding     : 50% !important;
  }

  .group:hover .xl\:group-hover\:p-1\/3{
    padding     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-2\/3{
    padding     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-1\/4{
    padding     : 25% !important;
  }

  .group:hover .xl\:group-hover\:p-2\/4{
    padding     : 50% !important;
  }

  .group:hover .xl\:group-hover\:p-3\/4{
    padding     : 75% !important;
  }

  .group:hover .xl\:group-hover\:p-1\/5{
    padding     : 20% !important;
  }

  .group:hover .xl\:group-hover\:p-2\/5{
    padding     : 40% !important;
  }

  .group:hover .xl\:group-hover\:p-3\/5{
    padding     : 60% !important;
  }

  .group:hover .xl\:group-hover\:p-4\/5{
    padding     : 80% !important;
  }

  .group:hover .xl\:group-hover\:p-1\/6{
    padding     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-2\/6{
    padding     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-3\/6{
    padding     : 50% !important;
  }

  .group:hover .xl\:group-hover\:p-4\/6{
    padding     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-5\/6{
    padding     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-1\/12{
    padding     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-2\/12{
    padding     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-3\/12{
    padding     : 25% !important;
  }

  .group:hover .xl\:group-hover\:p-4\/12{
    padding     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-5\/12{
    padding     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-6\/12{
    padding     : 50% !important;
  }

  .group:hover .xl\:group-hover\:p-7\/12{
    padding     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-8\/12{
    padding     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-9\/12{
    padding     : 75% !important;
  }

  .group:hover .xl\:group-hover\:p-10\/12{
    padding     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:p-11\/12{
    padding     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:p-full{
    padding     : 100% !important;
  }

  .group:hover .xl\:group-hover\:py-0{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:px-0{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .group:hover .xl\:group-hover\:py-1{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:px-1{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:py-2{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:px-2{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:py-3{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:px-3{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:py-4{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:px-4{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:py-5{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:px-5{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:py-6{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:px-6{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:py-7{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:px-7{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:py-8{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:px-8{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:py-9{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:px-9{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:py-10{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:px-10{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:py-11{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:px-11{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:py-12{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:px-12{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:py-13{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:px-13{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:py-14{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:px-14{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:py-15{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:px-15{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:py-16{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:px-16{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:py-20{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:px-20{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:py-24{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:px-24{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:py-28{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:px-28{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:py-32{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:px-32{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:py-36{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:px-36{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:py-40{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:px-40{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:py-44{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:px-44{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:py-48{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:px-48{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:py-52{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:px-52{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:py-56{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:px-56{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:py-60{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:px-60{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:py-64{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:px-64{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:py-72{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:px-72{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:py-80{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:px-80{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:py-96{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:px-96{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:py-px{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:px-px{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .group:hover .xl\:group-hover\:py-0\.5{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:px-0\.5{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:py-1\.5{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:px-1\.5{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:py-2\.5{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:px-2\.5{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:py-3\.5{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:px-3\.5{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:py-1\/2{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/2{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:py-1\/3{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/3{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-2\/3{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-2\/3{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-1\/4{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/4{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:py-2\/4{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:px-2\/4{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:py-3\/4{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:px-3\/4{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:py-1\/5{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/5{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .group:hover .xl\:group-hover\:py-2\/5{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:px-2\/5{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .group:hover .xl\:group-hover\:py-3\/5{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:px-3\/5{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .group:hover .xl\:group-hover\:py-4\/5{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:px-4\/5{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .group:hover .xl\:group-hover\:py-1\/6{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/6{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-2\/6{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-2\/6{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-3\/6{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:px-3\/6{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:py-4\/6{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-4\/6{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-5\/6{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-5\/6{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-1\/12{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-1\/12{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-2\/12{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-2\/12{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-3\/12{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:px-3\/12{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:py-4\/12{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-4\/12{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-5\/12{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-5\/12{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-6\/12{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:px-6\/12{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:py-7\/12{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-7\/12{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-8\/12{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-8\/12{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-9\/12{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:px-9\/12{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:py-10\/12{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:px-10\/12{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:py-11\/12{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:px-11\/12{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:py-full{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:px-full{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .group:hover .xl\:group-hover\:pt-0{
    padding-top     : 0 !important;
  }

  .group:hover .xl\:group-hover\:pr-0{
    padding-right     : 0 !important;
  }

  .group:hover .xl\:group-hover\:pb-0{
    padding-bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:pl-0{
    padding-left     : 0 !important;
  }

  .group:hover .xl\:group-hover\:pt-1{
    padding-top     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:pr-1{
    padding-right     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:pb-1{
    padding-bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:pl-1{
    padding-left     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:pt-2{
    padding-top     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:pr-2{
    padding-right     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:pb-2{
    padding-bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:pl-2{
    padding-left     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:pt-3{
    padding-top     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:pr-3{
    padding-right     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:pb-3{
    padding-bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:pl-3{
    padding-left     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:pt-4{
    padding-top     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:pr-4{
    padding-right     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:pb-4{
    padding-bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:pl-4{
    padding-left     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:pt-5{
    padding-top     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:pr-5{
    padding-right     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:pb-5{
    padding-bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:pl-5{
    padding-left     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:pt-6{
    padding-top     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:pr-6{
    padding-right     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:pb-6{
    padding-bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:pl-6{
    padding-left     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:pt-7{
    padding-top     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:pr-7{
    padding-right     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:pb-7{
    padding-bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:pl-7{
    padding-left     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:pt-8{
    padding-top     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:pr-8{
    padding-right     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:pb-8{
    padding-bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:pl-8{
    padding-left     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:pt-9{
    padding-top     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:pr-9{
    padding-right     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:pb-9{
    padding-bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:pl-9{
    padding-left     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:pt-10{
    padding-top     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:pr-10{
    padding-right     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:pb-10{
    padding-bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:pl-10{
    padding-left     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:pt-11{
    padding-top     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:pr-11{
    padding-right     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:pb-11{
    padding-bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:pl-11{
    padding-left     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:pt-12{
    padding-top     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:pr-12{
    padding-right     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:pb-12{
    padding-bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:pl-12{
    padding-left     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:pt-13{
    padding-top     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:pr-13{
    padding-right     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:pb-13{
    padding-bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:pl-13{
    padding-left     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:pt-14{
    padding-top     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:pr-14{
    padding-right     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:pb-14{
    padding-bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:pl-14{
    padding-left     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:pt-15{
    padding-top     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:pr-15{
    padding-right     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:pb-15{
    padding-bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:pl-15{
    padding-left     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:pt-16{
    padding-top     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:pr-16{
    padding-right     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:pb-16{
    padding-bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:pl-16{
    padding-left     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:pt-20{
    padding-top     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:pr-20{
    padding-right     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:pb-20{
    padding-bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:pl-20{
    padding-left     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:pt-24{
    padding-top     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:pr-24{
    padding-right     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:pb-24{
    padding-bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:pl-24{
    padding-left     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:pt-28{
    padding-top     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:pr-28{
    padding-right     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:pb-28{
    padding-bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:pl-28{
    padding-left     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:pt-32{
    padding-top     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:pr-32{
    padding-right     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:pb-32{
    padding-bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:pl-32{
    padding-left     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:pt-36{
    padding-top     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:pr-36{
    padding-right     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:pb-36{
    padding-bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:pl-36{
    padding-left     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:pt-40{
    padding-top     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:pr-40{
    padding-right     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:pb-40{
    padding-bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:pl-40{
    padding-left     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:pt-44{
    padding-top     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:pr-44{
    padding-right     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:pb-44{
    padding-bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:pl-44{
    padding-left     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:pt-48{
    padding-top     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:pr-48{
    padding-right     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:pb-48{
    padding-bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:pl-48{
    padding-left     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:pt-52{
    padding-top     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:pr-52{
    padding-right     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:pb-52{
    padding-bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:pl-52{
    padding-left     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:pt-56{
    padding-top     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:pr-56{
    padding-right     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:pb-56{
    padding-bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:pl-56{
    padding-left     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:pt-60{
    padding-top     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:pr-60{
    padding-right     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:pb-60{
    padding-bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:pl-60{
    padding-left     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:pt-64{
    padding-top     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:pr-64{
    padding-right     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:pb-64{
    padding-bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:pl-64{
    padding-left     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:pt-72{
    padding-top     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:pr-72{
    padding-right     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:pb-72{
    padding-bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:pl-72{
    padding-left     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:pt-80{
    padding-top     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:pr-80{
    padding-right     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:pb-80{
    padding-bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:pl-80{
    padding-left     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:pt-96{
    padding-top     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:pr-96{
    padding-right     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:pb-96{
    padding-bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:pl-96{
    padding-left     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:pt-px{
    padding-top     : 1px !important;
  }

  .group:hover .xl\:group-hover\:pr-px{
    padding-right     : 1px !important;
  }

  .group:hover .xl\:group-hover\:pb-px{
    padding-bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:pl-px{
    padding-left     : 1px !important;
  }

  .group:hover .xl\:group-hover\:pt-0\.5{
    padding-top     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:pr-0\.5{
    padding-right     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:pb-0\.5{
    padding-bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:pl-0\.5{
    padding-left     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:pt-1\.5{
    padding-top     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:pr-1\.5{
    padding-right     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:pb-1\.5{
    padding-bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:pl-1\.5{
    padding-left     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:pt-2\.5{
    padding-top     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:pr-2\.5{
    padding-right     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:pb-2\.5{
    padding-bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:pl-2\.5{
    padding-left     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:pt-3\.5{
    padding-top     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:pr-3\.5{
    padding-right     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:pb-3\.5{
    padding-bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:pl-3\.5{
    padding-left     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/2{
    padding-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/2{
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/2{
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/2{
    padding-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/3{
    padding-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/3{
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/3{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/3{
    padding-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-2\/3{
    padding-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-2\/3{
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-2\/3{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-2\/3{
    padding-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/4{
    padding-top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/4{
    padding-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/4{
    padding-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/4{
    padding-left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pt-2\/4{
    padding-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pr-2\/4{
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pb-2\/4{
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pl-2\/4{
    padding-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pt-3\/4{
    padding-top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pr-3\/4{
    padding-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pb-3\/4{
    padding-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pl-3\/4{
    padding-left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/5{
    padding-top     : 20% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/5{
    padding-right     : 20% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/5{
    padding-bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/5{
    padding-left     : 20% !important;
  }

  .group:hover .xl\:group-hover\:pt-2\/5{
    padding-top     : 40% !important;
  }

  .group:hover .xl\:group-hover\:pr-2\/5{
    padding-right     : 40% !important;
  }

  .group:hover .xl\:group-hover\:pb-2\/5{
    padding-bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:pl-2\/5{
    padding-left     : 40% !important;
  }

  .group:hover .xl\:group-hover\:pt-3\/5{
    padding-top     : 60% !important;
  }

  .group:hover .xl\:group-hover\:pr-3\/5{
    padding-right     : 60% !important;
  }

  .group:hover .xl\:group-hover\:pb-3\/5{
    padding-bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:pl-3\/5{
    padding-left     : 60% !important;
  }

  .group:hover .xl\:group-hover\:pt-4\/5{
    padding-top     : 80% !important;
  }

  .group:hover .xl\:group-hover\:pr-4\/5{
    padding-right     : 80% !important;
  }

  .group:hover .xl\:group-hover\:pb-4\/5{
    padding-bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:pl-4\/5{
    padding-left     : 80% !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/6{
    padding-top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/6{
    padding-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/6{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/6{
    padding-left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-2\/6{
    padding-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-2\/6{
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-2\/6{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-2\/6{
    padding-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-3\/6{
    padding-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pr-3\/6{
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pb-3\/6{
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pl-3\/6{
    padding-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pt-4\/6{
    padding-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-4\/6{
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-4\/6{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-4\/6{
    padding-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-5\/6{
    padding-top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-5\/6{
    padding-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-5\/6{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-5\/6{
    padding-left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-1\/12{
    padding-top     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-1\/12{
    padding-right     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-1\/12{
    padding-bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-1\/12{
    padding-left     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-2\/12{
    padding-top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-2\/12{
    padding-right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-2\/12{
    padding-bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-2\/12{
    padding-left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-3\/12{
    padding-top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pr-3\/12{
    padding-right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pb-3\/12{
    padding-bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pl-3\/12{
    padding-left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:pt-4\/12{
    padding-top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-4\/12{
    padding-right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-4\/12{
    padding-bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-4\/12{
    padding-left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-5\/12{
    padding-top     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-5\/12{
    padding-right     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-5\/12{
    padding-bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-5\/12{
    padding-left     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-6\/12{
    padding-top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pr-6\/12{
    padding-right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pb-6\/12{
    padding-bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pl-6\/12{
    padding-left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:pt-7\/12{
    padding-top     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-7\/12{
    padding-right     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-7\/12{
    padding-bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-7\/12{
    padding-left     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-8\/12{
    padding-top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-8\/12{
    padding-right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-8\/12{
    padding-bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-8\/12{
    padding-left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-9\/12{
    padding-top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pr-9\/12{
    padding-right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pb-9\/12{
    padding-bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pl-9\/12{
    padding-left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:pt-10\/12{
    padding-top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pr-10\/12{
    padding-right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pb-10\/12{
    padding-bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pl-10\/12{
    padding-left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:pt-11\/12{
    padding-top     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:pr-11\/12{
    padding-right     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:pb-11\/12{
    padding-bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:pl-11\/12{
    padding-left     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:pt-full{
    padding-top     : 100% !important;
  }

  .group:hover .xl\:group-hover\:pr-full{
    padding-right     : 100% !important;
  }

  .group:hover .xl\:group-hover\:pb-full{
    padding-bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:pl-full{
    padding-left     : 100% !important;
  }

  .xl\:hover\:p-0:hover{
    padding     : 0 !important;
  }

  .xl\:hover\:p-1:hover{
    padding     : 0.25rem !important;
  }

  .xl\:hover\:p-2:hover{
    padding     : 0.5rem !important;
  }

  .xl\:hover\:p-3:hover{
    padding     : 0.75rem !important;
  }

  .xl\:hover\:p-4:hover{
    padding     : 1rem !important;
  }

  .xl\:hover\:p-5:hover{
    padding     : 1.25rem !important;
  }

  .xl\:hover\:p-6:hover{
    padding     : 1.5rem !important;
  }

  .xl\:hover\:p-7:hover{
    padding     : 1.75rem !important;
  }

  .xl\:hover\:p-8:hover{
    padding     : 2rem !important;
  }

  .xl\:hover\:p-9:hover{
    padding     : 2.25rem !important;
  }

  .xl\:hover\:p-10:hover{
    padding     : 2.5rem !important;
  }

  .xl\:hover\:p-11:hover{
    padding     : 2.75rem !important;
  }

  .xl\:hover\:p-12:hover{
    padding     : 3rem !important;
  }

  .xl\:hover\:p-13:hover{
    padding     : 3.25rem !important;
  }

  .xl\:hover\:p-14:hover{
    padding     : 3.5rem !important;
  }

  .xl\:hover\:p-15:hover{
    padding     : 3.75rem !important;
  }

  .xl\:hover\:p-16:hover{
    padding     : 4rem !important;
  }

  .xl\:hover\:p-20:hover{
    padding     : 5rem !important;
  }

  .xl\:hover\:p-24:hover{
    padding     : 6rem !important;
  }

  .xl\:hover\:p-28:hover{
    padding     : 7rem !important;
  }

  .xl\:hover\:p-32:hover{
    padding     : 8rem !important;
  }

  .xl\:hover\:p-36:hover{
    padding     : 9rem !important;
  }

  .xl\:hover\:p-40:hover{
    padding     : 10rem !important;
  }

  .xl\:hover\:p-44:hover{
    padding     : 11rem !important;
  }

  .xl\:hover\:p-48:hover{
    padding     : 12rem !important;
  }

  .xl\:hover\:p-52:hover{
    padding     : 13rem !important;
  }

  .xl\:hover\:p-56:hover{
    padding     : 14rem !important;
  }

  .xl\:hover\:p-60:hover{
    padding     : 15rem !important;
  }

  .xl\:hover\:p-64:hover{
    padding     : 16rem !important;
  }

  .xl\:hover\:p-72:hover{
    padding     : 18rem !important;
  }

  .xl\:hover\:p-80:hover{
    padding     : 20rem !important;
  }

  .xl\:hover\:p-96:hover{
    padding     : 24rem !important;
  }

  .xl\:hover\:p-px:hover{
    padding     : 1px !important;
  }

  .xl\:hover\:p-0\.5:hover{
    padding     : 0.125rem !important;
  }

  .xl\:hover\:p-1\.5:hover{
    padding     : 0.375rem !important;
  }

  .xl\:hover\:p-2\.5:hover{
    padding     : 0.625rem !important;
  }

  .xl\:hover\:p-3\.5:hover{
    padding     : 0.875rem !important;
  }

  .xl\:hover\:p-1\/2:hover{
    padding     : 50% !important;
  }

  .xl\:hover\:p-1\/3:hover{
    padding     : 33.333333% !important;
  }

  .xl\:hover\:p-2\/3:hover{
    padding     : 66.666667% !important;
  }

  .xl\:hover\:p-1\/4:hover{
    padding     : 25% !important;
  }

  .xl\:hover\:p-2\/4:hover{
    padding     : 50% !important;
  }

  .xl\:hover\:p-3\/4:hover{
    padding     : 75% !important;
  }

  .xl\:hover\:p-1\/5:hover{
    padding     : 20% !important;
  }

  .xl\:hover\:p-2\/5:hover{
    padding     : 40% !important;
  }

  .xl\:hover\:p-3\/5:hover{
    padding     : 60% !important;
  }

  .xl\:hover\:p-4\/5:hover{
    padding     : 80% !important;
  }

  .xl\:hover\:p-1\/6:hover{
    padding     : 16.666667% !important;
  }

  .xl\:hover\:p-2\/6:hover{
    padding     : 33.333333% !important;
  }

  .xl\:hover\:p-3\/6:hover{
    padding     : 50% !important;
  }

  .xl\:hover\:p-4\/6:hover{
    padding     : 66.666667% !important;
  }

  .xl\:hover\:p-5\/6:hover{
    padding     : 83.333333% !important;
  }

  .xl\:hover\:p-1\/12:hover{
    padding     : 8.333333% !important;
  }

  .xl\:hover\:p-2\/12:hover{
    padding     : 16.666667% !important;
  }

  .xl\:hover\:p-3\/12:hover{
    padding     : 25% !important;
  }

  .xl\:hover\:p-4\/12:hover{
    padding     : 33.333333% !important;
  }

  .xl\:hover\:p-5\/12:hover{
    padding     : 41.666667% !important;
  }

  .xl\:hover\:p-6\/12:hover{
    padding     : 50% !important;
  }

  .xl\:hover\:p-7\/12:hover{
    padding     : 58.333333% !important;
  }

  .xl\:hover\:p-8\/12:hover{
    padding     : 66.666667% !important;
  }

  .xl\:hover\:p-9\/12:hover{
    padding     : 75% !important;
  }

  .xl\:hover\:p-10\/12:hover{
    padding     : 83.333333% !important;
  }

  .xl\:hover\:p-11\/12:hover{
    padding     : 91.666667% !important;
  }

  .xl\:hover\:p-full:hover{
    padding     : 100% !important;
  }

  .xl\:hover\:py-0:hover{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .xl\:hover\:px-0:hover{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .xl\:hover\:py-1:hover{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .xl\:hover\:px-1:hover{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .xl\:hover\:py-2:hover{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .xl\:hover\:px-2:hover{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .xl\:hover\:py-3:hover{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .xl\:hover\:px-3:hover{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .xl\:hover\:py-4:hover{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .xl\:hover\:px-4:hover{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .xl\:hover\:py-5:hover{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .xl\:hover\:px-5:hover{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .xl\:hover\:py-6:hover{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .xl\:hover\:px-6:hover{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .xl\:hover\:py-7:hover{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .xl\:hover\:px-7:hover{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .xl\:hover\:py-8:hover{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .xl\:hover\:px-8:hover{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .xl\:hover\:py-9:hover{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .xl\:hover\:px-9:hover{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .xl\:hover\:py-10:hover{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .xl\:hover\:px-10:hover{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .xl\:hover\:py-11:hover{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .xl\:hover\:px-11:hover{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .xl\:hover\:py-12:hover{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .xl\:hover\:px-12:hover{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .xl\:hover\:py-13:hover{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .xl\:hover\:px-13:hover{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .xl\:hover\:py-14:hover{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .xl\:hover\:px-14:hover{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .xl\:hover\:py-15:hover{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .xl\:hover\:px-15:hover{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .xl\:hover\:py-16:hover{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .xl\:hover\:px-16:hover{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .xl\:hover\:py-20:hover{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .xl\:hover\:px-20:hover{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .xl\:hover\:py-24:hover{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .xl\:hover\:px-24:hover{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .xl\:hover\:py-28:hover{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .xl\:hover\:px-28:hover{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .xl\:hover\:py-32:hover{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .xl\:hover\:px-32:hover{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .xl\:hover\:py-36:hover{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .xl\:hover\:px-36:hover{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .xl\:hover\:py-40:hover{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .xl\:hover\:px-40:hover{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .xl\:hover\:py-44:hover{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .xl\:hover\:px-44:hover{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .xl\:hover\:py-48:hover{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .xl\:hover\:px-48:hover{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .xl\:hover\:py-52:hover{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .xl\:hover\:px-52:hover{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .xl\:hover\:py-56:hover{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .xl\:hover\:px-56:hover{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .xl\:hover\:py-60:hover{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .xl\:hover\:px-60:hover{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .xl\:hover\:py-64:hover{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .xl\:hover\:px-64:hover{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .xl\:hover\:py-72:hover{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .xl\:hover\:px-72:hover{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .xl\:hover\:py-80:hover{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .xl\:hover\:px-80:hover{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .xl\:hover\:py-96:hover{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .xl\:hover\:px-96:hover{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .xl\:hover\:py-px:hover{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .xl\:hover\:px-px:hover{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .xl\:hover\:py-0\.5:hover{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .xl\:hover\:px-0\.5:hover{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .xl\:hover\:py-1\.5:hover{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .xl\:hover\:px-1\.5:hover{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .xl\:hover\:py-2\.5:hover{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .xl\:hover\:px-2\.5:hover{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .xl\:hover\:py-3\.5:hover{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .xl\:hover\:px-3\.5:hover{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .xl\:hover\:py-1\/2:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:px-1\/2:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:hover\:py-1\/3:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:px-1\/3:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:py-2\/3:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:px-2\/3:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:py-1\/4:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .xl\:hover\:px-1\/4:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .xl\:hover\:py-2\/4:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:px-2\/4:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:hover\:py-3\/4:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .xl\:hover\:px-3\/4:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .xl\:hover\:py-1\/5:hover{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .xl\:hover\:px-1\/5:hover{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .xl\:hover\:py-2\/5:hover{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .xl\:hover\:px-2\/5:hover{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .xl\:hover\:py-3\/5:hover{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .xl\:hover\:px-3\/5:hover{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .xl\:hover\:py-4\/5:hover{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .xl\:hover\:px-4\/5:hover{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .xl\:hover\:py-1\/6:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .xl\:hover\:px-1\/6:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .xl\:hover\:py-2\/6:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:px-2\/6:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:py-3\/6:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:px-3\/6:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:hover\:py-4\/6:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:px-4\/6:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:py-5\/6:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .xl\:hover\:px-5\/6:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .xl\:hover\:py-1\/12:hover{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .xl\:hover\:px-1\/12:hover{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .xl\:hover\:py-2\/12:hover{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .xl\:hover\:px-2\/12:hover{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .xl\:hover\:py-3\/12:hover{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .xl\:hover\:px-3\/12:hover{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .xl\:hover\:py-4\/12:hover{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:px-4\/12:hover{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:py-5\/12:hover{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .xl\:hover\:px-5\/12:hover{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .xl\:hover\:py-6\/12:hover{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:px-6\/12:hover{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:hover\:py-7\/12:hover{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .xl\:hover\:px-7\/12:hover{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .xl\:hover\:py-8\/12:hover{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:px-8\/12:hover{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:py-9\/12:hover{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .xl\:hover\:px-9\/12:hover{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .xl\:hover\:py-10\/12:hover{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .xl\:hover\:px-10\/12:hover{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .xl\:hover\:py-11\/12:hover{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .xl\:hover\:px-11\/12:hover{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .xl\:hover\:py-full:hover{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .xl\:hover\:px-full:hover{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .xl\:hover\:pt-0:hover{
    padding-top     : 0 !important;
  }

  .xl\:hover\:pr-0:hover{
    padding-right     : 0 !important;
  }

  .xl\:hover\:pb-0:hover{
    padding-bottom     : 0 !important;
  }

  .xl\:hover\:pl-0:hover{
    padding-left     : 0 !important;
  }

  .xl\:hover\:pt-1:hover{
    padding-top     : 0.25rem !important;
  }

  .xl\:hover\:pr-1:hover{
    padding-right     : 0.25rem !important;
  }

  .xl\:hover\:pb-1:hover{
    padding-bottom     : 0.25rem !important;
  }

  .xl\:hover\:pl-1:hover{
    padding-left     : 0.25rem !important;
  }

  .xl\:hover\:pt-2:hover{
    padding-top     : 0.5rem !important;
  }

  .xl\:hover\:pr-2:hover{
    padding-right     : 0.5rem !important;
  }

  .xl\:hover\:pb-2:hover{
    padding-bottom     : 0.5rem !important;
  }

  .xl\:hover\:pl-2:hover{
    padding-left     : 0.5rem !important;
  }

  .xl\:hover\:pt-3:hover{
    padding-top     : 0.75rem !important;
  }

  .xl\:hover\:pr-3:hover{
    padding-right     : 0.75rem !important;
  }

  .xl\:hover\:pb-3:hover{
    padding-bottom     : 0.75rem !important;
  }

  .xl\:hover\:pl-3:hover{
    padding-left     : 0.75rem !important;
  }

  .xl\:hover\:pt-4:hover{
    padding-top     : 1rem !important;
  }

  .xl\:hover\:pr-4:hover{
    padding-right     : 1rem !important;
  }

  .xl\:hover\:pb-4:hover{
    padding-bottom     : 1rem !important;
  }

  .xl\:hover\:pl-4:hover{
    padding-left     : 1rem !important;
  }

  .xl\:hover\:pt-5:hover{
    padding-top     : 1.25rem !important;
  }

  .xl\:hover\:pr-5:hover{
    padding-right     : 1.25rem !important;
  }

  .xl\:hover\:pb-5:hover{
    padding-bottom     : 1.25rem !important;
  }

  .xl\:hover\:pl-5:hover{
    padding-left     : 1.25rem !important;
  }

  .xl\:hover\:pt-6:hover{
    padding-top     : 1.5rem !important;
  }

  .xl\:hover\:pr-6:hover{
    padding-right     : 1.5rem !important;
  }

  .xl\:hover\:pb-6:hover{
    padding-bottom     : 1.5rem !important;
  }

  .xl\:hover\:pl-6:hover{
    padding-left     : 1.5rem !important;
  }

  .xl\:hover\:pt-7:hover{
    padding-top     : 1.75rem !important;
  }

  .xl\:hover\:pr-7:hover{
    padding-right     : 1.75rem !important;
  }

  .xl\:hover\:pb-7:hover{
    padding-bottom     : 1.75rem !important;
  }

  .xl\:hover\:pl-7:hover{
    padding-left     : 1.75rem !important;
  }

  .xl\:hover\:pt-8:hover{
    padding-top     : 2rem !important;
  }

  .xl\:hover\:pr-8:hover{
    padding-right     : 2rem !important;
  }

  .xl\:hover\:pb-8:hover{
    padding-bottom     : 2rem !important;
  }

  .xl\:hover\:pl-8:hover{
    padding-left     : 2rem !important;
  }

  .xl\:hover\:pt-9:hover{
    padding-top     : 2.25rem !important;
  }

  .xl\:hover\:pr-9:hover{
    padding-right     : 2.25rem !important;
  }

  .xl\:hover\:pb-9:hover{
    padding-bottom     : 2.25rem !important;
  }

  .xl\:hover\:pl-9:hover{
    padding-left     : 2.25rem !important;
  }

  .xl\:hover\:pt-10:hover{
    padding-top     : 2.5rem !important;
  }

  .xl\:hover\:pr-10:hover{
    padding-right     : 2.5rem !important;
  }

  .xl\:hover\:pb-10:hover{
    padding-bottom     : 2.5rem !important;
  }

  .xl\:hover\:pl-10:hover{
    padding-left     : 2.5rem !important;
  }

  .xl\:hover\:pt-11:hover{
    padding-top     : 2.75rem !important;
  }

  .xl\:hover\:pr-11:hover{
    padding-right     : 2.75rem !important;
  }

  .xl\:hover\:pb-11:hover{
    padding-bottom     : 2.75rem !important;
  }

  .xl\:hover\:pl-11:hover{
    padding-left     : 2.75rem !important;
  }

  .xl\:hover\:pt-12:hover{
    padding-top     : 3rem !important;
  }

  .xl\:hover\:pr-12:hover{
    padding-right     : 3rem !important;
  }

  .xl\:hover\:pb-12:hover{
    padding-bottom     : 3rem !important;
  }

  .xl\:hover\:pl-12:hover{
    padding-left     : 3rem !important;
  }

  .xl\:hover\:pt-13:hover{
    padding-top     : 3.25rem !important;
  }

  .xl\:hover\:pr-13:hover{
    padding-right     : 3.25rem !important;
  }

  .xl\:hover\:pb-13:hover{
    padding-bottom     : 3.25rem !important;
  }

  .xl\:hover\:pl-13:hover{
    padding-left     : 3.25rem !important;
  }

  .xl\:hover\:pt-14:hover{
    padding-top     : 3.5rem !important;
  }

  .xl\:hover\:pr-14:hover{
    padding-right     : 3.5rem !important;
  }

  .xl\:hover\:pb-14:hover{
    padding-bottom     : 3.5rem !important;
  }

  .xl\:hover\:pl-14:hover{
    padding-left     : 3.5rem !important;
  }

  .xl\:hover\:pt-15:hover{
    padding-top     : 3.75rem !important;
  }

  .xl\:hover\:pr-15:hover{
    padding-right     : 3.75rem !important;
  }

  .xl\:hover\:pb-15:hover{
    padding-bottom     : 3.75rem !important;
  }

  .xl\:hover\:pl-15:hover{
    padding-left     : 3.75rem !important;
  }

  .xl\:hover\:pt-16:hover{
    padding-top     : 4rem !important;
  }

  .xl\:hover\:pr-16:hover{
    padding-right     : 4rem !important;
  }

  .xl\:hover\:pb-16:hover{
    padding-bottom     : 4rem !important;
  }

  .xl\:hover\:pl-16:hover{
    padding-left     : 4rem !important;
  }

  .xl\:hover\:pt-20:hover{
    padding-top     : 5rem !important;
  }

  .xl\:hover\:pr-20:hover{
    padding-right     : 5rem !important;
  }

  .xl\:hover\:pb-20:hover{
    padding-bottom     : 5rem !important;
  }

  .xl\:hover\:pl-20:hover{
    padding-left     : 5rem !important;
  }

  .xl\:hover\:pt-24:hover{
    padding-top     : 6rem !important;
  }

  .xl\:hover\:pr-24:hover{
    padding-right     : 6rem !important;
  }

  .xl\:hover\:pb-24:hover{
    padding-bottom     : 6rem !important;
  }

  .xl\:hover\:pl-24:hover{
    padding-left     : 6rem !important;
  }

  .xl\:hover\:pt-28:hover{
    padding-top     : 7rem !important;
  }

  .xl\:hover\:pr-28:hover{
    padding-right     : 7rem !important;
  }

  .xl\:hover\:pb-28:hover{
    padding-bottom     : 7rem !important;
  }

  .xl\:hover\:pl-28:hover{
    padding-left     : 7rem !important;
  }

  .xl\:hover\:pt-32:hover{
    padding-top     : 8rem !important;
  }

  .xl\:hover\:pr-32:hover{
    padding-right     : 8rem !important;
  }

  .xl\:hover\:pb-32:hover{
    padding-bottom     : 8rem !important;
  }

  .xl\:hover\:pl-32:hover{
    padding-left     : 8rem !important;
  }

  .xl\:hover\:pt-36:hover{
    padding-top     : 9rem !important;
  }

  .xl\:hover\:pr-36:hover{
    padding-right     : 9rem !important;
  }

  .xl\:hover\:pb-36:hover{
    padding-bottom     : 9rem !important;
  }

  .xl\:hover\:pl-36:hover{
    padding-left     : 9rem !important;
  }

  .xl\:hover\:pt-40:hover{
    padding-top     : 10rem !important;
  }

  .xl\:hover\:pr-40:hover{
    padding-right     : 10rem !important;
  }

  .xl\:hover\:pb-40:hover{
    padding-bottom     : 10rem !important;
  }

  .xl\:hover\:pl-40:hover{
    padding-left     : 10rem !important;
  }

  .xl\:hover\:pt-44:hover{
    padding-top     : 11rem !important;
  }

  .xl\:hover\:pr-44:hover{
    padding-right     : 11rem !important;
  }

  .xl\:hover\:pb-44:hover{
    padding-bottom     : 11rem !important;
  }

  .xl\:hover\:pl-44:hover{
    padding-left     : 11rem !important;
  }

  .xl\:hover\:pt-48:hover{
    padding-top     : 12rem !important;
  }

  .xl\:hover\:pr-48:hover{
    padding-right     : 12rem !important;
  }

  .xl\:hover\:pb-48:hover{
    padding-bottom     : 12rem !important;
  }

  .xl\:hover\:pl-48:hover{
    padding-left     : 12rem !important;
  }

  .xl\:hover\:pt-52:hover{
    padding-top     : 13rem !important;
  }

  .xl\:hover\:pr-52:hover{
    padding-right     : 13rem !important;
  }

  .xl\:hover\:pb-52:hover{
    padding-bottom     : 13rem !important;
  }

  .xl\:hover\:pl-52:hover{
    padding-left     : 13rem !important;
  }

  .xl\:hover\:pt-56:hover{
    padding-top     : 14rem !important;
  }

  .xl\:hover\:pr-56:hover{
    padding-right     : 14rem !important;
  }

  .xl\:hover\:pb-56:hover{
    padding-bottom     : 14rem !important;
  }

  .xl\:hover\:pl-56:hover{
    padding-left     : 14rem !important;
  }

  .xl\:hover\:pt-60:hover{
    padding-top     : 15rem !important;
  }

  .xl\:hover\:pr-60:hover{
    padding-right     : 15rem !important;
  }

  .xl\:hover\:pb-60:hover{
    padding-bottom     : 15rem !important;
  }

  .xl\:hover\:pl-60:hover{
    padding-left     : 15rem !important;
  }

  .xl\:hover\:pt-64:hover{
    padding-top     : 16rem !important;
  }

  .xl\:hover\:pr-64:hover{
    padding-right     : 16rem !important;
  }

  .xl\:hover\:pb-64:hover{
    padding-bottom     : 16rem !important;
  }

  .xl\:hover\:pl-64:hover{
    padding-left     : 16rem !important;
  }

  .xl\:hover\:pt-72:hover{
    padding-top     : 18rem !important;
  }

  .xl\:hover\:pr-72:hover{
    padding-right     : 18rem !important;
  }

  .xl\:hover\:pb-72:hover{
    padding-bottom     : 18rem !important;
  }

  .xl\:hover\:pl-72:hover{
    padding-left     : 18rem !important;
  }

  .xl\:hover\:pt-80:hover{
    padding-top     : 20rem !important;
  }

  .xl\:hover\:pr-80:hover{
    padding-right     : 20rem !important;
  }

  .xl\:hover\:pb-80:hover{
    padding-bottom     : 20rem !important;
  }

  .xl\:hover\:pl-80:hover{
    padding-left     : 20rem !important;
  }

  .xl\:hover\:pt-96:hover{
    padding-top     : 24rem !important;
  }

  .xl\:hover\:pr-96:hover{
    padding-right     : 24rem !important;
  }

  .xl\:hover\:pb-96:hover{
    padding-bottom     : 24rem !important;
  }

  .xl\:hover\:pl-96:hover{
    padding-left     : 24rem !important;
  }

  .xl\:hover\:pt-px:hover{
    padding-top     : 1px !important;
  }

  .xl\:hover\:pr-px:hover{
    padding-right     : 1px !important;
  }

  .xl\:hover\:pb-px:hover{
    padding-bottom     : 1px !important;
  }

  .xl\:hover\:pl-px:hover{
    padding-left     : 1px !important;
  }

  .xl\:hover\:pt-0\.5:hover{
    padding-top     : 0.125rem !important;
  }

  .xl\:hover\:pr-0\.5:hover{
    padding-right     : 0.125rem !important;
  }

  .xl\:hover\:pb-0\.5:hover{
    padding-bottom     : 0.125rem !important;
  }

  .xl\:hover\:pl-0\.5:hover{
    padding-left     : 0.125rem !important;
  }

  .xl\:hover\:pt-1\.5:hover{
    padding-top     : 0.375rem !important;
  }

  .xl\:hover\:pr-1\.5:hover{
    padding-right     : 0.375rem !important;
  }

  .xl\:hover\:pb-1\.5:hover{
    padding-bottom     : 0.375rem !important;
  }

  .xl\:hover\:pl-1\.5:hover{
    padding-left     : 0.375rem !important;
  }

  .xl\:hover\:pt-2\.5:hover{
    padding-top     : 0.625rem !important;
  }

  .xl\:hover\:pr-2\.5:hover{
    padding-right     : 0.625rem !important;
  }

  .xl\:hover\:pb-2\.5:hover{
    padding-bottom     : 0.625rem !important;
  }

  .xl\:hover\:pl-2\.5:hover{
    padding-left     : 0.625rem !important;
  }

  .xl\:hover\:pt-3\.5:hover{
    padding-top     : 0.875rem !important;
  }

  .xl\:hover\:pr-3\.5:hover{
    padding-right     : 0.875rem !important;
  }

  .xl\:hover\:pb-3\.5:hover{
    padding-bottom     : 0.875rem !important;
  }

  .xl\:hover\:pl-3\.5:hover{
    padding-left     : 0.875rem !important;
  }

  .xl\:hover\:pt-1\/2:hover{
    padding-top     : 50% !important;
  }

  .xl\:hover\:pr-1\/2:hover{
    padding-right     : 50% !important;
  }

  .xl\:hover\:pb-1\/2:hover{
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:pl-1\/2:hover{
    padding-left     : 50% !important;
  }

  .xl\:hover\:pt-1\/3:hover{
    padding-top     : 33.333333% !important;
  }

  .xl\:hover\:pr-1\/3:hover{
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:pb-1\/3:hover{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:pl-1\/3:hover{
    padding-left     : 33.333333% !important;
  }

  .xl\:hover\:pt-2\/3:hover{
    padding-top     : 66.666667% !important;
  }

  .xl\:hover\:pr-2\/3:hover{
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:pb-2\/3:hover{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:pl-2\/3:hover{
    padding-left     : 66.666667% !important;
  }

  .xl\:hover\:pt-1\/4:hover{
    padding-top     : 25% !important;
  }

  .xl\:hover\:pr-1\/4:hover{
    padding-right     : 25% !important;
  }

  .xl\:hover\:pb-1\/4:hover{
    padding-bottom     : 25% !important;
  }

  .xl\:hover\:pl-1\/4:hover{
    padding-left     : 25% !important;
  }

  .xl\:hover\:pt-2\/4:hover{
    padding-top     : 50% !important;
  }

  .xl\:hover\:pr-2\/4:hover{
    padding-right     : 50% !important;
  }

  .xl\:hover\:pb-2\/4:hover{
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:pl-2\/4:hover{
    padding-left     : 50% !important;
  }

  .xl\:hover\:pt-3\/4:hover{
    padding-top     : 75% !important;
  }

  .xl\:hover\:pr-3\/4:hover{
    padding-right     : 75% !important;
  }

  .xl\:hover\:pb-3\/4:hover{
    padding-bottom     : 75% !important;
  }

  .xl\:hover\:pl-3\/4:hover{
    padding-left     : 75% !important;
  }

  .xl\:hover\:pt-1\/5:hover{
    padding-top     : 20% !important;
  }

  .xl\:hover\:pr-1\/5:hover{
    padding-right     : 20% !important;
  }

  .xl\:hover\:pb-1\/5:hover{
    padding-bottom     : 20% !important;
  }

  .xl\:hover\:pl-1\/5:hover{
    padding-left     : 20% !important;
  }

  .xl\:hover\:pt-2\/5:hover{
    padding-top     : 40% !important;
  }

  .xl\:hover\:pr-2\/5:hover{
    padding-right     : 40% !important;
  }

  .xl\:hover\:pb-2\/5:hover{
    padding-bottom     : 40% !important;
  }

  .xl\:hover\:pl-2\/5:hover{
    padding-left     : 40% !important;
  }

  .xl\:hover\:pt-3\/5:hover{
    padding-top     : 60% !important;
  }

  .xl\:hover\:pr-3\/5:hover{
    padding-right     : 60% !important;
  }

  .xl\:hover\:pb-3\/5:hover{
    padding-bottom     : 60% !important;
  }

  .xl\:hover\:pl-3\/5:hover{
    padding-left     : 60% !important;
  }

  .xl\:hover\:pt-4\/5:hover{
    padding-top     : 80% !important;
  }

  .xl\:hover\:pr-4\/5:hover{
    padding-right     : 80% !important;
  }

  .xl\:hover\:pb-4\/5:hover{
    padding-bottom     : 80% !important;
  }

  .xl\:hover\:pl-4\/5:hover{
    padding-left     : 80% !important;
  }

  .xl\:hover\:pt-1\/6:hover{
    padding-top     : 16.666667% !important;
  }

  .xl\:hover\:pr-1\/6:hover{
    padding-right     : 16.666667% !important;
  }

  .xl\:hover\:pb-1\/6:hover{
    padding-bottom     : 16.666667% !important;
  }

  .xl\:hover\:pl-1\/6:hover{
    padding-left     : 16.666667% !important;
  }

  .xl\:hover\:pt-2\/6:hover{
    padding-top     : 33.333333% !important;
  }

  .xl\:hover\:pr-2\/6:hover{
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:pb-2\/6:hover{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:pl-2\/6:hover{
    padding-left     : 33.333333% !important;
  }

  .xl\:hover\:pt-3\/6:hover{
    padding-top     : 50% !important;
  }

  .xl\:hover\:pr-3\/6:hover{
    padding-right     : 50% !important;
  }

  .xl\:hover\:pb-3\/6:hover{
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:pl-3\/6:hover{
    padding-left     : 50% !important;
  }

  .xl\:hover\:pt-4\/6:hover{
    padding-top     : 66.666667% !important;
  }

  .xl\:hover\:pr-4\/6:hover{
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:pb-4\/6:hover{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:pl-4\/6:hover{
    padding-left     : 66.666667% !important;
  }

  .xl\:hover\:pt-5\/6:hover{
    padding-top     : 83.333333% !important;
  }

  .xl\:hover\:pr-5\/6:hover{
    padding-right     : 83.333333% !important;
  }

  .xl\:hover\:pb-5\/6:hover{
    padding-bottom     : 83.333333% !important;
  }

  .xl\:hover\:pl-5\/6:hover{
    padding-left     : 83.333333% !important;
  }

  .xl\:hover\:pt-1\/12:hover{
    padding-top     : 8.333333% !important;
  }

  .xl\:hover\:pr-1\/12:hover{
    padding-right     : 8.333333% !important;
  }

  .xl\:hover\:pb-1\/12:hover{
    padding-bottom     : 8.333333% !important;
  }

  .xl\:hover\:pl-1\/12:hover{
    padding-left     : 8.333333% !important;
  }

  .xl\:hover\:pt-2\/12:hover{
    padding-top     : 16.666667% !important;
  }

  .xl\:hover\:pr-2\/12:hover{
    padding-right     : 16.666667% !important;
  }

  .xl\:hover\:pb-2\/12:hover{
    padding-bottom     : 16.666667% !important;
  }

  .xl\:hover\:pl-2\/12:hover{
    padding-left     : 16.666667% !important;
  }

  .xl\:hover\:pt-3\/12:hover{
    padding-top     : 25% !important;
  }

  .xl\:hover\:pr-3\/12:hover{
    padding-right     : 25% !important;
  }

  .xl\:hover\:pb-3\/12:hover{
    padding-bottom     : 25% !important;
  }

  .xl\:hover\:pl-3\/12:hover{
    padding-left     : 25% !important;
  }

  .xl\:hover\:pt-4\/12:hover{
    padding-top     : 33.333333% !important;
  }

  .xl\:hover\:pr-4\/12:hover{
    padding-right     : 33.333333% !important;
  }

  .xl\:hover\:pb-4\/12:hover{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:hover\:pl-4\/12:hover{
    padding-left     : 33.333333% !important;
  }

  .xl\:hover\:pt-5\/12:hover{
    padding-top     : 41.666667% !important;
  }

  .xl\:hover\:pr-5\/12:hover{
    padding-right     : 41.666667% !important;
  }

  .xl\:hover\:pb-5\/12:hover{
    padding-bottom     : 41.666667% !important;
  }

  .xl\:hover\:pl-5\/12:hover{
    padding-left     : 41.666667% !important;
  }

  .xl\:hover\:pt-6\/12:hover{
    padding-top     : 50% !important;
  }

  .xl\:hover\:pr-6\/12:hover{
    padding-right     : 50% !important;
  }

  .xl\:hover\:pb-6\/12:hover{
    padding-bottom     : 50% !important;
  }

  .xl\:hover\:pl-6\/12:hover{
    padding-left     : 50% !important;
  }

  .xl\:hover\:pt-7\/12:hover{
    padding-top     : 58.333333% !important;
  }

  .xl\:hover\:pr-7\/12:hover{
    padding-right     : 58.333333% !important;
  }

  .xl\:hover\:pb-7\/12:hover{
    padding-bottom     : 58.333333% !important;
  }

  .xl\:hover\:pl-7\/12:hover{
    padding-left     : 58.333333% !important;
  }

  .xl\:hover\:pt-8\/12:hover{
    padding-top     : 66.666667% !important;
  }

  .xl\:hover\:pr-8\/12:hover{
    padding-right     : 66.666667% !important;
  }

  .xl\:hover\:pb-8\/12:hover{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:hover\:pl-8\/12:hover{
    padding-left     : 66.666667% !important;
  }

  .xl\:hover\:pt-9\/12:hover{
    padding-top     : 75% !important;
  }

  .xl\:hover\:pr-9\/12:hover{
    padding-right     : 75% !important;
  }

  .xl\:hover\:pb-9\/12:hover{
    padding-bottom     : 75% !important;
  }

  .xl\:hover\:pl-9\/12:hover{
    padding-left     : 75% !important;
  }

  .xl\:hover\:pt-10\/12:hover{
    padding-top     : 83.333333% !important;
  }

  .xl\:hover\:pr-10\/12:hover{
    padding-right     : 83.333333% !important;
  }

  .xl\:hover\:pb-10\/12:hover{
    padding-bottom     : 83.333333% !important;
  }

  .xl\:hover\:pl-10\/12:hover{
    padding-left     : 83.333333% !important;
  }

  .xl\:hover\:pt-11\/12:hover{
    padding-top     : 91.666667% !important;
  }

  .xl\:hover\:pr-11\/12:hover{
    padding-right     : 91.666667% !important;
  }

  .xl\:hover\:pb-11\/12:hover{
    padding-bottom     : 91.666667% !important;
  }

  .xl\:hover\:pl-11\/12:hover{
    padding-left     : 91.666667% !important;
  }

  .xl\:hover\:pt-full:hover{
    padding-top     : 100% !important;
  }

  .xl\:hover\:pr-full:hover{
    padding-right     : 100% !important;
  }

  .xl\:hover\:pb-full:hover{
    padding-bottom     : 100% !important;
  }

  .xl\:hover\:pl-full:hover{
    padding-left     : 100% !important;
  }

  .xl\:focus\:p-0:focus{
    padding     : 0 !important;
  }

  .xl\:focus\:p-1:focus{
    padding     : 0.25rem !important;
  }

  .xl\:focus\:p-2:focus{
    padding     : 0.5rem !important;
  }

  .xl\:focus\:p-3:focus{
    padding     : 0.75rem !important;
  }

  .xl\:focus\:p-4:focus{
    padding     : 1rem !important;
  }

  .xl\:focus\:p-5:focus{
    padding     : 1.25rem !important;
  }

  .xl\:focus\:p-6:focus{
    padding     : 1.5rem !important;
  }

  .xl\:focus\:p-7:focus{
    padding     : 1.75rem !important;
  }

  .xl\:focus\:p-8:focus{
    padding     : 2rem !important;
  }

  .xl\:focus\:p-9:focus{
    padding     : 2.25rem !important;
  }

  .xl\:focus\:p-10:focus{
    padding     : 2.5rem !important;
  }

  .xl\:focus\:p-11:focus{
    padding     : 2.75rem !important;
  }

  .xl\:focus\:p-12:focus{
    padding     : 3rem !important;
  }

  .xl\:focus\:p-13:focus{
    padding     : 3.25rem !important;
  }

  .xl\:focus\:p-14:focus{
    padding     : 3.5rem !important;
  }

  .xl\:focus\:p-15:focus{
    padding     : 3.75rem !important;
  }

  .xl\:focus\:p-16:focus{
    padding     : 4rem !important;
  }

  .xl\:focus\:p-20:focus{
    padding     : 5rem !important;
  }

  .xl\:focus\:p-24:focus{
    padding     : 6rem !important;
  }

  .xl\:focus\:p-28:focus{
    padding     : 7rem !important;
  }

  .xl\:focus\:p-32:focus{
    padding     : 8rem !important;
  }

  .xl\:focus\:p-36:focus{
    padding     : 9rem !important;
  }

  .xl\:focus\:p-40:focus{
    padding     : 10rem !important;
  }

  .xl\:focus\:p-44:focus{
    padding     : 11rem !important;
  }

  .xl\:focus\:p-48:focus{
    padding     : 12rem !important;
  }

  .xl\:focus\:p-52:focus{
    padding     : 13rem !important;
  }

  .xl\:focus\:p-56:focus{
    padding     : 14rem !important;
  }

  .xl\:focus\:p-60:focus{
    padding     : 15rem !important;
  }

  .xl\:focus\:p-64:focus{
    padding     : 16rem !important;
  }

  .xl\:focus\:p-72:focus{
    padding     : 18rem !important;
  }

  .xl\:focus\:p-80:focus{
    padding     : 20rem !important;
  }

  .xl\:focus\:p-96:focus{
    padding     : 24rem !important;
  }

  .xl\:focus\:p-px:focus{
    padding     : 1px !important;
  }

  .xl\:focus\:p-0\.5:focus{
    padding     : 0.125rem !important;
  }

  .xl\:focus\:p-1\.5:focus{
    padding     : 0.375rem !important;
  }

  .xl\:focus\:p-2\.5:focus{
    padding     : 0.625rem !important;
  }

  .xl\:focus\:p-3\.5:focus{
    padding     : 0.875rem !important;
  }

  .xl\:focus\:p-1\/2:focus{
    padding     : 50% !important;
  }

  .xl\:focus\:p-1\/3:focus{
    padding     : 33.333333% !important;
  }

  .xl\:focus\:p-2\/3:focus{
    padding     : 66.666667% !important;
  }

  .xl\:focus\:p-1\/4:focus{
    padding     : 25% !important;
  }

  .xl\:focus\:p-2\/4:focus{
    padding     : 50% !important;
  }

  .xl\:focus\:p-3\/4:focus{
    padding     : 75% !important;
  }

  .xl\:focus\:p-1\/5:focus{
    padding     : 20% !important;
  }

  .xl\:focus\:p-2\/5:focus{
    padding     : 40% !important;
  }

  .xl\:focus\:p-3\/5:focus{
    padding     : 60% !important;
  }

  .xl\:focus\:p-4\/5:focus{
    padding     : 80% !important;
  }

  .xl\:focus\:p-1\/6:focus{
    padding     : 16.666667% !important;
  }

  .xl\:focus\:p-2\/6:focus{
    padding     : 33.333333% !important;
  }

  .xl\:focus\:p-3\/6:focus{
    padding     : 50% !important;
  }

  .xl\:focus\:p-4\/6:focus{
    padding     : 66.666667% !important;
  }

  .xl\:focus\:p-5\/6:focus{
    padding     : 83.333333% !important;
  }

  .xl\:focus\:p-1\/12:focus{
    padding     : 8.333333% !important;
  }

  .xl\:focus\:p-2\/12:focus{
    padding     : 16.666667% !important;
  }

  .xl\:focus\:p-3\/12:focus{
    padding     : 25% !important;
  }

  .xl\:focus\:p-4\/12:focus{
    padding     : 33.333333% !important;
  }

  .xl\:focus\:p-5\/12:focus{
    padding     : 41.666667% !important;
  }

  .xl\:focus\:p-6\/12:focus{
    padding     : 50% !important;
  }

  .xl\:focus\:p-7\/12:focus{
    padding     : 58.333333% !important;
  }

  .xl\:focus\:p-8\/12:focus{
    padding     : 66.666667% !important;
  }

  .xl\:focus\:p-9\/12:focus{
    padding     : 75% !important;
  }

  .xl\:focus\:p-10\/12:focus{
    padding     : 83.333333% !important;
  }

  .xl\:focus\:p-11\/12:focus{
    padding     : 91.666667% !important;
  }

  .xl\:focus\:p-full:focus{
    padding     : 100% !important;
  }

  .xl\:focus\:py-0:focus{
    padding-top     : 0 !important;
    padding-bottom     : 0 !important;
  }

  .xl\:focus\:px-0:focus{
    padding-left     : 0 !important;
    padding-right     : 0 !important;
  }

  .xl\:focus\:py-1:focus{
    padding-top     : 0.25rem !important;
    padding-bottom     : 0.25rem !important;
  }

  .xl\:focus\:px-1:focus{
    padding-left     : 0.25rem !important;
    padding-right     : 0.25rem !important;
  }

  .xl\:focus\:py-2:focus{
    padding-top     : 0.5rem !important;
    padding-bottom     : 0.5rem !important;
  }

  .xl\:focus\:px-2:focus{
    padding-left     : 0.5rem !important;
    padding-right     : 0.5rem !important;
  }

  .xl\:focus\:py-3:focus{
    padding-top     : 0.75rem !important;
    padding-bottom     : 0.75rem !important;
  }

  .xl\:focus\:px-3:focus{
    padding-left     : 0.75rem !important;
    padding-right     : 0.75rem !important;
  }

  .xl\:focus\:py-4:focus{
    padding-top     : 1rem !important;
    padding-bottom     : 1rem !important;
  }

  .xl\:focus\:px-4:focus{
    padding-left     : 1rem !important;
    padding-right     : 1rem !important;
  }

  .xl\:focus\:py-5:focus{
    padding-top     : 1.25rem !important;
    padding-bottom     : 1.25rem !important;
  }

  .xl\:focus\:px-5:focus{
    padding-left     : 1.25rem !important;
    padding-right     : 1.25rem !important;
  }

  .xl\:focus\:py-6:focus{
    padding-top     : 1.5rem !important;
    padding-bottom     : 1.5rem !important;
  }

  .xl\:focus\:px-6:focus{
    padding-left     : 1.5rem !important;
    padding-right     : 1.5rem !important;
  }

  .xl\:focus\:py-7:focus{
    padding-top     : 1.75rem !important;
    padding-bottom     : 1.75rem !important;
  }

  .xl\:focus\:px-7:focus{
    padding-left     : 1.75rem !important;
    padding-right     : 1.75rem !important;
  }

  .xl\:focus\:py-8:focus{
    padding-top     : 2rem !important;
    padding-bottom     : 2rem !important;
  }

  .xl\:focus\:px-8:focus{
    padding-left     : 2rem !important;
    padding-right     : 2rem !important;
  }

  .xl\:focus\:py-9:focus{
    padding-top     : 2.25rem !important;
    padding-bottom     : 2.25rem !important;
  }

  .xl\:focus\:px-9:focus{
    padding-left     : 2.25rem !important;
    padding-right     : 2.25rem !important;
  }

  .xl\:focus\:py-10:focus{
    padding-top     : 2.5rem !important;
    padding-bottom     : 2.5rem !important;
  }

  .xl\:focus\:px-10:focus{
    padding-left     : 2.5rem !important;
    padding-right     : 2.5rem !important;
  }

  .xl\:focus\:py-11:focus{
    padding-top     : 2.75rem !important;
    padding-bottom     : 2.75rem !important;
  }

  .xl\:focus\:px-11:focus{
    padding-left     : 2.75rem !important;
    padding-right     : 2.75rem !important;
  }

  .xl\:focus\:py-12:focus{
    padding-top     : 3rem !important;
    padding-bottom     : 3rem !important;
  }

  .xl\:focus\:px-12:focus{
    padding-left     : 3rem !important;
    padding-right     : 3rem !important;
  }

  .xl\:focus\:py-13:focus{
    padding-top     : 3.25rem !important;
    padding-bottom     : 3.25rem !important;
  }

  .xl\:focus\:px-13:focus{
    padding-left     : 3.25rem !important;
    padding-right     : 3.25rem !important;
  }

  .xl\:focus\:py-14:focus{
    padding-top     : 3.5rem !important;
    padding-bottom     : 3.5rem !important;
  }

  .xl\:focus\:px-14:focus{
    padding-left     : 3.5rem !important;
    padding-right     : 3.5rem !important;
  }

  .xl\:focus\:py-15:focus{
    padding-top     : 3.75rem !important;
    padding-bottom     : 3.75rem !important;
  }

  .xl\:focus\:px-15:focus{
    padding-left     : 3.75rem !important;
    padding-right     : 3.75rem !important;
  }

  .xl\:focus\:py-16:focus{
    padding-top     : 4rem !important;
    padding-bottom     : 4rem !important;
  }

  .xl\:focus\:px-16:focus{
    padding-left     : 4rem !important;
    padding-right     : 4rem !important;
  }

  .xl\:focus\:py-20:focus{
    padding-top     : 5rem !important;
    padding-bottom     : 5rem !important;
  }

  .xl\:focus\:px-20:focus{
    padding-left     : 5rem !important;
    padding-right     : 5rem !important;
  }

  .xl\:focus\:py-24:focus{
    padding-top     : 6rem !important;
    padding-bottom     : 6rem !important;
  }

  .xl\:focus\:px-24:focus{
    padding-left     : 6rem !important;
    padding-right     : 6rem !important;
  }

  .xl\:focus\:py-28:focus{
    padding-top     : 7rem !important;
    padding-bottom     : 7rem !important;
  }

  .xl\:focus\:px-28:focus{
    padding-left     : 7rem !important;
    padding-right     : 7rem !important;
  }

  .xl\:focus\:py-32:focus{
    padding-top     : 8rem !important;
    padding-bottom     : 8rem !important;
  }

  .xl\:focus\:px-32:focus{
    padding-left     : 8rem !important;
    padding-right     : 8rem !important;
  }

  .xl\:focus\:py-36:focus{
    padding-top     : 9rem !important;
    padding-bottom     : 9rem !important;
  }

  .xl\:focus\:px-36:focus{
    padding-left     : 9rem !important;
    padding-right     : 9rem !important;
  }

  .xl\:focus\:py-40:focus{
    padding-top     : 10rem !important;
    padding-bottom     : 10rem !important;
  }

  .xl\:focus\:px-40:focus{
    padding-left     : 10rem !important;
    padding-right     : 10rem !important;
  }

  .xl\:focus\:py-44:focus{
    padding-top     : 11rem !important;
    padding-bottom     : 11rem !important;
  }

  .xl\:focus\:px-44:focus{
    padding-left     : 11rem !important;
    padding-right     : 11rem !important;
  }

  .xl\:focus\:py-48:focus{
    padding-top     : 12rem !important;
    padding-bottom     : 12rem !important;
  }

  .xl\:focus\:px-48:focus{
    padding-left     : 12rem !important;
    padding-right     : 12rem !important;
  }

  .xl\:focus\:py-52:focus{
    padding-top     : 13rem !important;
    padding-bottom     : 13rem !important;
  }

  .xl\:focus\:px-52:focus{
    padding-left     : 13rem !important;
    padding-right     : 13rem !important;
  }

  .xl\:focus\:py-56:focus{
    padding-top     : 14rem !important;
    padding-bottom     : 14rem !important;
  }

  .xl\:focus\:px-56:focus{
    padding-left     : 14rem !important;
    padding-right     : 14rem !important;
  }

  .xl\:focus\:py-60:focus{
    padding-top     : 15rem !important;
    padding-bottom     : 15rem !important;
  }

  .xl\:focus\:px-60:focus{
    padding-left     : 15rem !important;
    padding-right     : 15rem !important;
  }

  .xl\:focus\:py-64:focus{
    padding-top     : 16rem !important;
    padding-bottom     : 16rem !important;
  }

  .xl\:focus\:px-64:focus{
    padding-left     : 16rem !important;
    padding-right     : 16rem !important;
  }

  .xl\:focus\:py-72:focus{
    padding-top     : 18rem !important;
    padding-bottom     : 18rem !important;
  }

  .xl\:focus\:px-72:focus{
    padding-left     : 18rem !important;
    padding-right     : 18rem !important;
  }

  .xl\:focus\:py-80:focus{
    padding-top     : 20rem !important;
    padding-bottom     : 20rem !important;
  }

  .xl\:focus\:px-80:focus{
    padding-left     : 20rem !important;
    padding-right     : 20rem !important;
  }

  .xl\:focus\:py-96:focus{
    padding-top     : 24rem !important;
    padding-bottom     : 24rem !important;
  }

  .xl\:focus\:px-96:focus{
    padding-left     : 24rem !important;
    padding-right     : 24rem !important;
  }

  .xl\:focus\:py-px:focus{
    padding-top     : 1px !important;
    padding-bottom     : 1px !important;
  }

  .xl\:focus\:px-px:focus{
    padding-left     : 1px !important;
    padding-right     : 1px !important;
  }

  .xl\:focus\:py-0\.5:focus{
    padding-top     : 0.125rem !important;
    padding-bottom     : 0.125rem !important;
  }

  .xl\:focus\:px-0\.5:focus{
    padding-left     : 0.125rem !important;
    padding-right     : 0.125rem !important;
  }

  .xl\:focus\:py-1\.5:focus{
    padding-top     : 0.375rem !important;
    padding-bottom     : 0.375rem !important;
  }

  .xl\:focus\:px-1\.5:focus{
    padding-left     : 0.375rem !important;
    padding-right     : 0.375rem !important;
  }

  .xl\:focus\:py-2\.5:focus{
    padding-top     : 0.625rem !important;
    padding-bottom     : 0.625rem !important;
  }

  .xl\:focus\:px-2\.5:focus{
    padding-left     : 0.625rem !important;
    padding-right     : 0.625rem !important;
  }

  .xl\:focus\:py-3\.5:focus{
    padding-top     : 0.875rem !important;
    padding-bottom     : 0.875rem !important;
  }

  .xl\:focus\:px-3\.5:focus{
    padding-left     : 0.875rem !important;
    padding-right     : 0.875rem !important;
  }

  .xl\:focus\:py-1\/2:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:px-1\/2:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:focus\:py-1\/3:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:px-1\/3:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:py-2\/3:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:px-2\/3:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:py-1\/4:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .xl\:focus\:px-1\/4:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .xl\:focus\:py-2\/4:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:px-2\/4:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:focus\:py-3\/4:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .xl\:focus\:px-3\/4:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .xl\:focus\:py-1\/5:focus{
    padding-top     : 20% !important;
    padding-bottom     : 20% !important;
  }

  .xl\:focus\:px-1\/5:focus{
    padding-left     : 20% !important;
    padding-right     : 20% !important;
  }

  .xl\:focus\:py-2\/5:focus{
    padding-top     : 40% !important;
    padding-bottom     : 40% !important;
  }

  .xl\:focus\:px-2\/5:focus{
    padding-left     : 40% !important;
    padding-right     : 40% !important;
  }

  .xl\:focus\:py-3\/5:focus{
    padding-top     : 60% !important;
    padding-bottom     : 60% !important;
  }

  .xl\:focus\:px-3\/5:focus{
    padding-left     : 60% !important;
    padding-right     : 60% !important;
  }

  .xl\:focus\:py-4\/5:focus{
    padding-top     : 80% !important;
    padding-bottom     : 80% !important;
  }

  .xl\:focus\:px-4\/5:focus{
    padding-left     : 80% !important;
    padding-right     : 80% !important;
  }

  .xl\:focus\:py-1\/6:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .xl\:focus\:px-1\/6:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .xl\:focus\:py-2\/6:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:px-2\/6:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:py-3\/6:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:px-3\/6:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:focus\:py-4\/6:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:px-4\/6:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:py-5\/6:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .xl\:focus\:px-5\/6:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .xl\:focus\:py-1\/12:focus{
    padding-top     : 8.333333% !important;
    padding-bottom     : 8.333333% !important;
  }

  .xl\:focus\:px-1\/12:focus{
    padding-left     : 8.333333% !important;
    padding-right     : 8.333333% !important;
  }

  .xl\:focus\:py-2\/12:focus{
    padding-top     : 16.666667% !important;
    padding-bottom     : 16.666667% !important;
  }

  .xl\:focus\:px-2\/12:focus{
    padding-left     : 16.666667% !important;
    padding-right     : 16.666667% !important;
  }

  .xl\:focus\:py-3\/12:focus{
    padding-top     : 25% !important;
    padding-bottom     : 25% !important;
  }

  .xl\:focus\:px-3\/12:focus{
    padding-left     : 25% !important;
    padding-right     : 25% !important;
  }

  .xl\:focus\:py-4\/12:focus{
    padding-top     : 33.333333% !important;
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:px-4\/12:focus{
    padding-left     : 33.333333% !important;
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:py-5\/12:focus{
    padding-top     : 41.666667% !important;
    padding-bottom     : 41.666667% !important;
  }

  .xl\:focus\:px-5\/12:focus{
    padding-left     : 41.666667% !important;
    padding-right     : 41.666667% !important;
  }

  .xl\:focus\:py-6\/12:focus{
    padding-top     : 50% !important;
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:px-6\/12:focus{
    padding-left     : 50% !important;
    padding-right     : 50% !important;
  }

  .xl\:focus\:py-7\/12:focus{
    padding-top     : 58.333333% !important;
    padding-bottom     : 58.333333% !important;
  }

  .xl\:focus\:px-7\/12:focus{
    padding-left     : 58.333333% !important;
    padding-right     : 58.333333% !important;
  }

  .xl\:focus\:py-8\/12:focus{
    padding-top     : 66.666667% !important;
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:px-8\/12:focus{
    padding-left     : 66.666667% !important;
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:py-9\/12:focus{
    padding-top     : 75% !important;
    padding-bottom     : 75% !important;
  }

  .xl\:focus\:px-9\/12:focus{
    padding-left     : 75% !important;
    padding-right     : 75% !important;
  }

  .xl\:focus\:py-10\/12:focus{
    padding-top     : 83.333333% !important;
    padding-bottom     : 83.333333% !important;
  }

  .xl\:focus\:px-10\/12:focus{
    padding-left     : 83.333333% !important;
    padding-right     : 83.333333% !important;
  }

  .xl\:focus\:py-11\/12:focus{
    padding-top     : 91.666667% !important;
    padding-bottom     : 91.666667% !important;
  }

  .xl\:focus\:px-11\/12:focus{
    padding-left     : 91.666667% !important;
    padding-right     : 91.666667% !important;
  }

  .xl\:focus\:py-full:focus{
    padding-top     : 100% !important;
    padding-bottom     : 100% !important;
  }

  .xl\:focus\:px-full:focus{
    padding-left     : 100% !important;
    padding-right     : 100% !important;
  }

  .xl\:focus\:pt-0:focus{
    padding-top     : 0 !important;
  }

  .xl\:focus\:pr-0:focus{
    padding-right     : 0 !important;
  }

  .xl\:focus\:pb-0:focus{
    padding-bottom     : 0 !important;
  }

  .xl\:focus\:pl-0:focus{
    padding-left     : 0 !important;
  }

  .xl\:focus\:pt-1:focus{
    padding-top     : 0.25rem !important;
  }

  .xl\:focus\:pr-1:focus{
    padding-right     : 0.25rem !important;
  }

  .xl\:focus\:pb-1:focus{
    padding-bottom     : 0.25rem !important;
  }

  .xl\:focus\:pl-1:focus{
    padding-left     : 0.25rem !important;
  }

  .xl\:focus\:pt-2:focus{
    padding-top     : 0.5rem !important;
  }

  .xl\:focus\:pr-2:focus{
    padding-right     : 0.5rem !important;
  }

  .xl\:focus\:pb-2:focus{
    padding-bottom     : 0.5rem !important;
  }

  .xl\:focus\:pl-2:focus{
    padding-left     : 0.5rem !important;
  }

  .xl\:focus\:pt-3:focus{
    padding-top     : 0.75rem !important;
  }

  .xl\:focus\:pr-3:focus{
    padding-right     : 0.75rem !important;
  }

  .xl\:focus\:pb-3:focus{
    padding-bottom     : 0.75rem !important;
  }

  .xl\:focus\:pl-3:focus{
    padding-left     : 0.75rem !important;
  }

  .xl\:focus\:pt-4:focus{
    padding-top     : 1rem !important;
  }

  .xl\:focus\:pr-4:focus{
    padding-right     : 1rem !important;
  }

  .xl\:focus\:pb-4:focus{
    padding-bottom     : 1rem !important;
  }

  .xl\:focus\:pl-4:focus{
    padding-left     : 1rem !important;
  }

  .xl\:focus\:pt-5:focus{
    padding-top     : 1.25rem !important;
  }

  .xl\:focus\:pr-5:focus{
    padding-right     : 1.25rem !important;
  }

  .xl\:focus\:pb-5:focus{
    padding-bottom     : 1.25rem !important;
  }

  .xl\:focus\:pl-5:focus{
    padding-left     : 1.25rem !important;
  }

  .xl\:focus\:pt-6:focus{
    padding-top     : 1.5rem !important;
  }

  .xl\:focus\:pr-6:focus{
    padding-right     : 1.5rem !important;
  }

  .xl\:focus\:pb-6:focus{
    padding-bottom     : 1.5rem !important;
  }

  .xl\:focus\:pl-6:focus{
    padding-left     : 1.5rem !important;
  }

  .xl\:focus\:pt-7:focus{
    padding-top     : 1.75rem !important;
  }

  .xl\:focus\:pr-7:focus{
    padding-right     : 1.75rem !important;
  }

  .xl\:focus\:pb-7:focus{
    padding-bottom     : 1.75rem !important;
  }

  .xl\:focus\:pl-7:focus{
    padding-left     : 1.75rem !important;
  }

  .xl\:focus\:pt-8:focus{
    padding-top     : 2rem !important;
  }

  .xl\:focus\:pr-8:focus{
    padding-right     : 2rem !important;
  }

  .xl\:focus\:pb-8:focus{
    padding-bottom     : 2rem !important;
  }

  .xl\:focus\:pl-8:focus{
    padding-left     : 2rem !important;
  }

  .xl\:focus\:pt-9:focus{
    padding-top     : 2.25rem !important;
  }

  .xl\:focus\:pr-9:focus{
    padding-right     : 2.25rem !important;
  }

  .xl\:focus\:pb-9:focus{
    padding-bottom     : 2.25rem !important;
  }

  .xl\:focus\:pl-9:focus{
    padding-left     : 2.25rem !important;
  }

  .xl\:focus\:pt-10:focus{
    padding-top     : 2.5rem !important;
  }

  .xl\:focus\:pr-10:focus{
    padding-right     : 2.5rem !important;
  }

  .xl\:focus\:pb-10:focus{
    padding-bottom     : 2.5rem !important;
  }

  .xl\:focus\:pl-10:focus{
    padding-left     : 2.5rem !important;
  }

  .xl\:focus\:pt-11:focus{
    padding-top     : 2.75rem !important;
  }

  .xl\:focus\:pr-11:focus{
    padding-right     : 2.75rem !important;
  }

  .xl\:focus\:pb-11:focus{
    padding-bottom     : 2.75rem !important;
  }

  .xl\:focus\:pl-11:focus{
    padding-left     : 2.75rem !important;
  }

  .xl\:focus\:pt-12:focus{
    padding-top     : 3rem !important;
  }

  .xl\:focus\:pr-12:focus{
    padding-right     : 3rem !important;
  }

  .xl\:focus\:pb-12:focus{
    padding-bottom     : 3rem !important;
  }

  .xl\:focus\:pl-12:focus{
    padding-left     : 3rem !important;
  }

  .xl\:focus\:pt-13:focus{
    padding-top     : 3.25rem !important;
  }

  .xl\:focus\:pr-13:focus{
    padding-right     : 3.25rem !important;
  }

  .xl\:focus\:pb-13:focus{
    padding-bottom     : 3.25rem !important;
  }

  .xl\:focus\:pl-13:focus{
    padding-left     : 3.25rem !important;
  }

  .xl\:focus\:pt-14:focus{
    padding-top     : 3.5rem !important;
  }

  .xl\:focus\:pr-14:focus{
    padding-right     : 3.5rem !important;
  }

  .xl\:focus\:pb-14:focus{
    padding-bottom     : 3.5rem !important;
  }

  .xl\:focus\:pl-14:focus{
    padding-left     : 3.5rem !important;
  }

  .xl\:focus\:pt-15:focus{
    padding-top     : 3.75rem !important;
  }

  .xl\:focus\:pr-15:focus{
    padding-right     : 3.75rem !important;
  }

  .xl\:focus\:pb-15:focus{
    padding-bottom     : 3.75rem !important;
  }

  .xl\:focus\:pl-15:focus{
    padding-left     : 3.75rem !important;
  }

  .xl\:focus\:pt-16:focus{
    padding-top     : 4rem !important;
  }

  .xl\:focus\:pr-16:focus{
    padding-right     : 4rem !important;
  }

  .xl\:focus\:pb-16:focus{
    padding-bottom     : 4rem !important;
  }

  .xl\:focus\:pl-16:focus{
    padding-left     : 4rem !important;
  }

  .xl\:focus\:pt-20:focus{
    padding-top     : 5rem !important;
  }

  .xl\:focus\:pr-20:focus{
    padding-right     : 5rem !important;
  }

  .xl\:focus\:pb-20:focus{
    padding-bottom     : 5rem !important;
  }

  .xl\:focus\:pl-20:focus{
    padding-left     : 5rem !important;
  }

  .xl\:focus\:pt-24:focus{
    padding-top     : 6rem !important;
  }

  .xl\:focus\:pr-24:focus{
    padding-right     : 6rem !important;
  }

  .xl\:focus\:pb-24:focus{
    padding-bottom     : 6rem !important;
  }

  .xl\:focus\:pl-24:focus{
    padding-left     : 6rem !important;
  }

  .xl\:focus\:pt-28:focus{
    padding-top     : 7rem !important;
  }

  .xl\:focus\:pr-28:focus{
    padding-right     : 7rem !important;
  }

  .xl\:focus\:pb-28:focus{
    padding-bottom     : 7rem !important;
  }

  .xl\:focus\:pl-28:focus{
    padding-left     : 7rem !important;
  }

  .xl\:focus\:pt-32:focus{
    padding-top     : 8rem !important;
  }

  .xl\:focus\:pr-32:focus{
    padding-right     : 8rem !important;
  }

  .xl\:focus\:pb-32:focus{
    padding-bottom     : 8rem !important;
  }

  .xl\:focus\:pl-32:focus{
    padding-left     : 8rem !important;
  }

  .xl\:focus\:pt-36:focus{
    padding-top     : 9rem !important;
  }

  .xl\:focus\:pr-36:focus{
    padding-right     : 9rem !important;
  }

  .xl\:focus\:pb-36:focus{
    padding-bottom     : 9rem !important;
  }

  .xl\:focus\:pl-36:focus{
    padding-left     : 9rem !important;
  }

  .xl\:focus\:pt-40:focus{
    padding-top     : 10rem !important;
  }

  .xl\:focus\:pr-40:focus{
    padding-right     : 10rem !important;
  }

  .xl\:focus\:pb-40:focus{
    padding-bottom     : 10rem !important;
  }

  .xl\:focus\:pl-40:focus{
    padding-left     : 10rem !important;
  }

  .xl\:focus\:pt-44:focus{
    padding-top     : 11rem !important;
  }

  .xl\:focus\:pr-44:focus{
    padding-right     : 11rem !important;
  }

  .xl\:focus\:pb-44:focus{
    padding-bottom     : 11rem !important;
  }

  .xl\:focus\:pl-44:focus{
    padding-left     : 11rem !important;
  }

  .xl\:focus\:pt-48:focus{
    padding-top     : 12rem !important;
  }

  .xl\:focus\:pr-48:focus{
    padding-right     : 12rem !important;
  }

  .xl\:focus\:pb-48:focus{
    padding-bottom     : 12rem !important;
  }

  .xl\:focus\:pl-48:focus{
    padding-left     : 12rem !important;
  }

  .xl\:focus\:pt-52:focus{
    padding-top     : 13rem !important;
  }

  .xl\:focus\:pr-52:focus{
    padding-right     : 13rem !important;
  }

  .xl\:focus\:pb-52:focus{
    padding-bottom     : 13rem !important;
  }

  .xl\:focus\:pl-52:focus{
    padding-left     : 13rem !important;
  }

  .xl\:focus\:pt-56:focus{
    padding-top     : 14rem !important;
  }

  .xl\:focus\:pr-56:focus{
    padding-right     : 14rem !important;
  }

  .xl\:focus\:pb-56:focus{
    padding-bottom     : 14rem !important;
  }

  .xl\:focus\:pl-56:focus{
    padding-left     : 14rem !important;
  }

  .xl\:focus\:pt-60:focus{
    padding-top     : 15rem !important;
  }

  .xl\:focus\:pr-60:focus{
    padding-right     : 15rem !important;
  }

  .xl\:focus\:pb-60:focus{
    padding-bottom     : 15rem !important;
  }

  .xl\:focus\:pl-60:focus{
    padding-left     : 15rem !important;
  }

  .xl\:focus\:pt-64:focus{
    padding-top     : 16rem !important;
  }

  .xl\:focus\:pr-64:focus{
    padding-right     : 16rem !important;
  }

  .xl\:focus\:pb-64:focus{
    padding-bottom     : 16rem !important;
  }

  .xl\:focus\:pl-64:focus{
    padding-left     : 16rem !important;
  }

  .xl\:focus\:pt-72:focus{
    padding-top     : 18rem !important;
  }

  .xl\:focus\:pr-72:focus{
    padding-right     : 18rem !important;
  }

  .xl\:focus\:pb-72:focus{
    padding-bottom     : 18rem !important;
  }

  .xl\:focus\:pl-72:focus{
    padding-left     : 18rem !important;
  }

  .xl\:focus\:pt-80:focus{
    padding-top     : 20rem !important;
  }

  .xl\:focus\:pr-80:focus{
    padding-right     : 20rem !important;
  }

  .xl\:focus\:pb-80:focus{
    padding-bottom     : 20rem !important;
  }

  .xl\:focus\:pl-80:focus{
    padding-left     : 20rem !important;
  }

  .xl\:focus\:pt-96:focus{
    padding-top     : 24rem !important;
  }

  .xl\:focus\:pr-96:focus{
    padding-right     : 24rem !important;
  }

  .xl\:focus\:pb-96:focus{
    padding-bottom     : 24rem !important;
  }

  .xl\:focus\:pl-96:focus{
    padding-left     : 24rem !important;
  }

  .xl\:focus\:pt-px:focus{
    padding-top     : 1px !important;
  }

  .xl\:focus\:pr-px:focus{
    padding-right     : 1px !important;
  }

  .xl\:focus\:pb-px:focus{
    padding-bottom     : 1px !important;
  }

  .xl\:focus\:pl-px:focus{
    padding-left     : 1px !important;
  }

  .xl\:focus\:pt-0\.5:focus{
    padding-top     : 0.125rem !important;
  }

  .xl\:focus\:pr-0\.5:focus{
    padding-right     : 0.125rem !important;
  }

  .xl\:focus\:pb-0\.5:focus{
    padding-bottom     : 0.125rem !important;
  }

  .xl\:focus\:pl-0\.5:focus{
    padding-left     : 0.125rem !important;
  }

  .xl\:focus\:pt-1\.5:focus{
    padding-top     : 0.375rem !important;
  }

  .xl\:focus\:pr-1\.5:focus{
    padding-right     : 0.375rem !important;
  }

  .xl\:focus\:pb-1\.5:focus{
    padding-bottom     : 0.375rem !important;
  }

  .xl\:focus\:pl-1\.5:focus{
    padding-left     : 0.375rem !important;
  }

  .xl\:focus\:pt-2\.5:focus{
    padding-top     : 0.625rem !important;
  }

  .xl\:focus\:pr-2\.5:focus{
    padding-right     : 0.625rem !important;
  }

  .xl\:focus\:pb-2\.5:focus{
    padding-bottom     : 0.625rem !important;
  }

  .xl\:focus\:pl-2\.5:focus{
    padding-left     : 0.625rem !important;
  }

  .xl\:focus\:pt-3\.5:focus{
    padding-top     : 0.875rem !important;
  }

  .xl\:focus\:pr-3\.5:focus{
    padding-right     : 0.875rem !important;
  }

  .xl\:focus\:pb-3\.5:focus{
    padding-bottom     : 0.875rem !important;
  }

  .xl\:focus\:pl-3\.5:focus{
    padding-left     : 0.875rem !important;
  }

  .xl\:focus\:pt-1\/2:focus{
    padding-top     : 50% !important;
  }

  .xl\:focus\:pr-1\/2:focus{
    padding-right     : 50% !important;
  }

  .xl\:focus\:pb-1\/2:focus{
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:pl-1\/2:focus{
    padding-left     : 50% !important;
  }

  .xl\:focus\:pt-1\/3:focus{
    padding-top     : 33.333333% !important;
  }

  .xl\:focus\:pr-1\/3:focus{
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:pb-1\/3:focus{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:pl-1\/3:focus{
    padding-left     : 33.333333% !important;
  }

  .xl\:focus\:pt-2\/3:focus{
    padding-top     : 66.666667% !important;
  }

  .xl\:focus\:pr-2\/3:focus{
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:pb-2\/3:focus{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:pl-2\/3:focus{
    padding-left     : 66.666667% !important;
  }

  .xl\:focus\:pt-1\/4:focus{
    padding-top     : 25% !important;
  }

  .xl\:focus\:pr-1\/4:focus{
    padding-right     : 25% !important;
  }

  .xl\:focus\:pb-1\/4:focus{
    padding-bottom     : 25% !important;
  }

  .xl\:focus\:pl-1\/4:focus{
    padding-left     : 25% !important;
  }

  .xl\:focus\:pt-2\/4:focus{
    padding-top     : 50% !important;
  }

  .xl\:focus\:pr-2\/4:focus{
    padding-right     : 50% !important;
  }

  .xl\:focus\:pb-2\/4:focus{
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:pl-2\/4:focus{
    padding-left     : 50% !important;
  }

  .xl\:focus\:pt-3\/4:focus{
    padding-top     : 75% !important;
  }

  .xl\:focus\:pr-3\/4:focus{
    padding-right     : 75% !important;
  }

  .xl\:focus\:pb-3\/4:focus{
    padding-bottom     : 75% !important;
  }

  .xl\:focus\:pl-3\/4:focus{
    padding-left     : 75% !important;
  }

  .xl\:focus\:pt-1\/5:focus{
    padding-top     : 20% !important;
  }

  .xl\:focus\:pr-1\/5:focus{
    padding-right     : 20% !important;
  }

  .xl\:focus\:pb-1\/5:focus{
    padding-bottom     : 20% !important;
  }

  .xl\:focus\:pl-1\/5:focus{
    padding-left     : 20% !important;
  }

  .xl\:focus\:pt-2\/5:focus{
    padding-top     : 40% !important;
  }

  .xl\:focus\:pr-2\/5:focus{
    padding-right     : 40% !important;
  }

  .xl\:focus\:pb-2\/5:focus{
    padding-bottom     : 40% !important;
  }

  .xl\:focus\:pl-2\/5:focus{
    padding-left     : 40% !important;
  }

  .xl\:focus\:pt-3\/5:focus{
    padding-top     : 60% !important;
  }

  .xl\:focus\:pr-3\/5:focus{
    padding-right     : 60% !important;
  }

  .xl\:focus\:pb-3\/5:focus{
    padding-bottom     : 60% !important;
  }

  .xl\:focus\:pl-3\/5:focus{
    padding-left     : 60% !important;
  }

  .xl\:focus\:pt-4\/5:focus{
    padding-top     : 80% !important;
  }

  .xl\:focus\:pr-4\/5:focus{
    padding-right     : 80% !important;
  }

  .xl\:focus\:pb-4\/5:focus{
    padding-bottom     : 80% !important;
  }

  .xl\:focus\:pl-4\/5:focus{
    padding-left     : 80% !important;
  }

  .xl\:focus\:pt-1\/6:focus{
    padding-top     : 16.666667% !important;
  }

  .xl\:focus\:pr-1\/6:focus{
    padding-right     : 16.666667% !important;
  }

  .xl\:focus\:pb-1\/6:focus{
    padding-bottom     : 16.666667% !important;
  }

  .xl\:focus\:pl-1\/6:focus{
    padding-left     : 16.666667% !important;
  }

  .xl\:focus\:pt-2\/6:focus{
    padding-top     : 33.333333% !important;
  }

  .xl\:focus\:pr-2\/6:focus{
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:pb-2\/6:focus{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:pl-2\/6:focus{
    padding-left     : 33.333333% !important;
  }

  .xl\:focus\:pt-3\/6:focus{
    padding-top     : 50% !important;
  }

  .xl\:focus\:pr-3\/6:focus{
    padding-right     : 50% !important;
  }

  .xl\:focus\:pb-3\/6:focus{
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:pl-3\/6:focus{
    padding-left     : 50% !important;
  }

  .xl\:focus\:pt-4\/6:focus{
    padding-top     : 66.666667% !important;
  }

  .xl\:focus\:pr-4\/6:focus{
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:pb-4\/6:focus{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:pl-4\/6:focus{
    padding-left     : 66.666667% !important;
  }

  .xl\:focus\:pt-5\/6:focus{
    padding-top     : 83.333333% !important;
  }

  .xl\:focus\:pr-5\/6:focus{
    padding-right     : 83.333333% !important;
  }

  .xl\:focus\:pb-5\/6:focus{
    padding-bottom     : 83.333333% !important;
  }

  .xl\:focus\:pl-5\/6:focus{
    padding-left     : 83.333333% !important;
  }

  .xl\:focus\:pt-1\/12:focus{
    padding-top     : 8.333333% !important;
  }

  .xl\:focus\:pr-1\/12:focus{
    padding-right     : 8.333333% !important;
  }

  .xl\:focus\:pb-1\/12:focus{
    padding-bottom     : 8.333333% !important;
  }

  .xl\:focus\:pl-1\/12:focus{
    padding-left     : 8.333333% !important;
  }

  .xl\:focus\:pt-2\/12:focus{
    padding-top     : 16.666667% !important;
  }

  .xl\:focus\:pr-2\/12:focus{
    padding-right     : 16.666667% !important;
  }

  .xl\:focus\:pb-2\/12:focus{
    padding-bottom     : 16.666667% !important;
  }

  .xl\:focus\:pl-2\/12:focus{
    padding-left     : 16.666667% !important;
  }

  .xl\:focus\:pt-3\/12:focus{
    padding-top     : 25% !important;
  }

  .xl\:focus\:pr-3\/12:focus{
    padding-right     : 25% !important;
  }

  .xl\:focus\:pb-3\/12:focus{
    padding-bottom     : 25% !important;
  }

  .xl\:focus\:pl-3\/12:focus{
    padding-left     : 25% !important;
  }

  .xl\:focus\:pt-4\/12:focus{
    padding-top     : 33.333333% !important;
  }

  .xl\:focus\:pr-4\/12:focus{
    padding-right     : 33.333333% !important;
  }

  .xl\:focus\:pb-4\/12:focus{
    padding-bottom     : 33.333333% !important;
  }

  .xl\:focus\:pl-4\/12:focus{
    padding-left     : 33.333333% !important;
  }

  .xl\:focus\:pt-5\/12:focus{
    padding-top     : 41.666667% !important;
  }

  .xl\:focus\:pr-5\/12:focus{
    padding-right     : 41.666667% !important;
  }

  .xl\:focus\:pb-5\/12:focus{
    padding-bottom     : 41.666667% !important;
  }

  .xl\:focus\:pl-5\/12:focus{
    padding-left     : 41.666667% !important;
  }

  .xl\:focus\:pt-6\/12:focus{
    padding-top     : 50% !important;
  }

  .xl\:focus\:pr-6\/12:focus{
    padding-right     : 50% !important;
  }

  .xl\:focus\:pb-6\/12:focus{
    padding-bottom     : 50% !important;
  }

  .xl\:focus\:pl-6\/12:focus{
    padding-left     : 50% !important;
  }

  .xl\:focus\:pt-7\/12:focus{
    padding-top     : 58.333333% !important;
  }

  .xl\:focus\:pr-7\/12:focus{
    padding-right     : 58.333333% !important;
  }

  .xl\:focus\:pb-7\/12:focus{
    padding-bottom     : 58.333333% !important;
  }

  .xl\:focus\:pl-7\/12:focus{
    padding-left     : 58.333333% !important;
  }

  .xl\:focus\:pt-8\/12:focus{
    padding-top     : 66.666667% !important;
  }

  .xl\:focus\:pr-8\/12:focus{
    padding-right     : 66.666667% !important;
  }

  .xl\:focus\:pb-8\/12:focus{
    padding-bottom     : 66.666667% !important;
  }

  .xl\:focus\:pl-8\/12:focus{
    padding-left     : 66.666667% !important;
  }

  .xl\:focus\:pt-9\/12:focus{
    padding-top     : 75% !important;
  }

  .xl\:focus\:pr-9\/12:focus{
    padding-right     : 75% !important;
  }

  .xl\:focus\:pb-9\/12:focus{
    padding-bottom     : 75% !important;
  }

  .xl\:focus\:pl-9\/12:focus{
    padding-left     : 75% !important;
  }

  .xl\:focus\:pt-10\/12:focus{
    padding-top     : 83.333333% !important;
  }

  .xl\:focus\:pr-10\/12:focus{
    padding-right     : 83.333333% !important;
  }

  .xl\:focus\:pb-10\/12:focus{
    padding-bottom     : 83.333333% !important;
  }

  .xl\:focus\:pl-10\/12:focus{
    padding-left     : 83.333333% !important;
  }

  .xl\:focus\:pt-11\/12:focus{
    padding-top     : 91.666667% !important;
  }

  .xl\:focus\:pr-11\/12:focus{
    padding-right     : 91.666667% !important;
  }

  .xl\:focus\:pb-11\/12:focus{
    padding-bottom     : 91.666667% !important;
  }

  .xl\:focus\:pl-11\/12:focus{
    padding-left     : 91.666667% !important;
  }

  .xl\:focus\:pt-full:focus{
    padding-top     : 100% !important;
  }

  .xl\:focus\:pr-full:focus{
    padding-right     : 100% !important;
  }

  .xl\:focus\:pb-full:focus{
    padding-bottom     : 100% !important;
  }

  .xl\:focus\:pl-full:focus{
    padding-left     : 100% !important;
  }

  .xl\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .xl\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .xl\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-transparent::-moz-placeholder{
    color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:placeholder-transparent:-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:placeholder-transparent::-ms-input-placeholder{
    color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:placeholder-transparent::placeholder{
    color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:placeholder-white::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-white:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-white::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-black::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-black:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-black::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-cool-gray-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-red-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-orange-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-yellow-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-green-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-teal-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-indigo-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-purple-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-50::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-50:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-50::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-50::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-100::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-200::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-200:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-200::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-200::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-300::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-300:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-300::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-300::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-400::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-400:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-400::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-400::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-500::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-500:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-500::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-500::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-600::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-600:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-600::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-600::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-700::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-700:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-700::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-700::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-800::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-800:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-800::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-800::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-900::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-900:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-900::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-pink-900::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-brand::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-brand:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-brand::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:placeholder-blue-brand::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-transparent:hover::-moz-placeholder{
    color     : transparent !important;
  }

  .xl\:hover\:placeholder-transparent:hover:-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:hover\:placeholder-transparent:hover::-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:hover\:placeholder-transparent:hover::placeholder{
    color     : transparent !important;
  }

  .xl\:hover\:placeholder-white:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-white:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-white:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-white:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-black:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-black:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-black:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-black:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-cool-gray-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-red-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-orange-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-yellow-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-green-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-teal-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-indigo-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-purple-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-50:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-50:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-200:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-200:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-200:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-200:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-300:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-300:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-300:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-300:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-400:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-400:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-400:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-400:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-500:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-500:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-500:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-500:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-600:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-600:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-600:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-600:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-700:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-700:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-700:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-700:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-800:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-800:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-800:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-800:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-900:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-900:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-900:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-pink-900:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-brand:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-brand:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-brand:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:hover\:placeholder-blue-brand:hover::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color     : transparent !important;
  }

  .xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color     : transparent !important;
  }

  .xl\:focus\:placeholder-transparent:focus::placeholder{
    color     : transparent !important;
  }

  .xl\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-cool-gray-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-red-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-orange-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-yellow-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-green-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-teal-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-indigo-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-purple-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-50:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-200:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-300:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-400:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-500:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-600:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-700:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-800:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-pink-900:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-brand:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-brand:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-brand:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:placeholder-blue-brand:focus::placeholder{
    --placeholder-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--placeholder-opacity)) !important;
  }

  .xl\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-0:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-0::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-25:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-25::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-50:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-50::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-75:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-75::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-100:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:placeholder-opacity-100::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:hover\:placeholder-opacity-0:hover::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:hover\:placeholder-opacity-0:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:hover\:placeholder-opacity-0:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:hover\:placeholder-opacity-0:hover::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:hover\:placeholder-opacity-25:hover::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:hover\:placeholder-opacity-25:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:hover\:placeholder-opacity-25:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:hover\:placeholder-opacity-25:hover::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:hover\:placeholder-opacity-50:hover::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:hover\:placeholder-opacity-50:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:hover\:placeholder-opacity-50:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:hover\:placeholder-opacity-50:hover::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:hover\:placeholder-opacity-75:hover::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:hover\:placeholder-opacity-75:hover:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:hover\:placeholder-opacity-75:hover::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:hover\:placeholder-opacity-75:hover::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:hover\:placeholder-opacity-100:hover::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:hover\:placeholder-opacity-100:hover:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:hover\:placeholder-opacity-100:hover::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:hover\:placeholder-opacity-100:hover::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity     : 0 !important;
  }

  .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity     : 0.25 !important;
  }

  .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity     : 0.5 !important;
  }

  .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity     : 0.75 !important;
  }

  .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity     : 1 !important;
  }

  .xl\:pointer-events-none{
    pointer-events     : none !important;
  }

  .xl\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .group:hover .xl\:group-hover\:pointer-events-none{
    pointer-events     : none !important;
  }

  .group:hover .xl\:group-hover\:pointer-events-auto{
    pointer-events     : auto !important;
  }

  .xl\:hover\:pointer-events-none:hover{
    pointer-events     : none !important;
  }

  .xl\:hover\:pointer-events-auto:hover{
    pointer-events     : auto !important;
  }

  .xl\:focus\:pointer-events-none:focus{
    pointer-events     : none !important;
  }

  .xl\:focus\:pointer-events-auto:focus{
    pointer-events     : auto !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;
  }

  .group:hover .xl\:group-hover\:static{
    position     : static !important;
  }

  .group:hover .xl\:group-hover\:fixed{
    position     : fixed !important;
  }

  .group:hover .xl\:group-hover\:absolute{
    position     : absolute !important;
  }

  .group:hover .xl\:group-hover\:relative{
    position     : relative !important;
  }

  .group:hover .xl\:group-hover\:sticky{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .xl\:hover\:static:hover{
    position     : static !important;
  }

  .xl\:hover\:fixed:hover{
    position     : fixed !important;
  }

  .xl\:hover\:absolute:hover{
    position     : absolute !important;
  }

  .xl\:hover\:relative:hover{
    position     : relative !important;
  }

  .xl\:hover\:sticky:hover{
    position     : -webkit-sticky !important;
    position     : sticky !important;
  }

  .xl\:focus\:static:focus{
    position     : static !important;
  }

  .xl\:focus\:fixed:focus{
    position     : fixed !important;
  }

  .xl\:focus\:absolute:focus{
    position     : absolute !important;
  }

  .xl\:focus\:relative:focus{
    position     : relative !important;
  }

  .xl\:focus\:sticky:focus{
    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-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .xl\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .xl\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !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-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-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .xl\:inset-x-20{
    right     : 5rem !important;
    left     : 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-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .xl\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !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-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-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .xl\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !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\: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-20{
    top     : 5rem !important;
  }

  .xl\:right-20{
    right     : 5rem !important;
  }

  .xl\:bottom-20{
    bottom     : 5rem !important;
  }

  .xl\:left-20{
    left     : 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-28{
    top     : 7rem !important;
  }

  .xl\:right-28{
    right     : 7rem !important;
  }

  .xl\:bottom-28{
    bottom     : 7rem !important;
  }

  .xl\:left-28{
    left     : 7rem !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-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-96{
    top     : 24rem !important;
  }

  .xl\:right-96{
    right     : 24rem !important;
  }

  .xl\:bottom-96{
    bottom     : 24rem !important;
  }

  .xl\:left-96{
    left     : 24rem !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;
  }

  .group:hover .xl\:group-hover\:inset-0{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .xl\:group-hover\:inset-1{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-2{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-3{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-4{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:inset-5{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-6{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-7{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-8{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:inset-9{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-10{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-11{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-12{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:inset-13{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-14{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-15{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-16{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:inset-20{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-24{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:inset-28{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:inset-32{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:inset-36{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:inset-40{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:inset-44{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:inset-48{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:inset-52{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:inset-56{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:inset-60{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:inset-64{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:inset-72{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:inset-80{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:inset-96{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:inset-auto{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .group:hover .xl\:group-hover\:inset-px{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .xl\:group-hover\:inset-0\.5{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:inset-1\.5{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:inset-2\.5{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:inset-3\.5{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/2{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/3{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-2\/3{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/4{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-2\/4{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-3\/4{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/5{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .xl\:group-hover\:inset-2\/5{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .xl\:group-hover\:inset-3\/5{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .xl\:group-hover\:inset-4\/5{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/6{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-2\/6{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-3\/6{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-4\/6{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-5\/6{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-1\/12{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-2\/12{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-3\/12{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-4\/12{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-5\/12{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-6\/12{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-7\/12{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-8\/12{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-9\/12{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-10\/12{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-11\/12{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-full{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-0{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:inset-x-0{
    right     : 0 !important;
    left     : 0 !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-4{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-4{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-5{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-5{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-6{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-6{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-7{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-7{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-8{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-8{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-9{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-9{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-10{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-10{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-11{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-11{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-12{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-12{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-13{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-13{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-14{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-14{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-15{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-15{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-16{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-16{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-20{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-20{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-24{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-24{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-28{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-28{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-32{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-32{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-36{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-36{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-40{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-40{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-44{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-44{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-48{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-48{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-52{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-52{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-56{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-56{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-60{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-60{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-64{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-64{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-72{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-72{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-80{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-80{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-96{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-96{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-auto{
    top     : auto !important;
    bottom     : auto !important;
  }

  .group:hover .xl\:group-hover\:inset-x-auto{
    right     : auto !important;
    left     : auto !important;
  }

  .group:hover .xl\:group-hover\:inset-y-px{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:inset-x-px{
    right     : 1px !important;
    left     : 1px !important;
  }

  .group:hover .xl\:group-hover\:inset-y-0\.5{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-0\.5{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\.5{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\.5{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\.5{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\.5{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3\.5{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3\.5{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/2{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/2{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/3{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/3{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\/3{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\/3{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/4{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/4{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\/4{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\/4{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3\/4{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3\/4{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/5{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/5{
    right     : 20% !important;
    left     : 20% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\/5{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\/5{
    right     : 40% !important;
    left     : 40% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3\/5{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3\/5{
    right     : 60% !important;
    left     : 60% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-4\/5{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-4\/5{
    right     : 80% !important;
    left     : 80% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/6{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/6{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\/6{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\/6{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3\/6{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3\/6{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-4\/6{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-4\/6{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-5\/6{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-5\/6{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-1\/12{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-1\/12{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-2\/12{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-2\/12{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-3\/12{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-3\/12{
    right     : 25% !important;
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-4\/12{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-4\/12{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-5\/12{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-5\/12{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-6\/12{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-6\/12{
    right     : 50% !important;
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-7\/12{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-7\/12{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-8\/12{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-8\/12{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-9\/12{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-9\/12{
    right     : 75% !important;
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-10\/12{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-10\/12{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-11\/12{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-11\/12{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:inset-y-full{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:inset-x-full{
    right     : 100% !important;
    left     : 100% !important;
  }

  .group:hover .xl\:group-hover\:top-0{
    top     : 0 !important;
  }

  .group:hover .xl\:group-hover\:right-0{
    right     : 0 !important;
  }

  .group:hover .xl\:group-hover\:bottom-0{
    bottom     : 0 !important;
  }

  .group:hover .xl\:group-hover\:left-0{
    left     : 0 !important;
  }

  .group:hover .xl\:group-hover\:top-1{
    top     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:right-1{
    right     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-1{
    bottom     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:left-1{
    left     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:top-2{
    top     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:right-2{
    right     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-2{
    bottom     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:left-2{
    left     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:top-3{
    top     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:right-3{
    right     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-3{
    bottom     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:left-3{
    left     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:top-4{
    top     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:right-4{
    right     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-4{
    bottom     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:left-4{
    left     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:top-5{
    top     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:right-5{
    right     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-5{
    bottom     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:left-5{
    left     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:top-6{
    top     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:right-6{
    right     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-6{
    bottom     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:left-6{
    left     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:top-7{
    top     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:right-7{
    right     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-7{
    bottom     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:left-7{
    left     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:top-8{
    top     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:right-8{
    right     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-8{
    bottom     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:left-8{
    left     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:top-9{
    top     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:right-9{
    right     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-9{
    bottom     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:left-9{
    left     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:top-10{
    top     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:right-10{
    right     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-10{
    bottom     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:left-10{
    left     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:top-11{
    top     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:right-11{
    right     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-11{
    bottom     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:left-11{
    left     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:top-12{
    top     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:right-12{
    right     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-12{
    bottom     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:left-12{
    left     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:top-13{
    top     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:right-13{
    right     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-13{
    bottom     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:left-13{
    left     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:top-14{
    top     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:right-14{
    right     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-14{
    bottom     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:left-14{
    left     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:top-15{
    top     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:right-15{
    right     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-15{
    bottom     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:left-15{
    left     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:top-16{
    top     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:right-16{
    right     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-16{
    bottom     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:left-16{
    left     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:top-20{
    top     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:right-20{
    right     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-20{
    bottom     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:left-20{
    left     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:top-24{
    top     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:right-24{
    right     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-24{
    bottom     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:left-24{
    left     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:top-28{
    top     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:right-28{
    right     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-28{
    bottom     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:left-28{
    left     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:top-32{
    top     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:right-32{
    right     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-32{
    bottom     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:left-32{
    left     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:top-36{
    top     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:right-36{
    right     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-36{
    bottom     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:left-36{
    left     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:top-40{
    top     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:right-40{
    right     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-40{
    bottom     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:left-40{
    left     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:top-44{
    top     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:right-44{
    right     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-44{
    bottom     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:left-44{
    left     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:top-48{
    top     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:right-48{
    right     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-48{
    bottom     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:left-48{
    left     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:top-52{
    top     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:right-52{
    right     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-52{
    bottom     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:left-52{
    left     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:top-56{
    top     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:right-56{
    right     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-56{
    bottom     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:left-56{
    left     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:top-60{
    top     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:right-60{
    right     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-60{
    bottom     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:left-60{
    left     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:top-64{
    top     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:right-64{
    right     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-64{
    bottom     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:left-64{
    left     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:top-72{
    top     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:right-72{
    right     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-72{
    bottom     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:left-72{
    left     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:top-80{
    top     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:right-80{
    right     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-80{
    bottom     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:left-80{
    left     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:top-96{
    top     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:right-96{
    right     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-96{
    bottom     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:left-96{
    left     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:top-auto{
    top     : auto !important;
  }

  .group:hover .xl\:group-hover\:right-auto{
    right     : auto !important;
  }

  .group:hover .xl\:group-hover\:bottom-auto{
    bottom     : auto !important;
  }

  .group:hover .xl\:group-hover\:left-auto{
    left     : auto !important;
  }

  .group:hover .xl\:group-hover\:top-px{
    top     : 1px !important;
  }

  .group:hover .xl\:group-hover\:right-px{
    right     : 1px !important;
  }

  .group:hover .xl\:group-hover\:bottom-px{
    bottom     : 1px !important;
  }

  .group:hover .xl\:group-hover\:left-px{
    left     : 1px !important;
  }

  .group:hover .xl\:group-hover\:top-0\.5{
    top     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:right-0\.5{
    right     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-0\.5{
    bottom     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:left-0\.5{
    left     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:top-1\.5{
    top     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:right-1\.5{
    right     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\.5{
    bottom     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:left-1\.5{
    left     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:top-2\.5{
    top     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:right-2\.5{
    right     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\.5{
    bottom     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:left-2\.5{
    left     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:top-3\.5{
    top     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:right-3\.5{
    right     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:bottom-3\.5{
    bottom     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:left-3\.5{
    left     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:top-1\/2{
    top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/2{
    right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/2{
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/2{
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:top-1\/3{
    top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/3{
    right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/3{
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/3{
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-2\/3{
    top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-2\/3{
    right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\/3{
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-2\/3{
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-1\/4{
    top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/4{
    right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/4{
    bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/4{
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:top-2\/4{
    top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:right-2\/4{
    right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\/4{
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:left-2\/4{
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:top-3\/4{
    top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:right-3\/4{
    right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:bottom-3\/4{
    bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:left-3\/4{
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:top-1\/5{
    top     : 20% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/5{
    right     : 20% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/5{
    bottom     : 20% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/5{
    left     : 20% !important;
  }

  .group:hover .xl\:group-hover\:top-2\/5{
    top     : 40% !important;
  }

  .group:hover .xl\:group-hover\:right-2\/5{
    right     : 40% !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\/5{
    bottom     : 40% !important;
  }

  .group:hover .xl\:group-hover\:left-2\/5{
    left     : 40% !important;
  }

  .group:hover .xl\:group-hover\:top-3\/5{
    top     : 60% !important;
  }

  .group:hover .xl\:group-hover\:right-3\/5{
    right     : 60% !important;
  }

  .group:hover .xl\:group-hover\:bottom-3\/5{
    bottom     : 60% !important;
  }

  .group:hover .xl\:group-hover\:left-3\/5{
    left     : 60% !important;
  }

  .group:hover .xl\:group-hover\:top-4\/5{
    top     : 80% !important;
  }

  .group:hover .xl\:group-hover\:right-4\/5{
    right     : 80% !important;
  }

  .group:hover .xl\:group-hover\:bottom-4\/5{
    bottom     : 80% !important;
  }

  .group:hover .xl\:group-hover\:left-4\/5{
    left     : 80% !important;
  }

  .group:hover .xl\:group-hover\:top-1\/6{
    top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/6{
    right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/6{
    bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/6{
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-2\/6{
    top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-2\/6{
    right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\/6{
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-2\/6{
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-3\/6{
    top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:right-3\/6{
    right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:bottom-3\/6{
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:left-3\/6{
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:top-4\/6{
    top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-4\/6{
    right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-4\/6{
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-4\/6{
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-5\/6{
    top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-5\/6{
    right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-5\/6{
    bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-5\/6{
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-1\/12{
    top     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-1\/12{
    right     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-1\/12{
    bottom     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-1\/12{
    left     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-2\/12{
    top     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-2\/12{
    right     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-2\/12{
    bottom     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-2\/12{
    left     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-3\/12{
    top     : 25% !important;
  }

  .group:hover .xl\:group-hover\:right-3\/12{
    right     : 25% !important;
  }

  .group:hover .xl\:group-hover\:bottom-3\/12{
    bottom     : 25% !important;
  }

  .group:hover .xl\:group-hover\:left-3\/12{
    left     : 25% !important;
  }

  .group:hover .xl\:group-hover\:top-4\/12{
    top     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-4\/12{
    right     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-4\/12{
    bottom     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-4\/12{
    left     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-5\/12{
    top     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-5\/12{
    right     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-5\/12{
    bottom     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-5\/12{
    left     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-6\/12{
    top     : 50% !important;
  }

  .group:hover .xl\:group-hover\:right-6\/12{
    right     : 50% !important;
  }

  .group:hover .xl\:group-hover\:bottom-6\/12{
    bottom     : 50% !important;
  }

  .group:hover .xl\:group-hover\:left-6\/12{
    left     : 50% !important;
  }

  .group:hover .xl\:group-hover\:top-7\/12{
    top     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-7\/12{
    right     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-7\/12{
    bottom     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-7\/12{
    left     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-8\/12{
    top     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-8\/12{
    right     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-8\/12{
    bottom     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-8\/12{
    left     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-9\/12{
    top     : 75% !important;
  }

  .group:hover .xl\:group-hover\:right-9\/12{
    right     : 75% !important;
  }

  .group:hover .xl\:group-hover\:bottom-9\/12{
    bottom     : 75% !important;
  }

  .group:hover .xl\:group-hover\:left-9\/12{
    left     : 75% !important;
  }

  .group:hover .xl\:group-hover\:top-10\/12{
    top     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:right-10\/12{
    right     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:bottom-10\/12{
    bottom     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:left-10\/12{
    left     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:top-11\/12{
    top     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:right-11\/12{
    right     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:bottom-11\/12{
    bottom     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:left-11\/12{
    left     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:top-full{
    top     : 100% !important;
  }

  .group:hover .xl\:group-hover\:right-full{
    right     : 100% !important;
  }

  .group:hover .xl\:group-hover\:bottom-full{
    bottom     : 100% !important;
  }

  .group:hover .xl\:group-hover\:left-full{
    left     : 100% !important;
  }

  .xl\:hover\:inset-0:hover{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .xl\:hover\:inset-1:hover{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .xl\:hover\:inset-2:hover{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .xl\:hover\:inset-3:hover{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .xl\:hover\:inset-4:hover{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .xl\:hover\:inset-5:hover{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .xl\:hover\:inset-6:hover{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .xl\:hover\:inset-7:hover{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .xl\:hover\:inset-8:hover{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .xl\:hover\:inset-9:hover{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .xl\:hover\:inset-10:hover{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .xl\:hover\:inset-11:hover{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .xl\:hover\:inset-12:hover{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .xl\:hover\:inset-13:hover{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .xl\:hover\:inset-14:hover{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .xl\:hover\:inset-15:hover{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .xl\:hover\:inset-16:hover{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .xl\:hover\:inset-20:hover{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .xl\:hover\:inset-24:hover{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .xl\:hover\:inset-28:hover{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .xl\:hover\:inset-32:hover{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .xl\:hover\:inset-36:hover{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .xl\:hover\:inset-40:hover{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .xl\:hover\:inset-44:hover{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .xl\:hover\:inset-48:hover{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .xl\:hover\:inset-52:hover{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .xl\:hover\:inset-56:hover{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .xl\:hover\:inset-60:hover{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .xl\:hover\:inset-64:hover{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .xl\:hover\:inset-72:hover{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .xl\:hover\:inset-80:hover{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .xl\:hover\:inset-96:hover{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .xl\:hover\:inset-auto:hover{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .xl\:hover\:inset-px:hover{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .xl\:hover\:inset-0\.5:hover{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .xl\:hover\:inset-1\.5:hover{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .xl\:hover\:inset-2\.5:hover{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .xl\:hover\:inset-3\.5:hover{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .xl\:hover\:inset-1\/2:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-1\/3:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-2\/3:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-1\/4:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .xl\:hover\:inset-2\/4:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-3\/4:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .xl\:hover\:inset-1\/5:hover{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .xl\:hover\:inset-2\/5:hover{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .xl\:hover\:inset-3\/5:hover{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .xl\:hover\:inset-4\/5:hover{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .xl\:hover\:inset-1\/6:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:hover\:inset-2\/6:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-3\/6:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-4\/6:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-5\/6:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:hover\:inset-1\/12:hover{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .xl\:hover\:inset-2\/12:hover{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:hover\:inset-3\/12:hover{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .xl\:hover\:inset-4\/12:hover{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-5\/12:hover{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .xl\:hover\:inset-6\/12:hover{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-7\/12:hover{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .xl\:hover\:inset-8\/12:hover{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-9\/12:hover{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .xl\:hover\:inset-10\/12:hover{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:hover\:inset-11\/12:hover{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .xl\:hover\:inset-full:hover{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .xl\:hover\:inset-y-0:hover{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .xl\:hover\:inset-x-0:hover{
    right     : 0 !important;
    left     : 0 !important;
  }

  .xl\:hover\:inset-y-1:hover{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .xl\:hover\:inset-x-1:hover{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .xl\:hover\:inset-y-2:hover{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .xl\:hover\:inset-x-2:hover{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .xl\:hover\:inset-y-3:hover{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .xl\:hover\:inset-x-3:hover{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .xl\:hover\:inset-y-4:hover{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .xl\:hover\:inset-x-4:hover{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .xl\:hover\:inset-y-5:hover{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .xl\:hover\:inset-x-5:hover{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .xl\:hover\:inset-y-6:hover{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .xl\:hover\:inset-x-6:hover{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .xl\:hover\:inset-y-7:hover{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .xl\:hover\:inset-x-7:hover{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .xl\:hover\:inset-y-8:hover{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .xl\:hover\:inset-x-8:hover{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .xl\:hover\:inset-y-9:hover{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .xl\:hover\:inset-x-9:hover{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .xl\:hover\:inset-y-10:hover{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .xl\:hover\:inset-x-10:hover{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .xl\:hover\:inset-y-11:hover{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .xl\:hover\:inset-x-11:hover{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .xl\:hover\:inset-y-12:hover{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .xl\:hover\:inset-x-12:hover{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .xl\:hover\:inset-y-13:hover{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .xl\:hover\:inset-x-13:hover{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .xl\:hover\:inset-y-14:hover{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .xl\:hover\:inset-x-14:hover{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .xl\:hover\:inset-y-15:hover{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .xl\:hover\:inset-x-15:hover{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .xl\:hover\:inset-y-16:hover{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .xl\:hover\:inset-x-16:hover{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .xl\:hover\:inset-y-20:hover{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .xl\:hover\:inset-x-20:hover{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .xl\:hover\:inset-y-24:hover{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .xl\:hover\:inset-x-24:hover{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .xl\:hover\:inset-y-28:hover{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .xl\:hover\:inset-x-28:hover{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .xl\:hover\:inset-y-32:hover{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .xl\:hover\:inset-x-32:hover{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .xl\:hover\:inset-y-36:hover{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .xl\:hover\:inset-x-36:hover{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .xl\:hover\:inset-y-40:hover{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .xl\:hover\:inset-x-40:hover{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .xl\:hover\:inset-y-44:hover{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .xl\:hover\:inset-x-44:hover{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .xl\:hover\:inset-y-48:hover{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .xl\:hover\:inset-x-48:hover{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .xl\:hover\:inset-y-52:hover{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .xl\:hover\:inset-x-52:hover{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .xl\:hover\:inset-y-56:hover{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .xl\:hover\:inset-x-56:hover{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .xl\:hover\:inset-y-60:hover{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .xl\:hover\:inset-x-60:hover{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .xl\:hover\:inset-y-64:hover{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .xl\:hover\:inset-x-64:hover{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .xl\:hover\:inset-y-72:hover{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .xl\:hover\:inset-x-72:hover{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .xl\:hover\:inset-y-80:hover{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .xl\:hover\:inset-x-80:hover{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .xl\:hover\:inset-y-96:hover{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .xl\:hover\:inset-x-96:hover{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .xl\:hover\:inset-y-auto:hover{
    top     : auto !important;
    bottom     : auto !important;
  }

  .xl\:hover\:inset-x-auto:hover{
    right     : auto !important;
    left     : auto !important;
  }

  .xl\:hover\:inset-y-px:hover{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .xl\:hover\:inset-x-px:hover{
    right     : 1px !important;
    left     : 1px !important;
  }

  .xl\:hover\:inset-y-0\.5:hover{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .xl\:hover\:inset-x-0\.5:hover{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .xl\:hover\:inset-y-1\.5:hover{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .xl\:hover\:inset-x-1\.5:hover{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .xl\:hover\:inset-y-2\.5:hover{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .xl\:hover\:inset-x-2\.5:hover{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .xl\:hover\:inset-y-3\.5:hover{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .xl\:hover\:inset-x-3\.5:hover{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .xl\:hover\:inset-y-1\/2:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:hover\:inset-x-1\/2:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-y-1\/3:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:inset-x-1\/3:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-y-2\/3:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:inset-x-2\/3:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-y-1\/4:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .xl\:hover\:inset-x-1\/4:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .xl\:hover\:inset-y-2\/4:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:hover\:inset-x-2\/4:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-y-3\/4:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .xl\:hover\:inset-x-3\/4:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .xl\:hover\:inset-y-1\/5:hover{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .xl\:hover\:inset-x-1\/5:hover{
    right     : 20% !important;
    left     : 20% !important;
  }

  .xl\:hover\:inset-y-2\/5:hover{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .xl\:hover\:inset-x-2\/5:hover{
    right     : 40% !important;
    left     : 40% !important;
  }

  .xl\:hover\:inset-y-3\/5:hover{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .xl\:hover\:inset-x-3\/5:hover{
    right     : 60% !important;
    left     : 60% !important;
  }

  .xl\:hover\:inset-y-4\/5:hover{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .xl\:hover\:inset-x-4\/5:hover{
    right     : 80% !important;
    left     : 80% !important;
  }

  .xl\:hover\:inset-y-1\/6:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .xl\:hover\:inset-x-1\/6:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:hover\:inset-y-2\/6:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:inset-x-2\/6:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-y-3\/6:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:hover\:inset-x-3\/6:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-y-4\/6:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:inset-x-4\/6:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-y-5\/6:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .xl\:hover\:inset-x-5\/6:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:hover\:inset-y-1\/12:hover{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .xl\:hover\:inset-x-1\/12:hover{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .xl\:hover\:inset-y-2\/12:hover{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .xl\:hover\:inset-x-2\/12:hover{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:hover\:inset-y-3\/12:hover{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .xl\:hover\:inset-x-3\/12:hover{
    right     : 25% !important;
    left     : 25% !important;
  }

  .xl\:hover\:inset-y-4\/12:hover{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:inset-x-4\/12:hover{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:hover\:inset-y-5\/12:hover{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .xl\:hover\:inset-x-5\/12:hover{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .xl\:hover\:inset-y-6\/12:hover{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:hover\:inset-x-6\/12:hover{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:hover\:inset-y-7\/12:hover{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .xl\:hover\:inset-x-7\/12:hover{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .xl\:hover\:inset-y-8\/12:hover{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:inset-x-8\/12:hover{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:hover\:inset-y-9\/12:hover{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .xl\:hover\:inset-x-9\/12:hover{
    right     : 75% !important;
    left     : 75% !important;
  }

  .xl\:hover\:inset-y-10\/12:hover{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .xl\:hover\:inset-x-10\/12:hover{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:hover\:inset-y-11\/12:hover{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .xl\:hover\:inset-x-11\/12:hover{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .xl\:hover\:inset-y-full:hover{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .xl\:hover\:inset-x-full:hover{
    right     : 100% !important;
    left     : 100% !important;
  }

  .xl\:hover\:top-0:hover{
    top     : 0 !important;
  }

  .xl\:hover\:right-0:hover{
    right     : 0 !important;
  }

  .xl\:hover\:bottom-0:hover{
    bottom     : 0 !important;
  }

  .xl\:hover\:left-0:hover{
    left     : 0 !important;
  }

  .xl\:hover\:top-1:hover{
    top     : 0.25rem !important;
  }

  .xl\:hover\:right-1:hover{
    right     : 0.25rem !important;
  }

  .xl\:hover\:bottom-1:hover{
    bottom     : 0.25rem !important;
  }

  .xl\:hover\:left-1:hover{
    left     : 0.25rem !important;
  }

  .xl\:hover\:top-2:hover{
    top     : 0.5rem !important;
  }

  .xl\:hover\:right-2:hover{
    right     : 0.5rem !important;
  }

  .xl\:hover\:bottom-2:hover{
    bottom     : 0.5rem !important;
  }

  .xl\:hover\:left-2:hover{
    left     : 0.5rem !important;
  }

  .xl\:hover\:top-3:hover{
    top     : 0.75rem !important;
  }

  .xl\:hover\:right-3:hover{
    right     : 0.75rem !important;
  }

  .xl\:hover\:bottom-3:hover{
    bottom     : 0.75rem !important;
  }

  .xl\:hover\:left-3:hover{
    left     : 0.75rem !important;
  }

  .xl\:hover\:top-4:hover{
    top     : 1rem !important;
  }

  .xl\:hover\:right-4:hover{
    right     : 1rem !important;
  }

  .xl\:hover\:bottom-4:hover{
    bottom     : 1rem !important;
  }

  .xl\:hover\:left-4:hover{
    left     : 1rem !important;
  }

  .xl\:hover\:top-5:hover{
    top     : 1.25rem !important;
  }

  .xl\:hover\:right-5:hover{
    right     : 1.25rem !important;
  }

  .xl\:hover\:bottom-5:hover{
    bottom     : 1.25rem !important;
  }

  .xl\:hover\:left-5:hover{
    left     : 1.25rem !important;
  }

  .xl\:hover\:top-6:hover{
    top     : 1.5rem !important;
  }

  .xl\:hover\:right-6:hover{
    right     : 1.5rem !important;
  }

  .xl\:hover\:bottom-6:hover{
    bottom     : 1.5rem !important;
  }

  .xl\:hover\:left-6:hover{
    left     : 1.5rem !important;
  }

  .xl\:hover\:top-7:hover{
    top     : 1.75rem !important;
  }

  .xl\:hover\:right-7:hover{
    right     : 1.75rem !important;
  }

  .xl\:hover\:bottom-7:hover{
    bottom     : 1.75rem !important;
  }

  .xl\:hover\:left-7:hover{
    left     : 1.75rem !important;
  }

  .xl\:hover\:top-8:hover{
    top     : 2rem !important;
  }

  .xl\:hover\:right-8:hover{
    right     : 2rem !important;
  }

  .xl\:hover\:bottom-8:hover{
    bottom     : 2rem !important;
  }

  .xl\:hover\:left-8:hover{
    left     : 2rem !important;
  }

  .xl\:hover\:top-9:hover{
    top     : 2.25rem !important;
  }

  .xl\:hover\:right-9:hover{
    right     : 2.25rem !important;
  }

  .xl\:hover\:bottom-9:hover{
    bottom     : 2.25rem !important;
  }

  .xl\:hover\:left-9:hover{
    left     : 2.25rem !important;
  }

  .xl\:hover\:top-10:hover{
    top     : 2.5rem !important;
  }

  .xl\:hover\:right-10:hover{
    right     : 2.5rem !important;
  }

  .xl\:hover\:bottom-10:hover{
    bottom     : 2.5rem !important;
  }

  .xl\:hover\:left-10:hover{
    left     : 2.5rem !important;
  }

  .xl\:hover\:top-11:hover{
    top     : 2.75rem !important;
  }

  .xl\:hover\:right-11:hover{
    right     : 2.75rem !important;
  }

  .xl\:hover\:bottom-11:hover{
    bottom     : 2.75rem !important;
  }

  .xl\:hover\:left-11:hover{
    left     : 2.75rem !important;
  }

  .xl\:hover\:top-12:hover{
    top     : 3rem !important;
  }

  .xl\:hover\:right-12:hover{
    right     : 3rem !important;
  }

  .xl\:hover\:bottom-12:hover{
    bottom     : 3rem !important;
  }

  .xl\:hover\:left-12:hover{
    left     : 3rem !important;
  }

  .xl\:hover\:top-13:hover{
    top     : 3.25rem !important;
  }

  .xl\:hover\:right-13:hover{
    right     : 3.25rem !important;
  }

  .xl\:hover\:bottom-13:hover{
    bottom     : 3.25rem !important;
  }

  .xl\:hover\:left-13:hover{
    left     : 3.25rem !important;
  }

  .xl\:hover\:top-14:hover{
    top     : 3.5rem !important;
  }

  .xl\:hover\:right-14:hover{
    right     : 3.5rem !important;
  }

  .xl\:hover\:bottom-14:hover{
    bottom     : 3.5rem !important;
  }

  .xl\:hover\:left-14:hover{
    left     : 3.5rem !important;
  }

  .xl\:hover\:top-15:hover{
    top     : 3.75rem !important;
  }

  .xl\:hover\:right-15:hover{
    right     : 3.75rem !important;
  }

  .xl\:hover\:bottom-15:hover{
    bottom     : 3.75rem !important;
  }

  .xl\:hover\:left-15:hover{
    left     : 3.75rem !important;
  }

  .xl\:hover\:top-16:hover{
    top     : 4rem !important;
  }

  .xl\:hover\:right-16:hover{
    right     : 4rem !important;
  }

  .xl\:hover\:bottom-16:hover{
    bottom     : 4rem !important;
  }

  .xl\:hover\:left-16:hover{
    left     : 4rem !important;
  }

  .xl\:hover\:top-20:hover{
    top     : 5rem !important;
  }

  .xl\:hover\:right-20:hover{
    right     : 5rem !important;
  }

  .xl\:hover\:bottom-20:hover{
    bottom     : 5rem !important;
  }

  .xl\:hover\:left-20:hover{
    left     : 5rem !important;
  }

  .xl\:hover\:top-24:hover{
    top     : 6rem !important;
  }

  .xl\:hover\:right-24:hover{
    right     : 6rem !important;
  }

  .xl\:hover\:bottom-24:hover{
    bottom     : 6rem !important;
  }

  .xl\:hover\:left-24:hover{
    left     : 6rem !important;
  }

  .xl\:hover\:top-28:hover{
    top     : 7rem !important;
  }

  .xl\:hover\:right-28:hover{
    right     : 7rem !important;
  }

  .xl\:hover\:bottom-28:hover{
    bottom     : 7rem !important;
  }

  .xl\:hover\:left-28:hover{
    left     : 7rem !important;
  }

  .xl\:hover\:top-32:hover{
    top     : 8rem !important;
  }

  .xl\:hover\:right-32:hover{
    right     : 8rem !important;
  }

  .xl\:hover\:bottom-32:hover{
    bottom     : 8rem !important;
  }

  .xl\:hover\:left-32:hover{
    left     : 8rem !important;
  }

  .xl\:hover\:top-36:hover{
    top     : 9rem !important;
  }

  .xl\:hover\:right-36:hover{
    right     : 9rem !important;
  }

  .xl\:hover\:bottom-36:hover{
    bottom     : 9rem !important;
  }

  .xl\:hover\:left-36:hover{
    left     : 9rem !important;
  }

  .xl\:hover\:top-40:hover{
    top     : 10rem !important;
  }

  .xl\:hover\:right-40:hover{
    right     : 10rem !important;
  }

  .xl\:hover\:bottom-40:hover{
    bottom     : 10rem !important;
  }

  .xl\:hover\:left-40:hover{
    left     : 10rem !important;
  }

  .xl\:hover\:top-44:hover{
    top     : 11rem !important;
  }

  .xl\:hover\:right-44:hover{
    right     : 11rem !important;
  }

  .xl\:hover\:bottom-44:hover{
    bottom     : 11rem !important;
  }

  .xl\:hover\:left-44:hover{
    left     : 11rem !important;
  }

  .xl\:hover\:top-48:hover{
    top     : 12rem !important;
  }

  .xl\:hover\:right-48:hover{
    right     : 12rem !important;
  }

  .xl\:hover\:bottom-48:hover{
    bottom     : 12rem !important;
  }

  .xl\:hover\:left-48:hover{
    left     : 12rem !important;
  }

  .xl\:hover\:top-52:hover{
    top     : 13rem !important;
  }

  .xl\:hover\:right-52:hover{
    right     : 13rem !important;
  }

  .xl\:hover\:bottom-52:hover{
    bottom     : 13rem !important;
  }

  .xl\:hover\:left-52:hover{
    left     : 13rem !important;
  }

  .xl\:hover\:top-56:hover{
    top     : 14rem !important;
  }

  .xl\:hover\:right-56:hover{
    right     : 14rem !important;
  }

  .xl\:hover\:bottom-56:hover{
    bottom     : 14rem !important;
  }

  .xl\:hover\:left-56:hover{
    left     : 14rem !important;
  }

  .xl\:hover\:top-60:hover{
    top     : 15rem !important;
  }

  .xl\:hover\:right-60:hover{
    right     : 15rem !important;
  }

  .xl\:hover\:bottom-60:hover{
    bottom     : 15rem !important;
  }

  .xl\:hover\:left-60:hover{
    left     : 15rem !important;
  }

  .xl\:hover\:top-64:hover{
    top     : 16rem !important;
  }

  .xl\:hover\:right-64:hover{
    right     : 16rem !important;
  }

  .xl\:hover\:bottom-64:hover{
    bottom     : 16rem !important;
  }

  .xl\:hover\:left-64:hover{
    left     : 16rem !important;
  }

  .xl\:hover\:top-72:hover{
    top     : 18rem !important;
  }

  .xl\:hover\:right-72:hover{
    right     : 18rem !important;
  }

  .xl\:hover\:bottom-72:hover{
    bottom     : 18rem !important;
  }

  .xl\:hover\:left-72:hover{
    left     : 18rem !important;
  }

  .xl\:hover\:top-80:hover{
    top     : 20rem !important;
  }

  .xl\:hover\:right-80:hover{
    right     : 20rem !important;
  }

  .xl\:hover\:bottom-80:hover{
    bottom     : 20rem !important;
  }

  .xl\:hover\:left-80:hover{
    left     : 20rem !important;
  }

  .xl\:hover\:top-96:hover{
    top     : 24rem !important;
  }

  .xl\:hover\:right-96:hover{
    right     : 24rem !important;
  }

  .xl\:hover\:bottom-96:hover{
    bottom     : 24rem !important;
  }

  .xl\:hover\:left-96:hover{
    left     : 24rem !important;
  }

  .xl\:hover\:top-auto:hover{
    top     : auto !important;
  }

  .xl\:hover\:right-auto:hover{
    right     : auto !important;
  }

  .xl\:hover\:bottom-auto:hover{
    bottom     : auto !important;
  }

  .xl\:hover\:left-auto:hover{
    left     : auto !important;
  }

  .xl\:hover\:top-px:hover{
    top     : 1px !important;
  }

  .xl\:hover\:right-px:hover{
    right     : 1px !important;
  }

  .xl\:hover\:bottom-px:hover{
    bottom     : 1px !important;
  }

  .xl\:hover\:left-px:hover{
    left     : 1px !important;
  }

  .xl\:hover\:top-0\.5:hover{
    top     : 0.125rem !important;
  }

  .xl\:hover\:right-0\.5:hover{
    right     : 0.125rem !important;
  }

  .xl\:hover\:bottom-0\.5:hover{
    bottom     : 0.125rem !important;
  }

  .xl\:hover\:left-0\.5:hover{
    left     : 0.125rem !important;
  }

  .xl\:hover\:top-1\.5:hover{
    top     : 0.375rem !important;
  }

  .xl\:hover\:right-1\.5:hover{
    right     : 0.375rem !important;
  }

  .xl\:hover\:bottom-1\.5:hover{
    bottom     : 0.375rem !important;
  }

  .xl\:hover\:left-1\.5:hover{
    left     : 0.375rem !important;
  }

  .xl\:hover\:top-2\.5:hover{
    top     : 0.625rem !important;
  }

  .xl\:hover\:right-2\.5:hover{
    right     : 0.625rem !important;
  }

  .xl\:hover\:bottom-2\.5:hover{
    bottom     : 0.625rem !important;
  }

  .xl\:hover\:left-2\.5:hover{
    left     : 0.625rem !important;
  }

  .xl\:hover\:top-3\.5:hover{
    top     : 0.875rem !important;
  }

  .xl\:hover\:right-3\.5:hover{
    right     : 0.875rem !important;
  }

  .xl\:hover\:bottom-3\.5:hover{
    bottom     : 0.875rem !important;
  }

  .xl\:hover\:left-3\.5:hover{
    left     : 0.875rem !important;
  }

  .xl\:hover\:top-1\/2:hover{
    top     : 50% !important;
  }

  .xl\:hover\:right-1\/2:hover{
    right     : 50% !important;
  }

  .xl\:hover\:bottom-1\/2:hover{
    bottom     : 50% !important;
  }

  .xl\:hover\:left-1\/2:hover{
    left     : 50% !important;
  }

  .xl\:hover\:top-1\/3:hover{
    top     : 33.333333% !important;
  }

  .xl\:hover\:right-1\/3:hover{
    right     : 33.333333% !important;
  }

  .xl\:hover\:bottom-1\/3:hover{
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:left-1\/3:hover{
    left     : 33.333333% !important;
  }

  .xl\:hover\:top-2\/3:hover{
    top     : 66.666667% !important;
  }

  .xl\:hover\:right-2\/3:hover{
    right     : 66.666667% !important;
  }

  .xl\:hover\:bottom-2\/3:hover{
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:left-2\/3:hover{
    left     : 66.666667% !important;
  }

  .xl\:hover\:top-1\/4:hover{
    top     : 25% !important;
  }

  .xl\:hover\:right-1\/4:hover{
    right     : 25% !important;
  }

  .xl\:hover\:bottom-1\/4:hover{
    bottom     : 25% !important;
  }

  .xl\:hover\:left-1\/4:hover{
    left     : 25% !important;
  }

  .xl\:hover\:top-2\/4:hover{
    top     : 50% !important;
  }

  .xl\:hover\:right-2\/4:hover{
    right     : 50% !important;
  }

  .xl\:hover\:bottom-2\/4:hover{
    bottom     : 50% !important;
  }

  .xl\:hover\:left-2\/4:hover{
    left     : 50% !important;
  }

  .xl\:hover\:top-3\/4:hover{
    top     : 75% !important;
  }

  .xl\:hover\:right-3\/4:hover{
    right     : 75% !important;
  }

  .xl\:hover\:bottom-3\/4:hover{
    bottom     : 75% !important;
  }

  .xl\:hover\:left-3\/4:hover{
    left     : 75% !important;
  }

  .xl\:hover\:top-1\/5:hover{
    top     : 20% !important;
  }

  .xl\:hover\:right-1\/5:hover{
    right     : 20% !important;
  }

  .xl\:hover\:bottom-1\/5:hover{
    bottom     : 20% !important;
  }

  .xl\:hover\:left-1\/5:hover{
    left     : 20% !important;
  }

  .xl\:hover\:top-2\/5:hover{
    top     : 40% !important;
  }

  .xl\:hover\:right-2\/5:hover{
    right     : 40% !important;
  }

  .xl\:hover\:bottom-2\/5:hover{
    bottom     : 40% !important;
  }

  .xl\:hover\:left-2\/5:hover{
    left     : 40% !important;
  }

  .xl\:hover\:top-3\/5:hover{
    top     : 60% !important;
  }

  .xl\:hover\:right-3\/5:hover{
    right     : 60% !important;
  }

  .xl\:hover\:bottom-3\/5:hover{
    bottom     : 60% !important;
  }

  .xl\:hover\:left-3\/5:hover{
    left     : 60% !important;
  }

  .xl\:hover\:top-4\/5:hover{
    top     : 80% !important;
  }

  .xl\:hover\:right-4\/5:hover{
    right     : 80% !important;
  }

  .xl\:hover\:bottom-4\/5:hover{
    bottom     : 80% !important;
  }

  .xl\:hover\:left-4\/5:hover{
    left     : 80% !important;
  }

  .xl\:hover\:top-1\/6:hover{
    top     : 16.666667% !important;
  }

  .xl\:hover\:right-1\/6:hover{
    right     : 16.666667% !important;
  }

  .xl\:hover\:bottom-1\/6:hover{
    bottom     : 16.666667% !important;
  }

  .xl\:hover\:left-1\/6:hover{
    left     : 16.666667% !important;
  }

  .xl\:hover\:top-2\/6:hover{
    top     : 33.333333% !important;
  }

  .xl\:hover\:right-2\/6:hover{
    right     : 33.333333% !important;
  }

  .xl\:hover\:bottom-2\/6:hover{
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:left-2\/6:hover{
    left     : 33.333333% !important;
  }

  .xl\:hover\:top-3\/6:hover{
    top     : 50% !important;
  }

  .xl\:hover\:right-3\/6:hover{
    right     : 50% !important;
  }

  .xl\:hover\:bottom-3\/6:hover{
    bottom     : 50% !important;
  }

  .xl\:hover\:left-3\/6:hover{
    left     : 50% !important;
  }

  .xl\:hover\:top-4\/6:hover{
    top     : 66.666667% !important;
  }

  .xl\:hover\:right-4\/6:hover{
    right     : 66.666667% !important;
  }

  .xl\:hover\:bottom-4\/6:hover{
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:left-4\/6:hover{
    left     : 66.666667% !important;
  }

  .xl\:hover\:top-5\/6:hover{
    top     : 83.333333% !important;
  }

  .xl\:hover\:right-5\/6:hover{
    right     : 83.333333% !important;
  }

  .xl\:hover\:bottom-5\/6:hover{
    bottom     : 83.333333% !important;
  }

  .xl\:hover\:left-5\/6:hover{
    left     : 83.333333% !important;
  }

  .xl\:hover\:top-1\/12:hover{
    top     : 8.333333% !important;
  }

  .xl\:hover\:right-1\/12:hover{
    right     : 8.333333% !important;
  }

  .xl\:hover\:bottom-1\/12:hover{
    bottom     : 8.333333% !important;
  }

  .xl\:hover\:left-1\/12:hover{
    left     : 8.333333% !important;
  }

  .xl\:hover\:top-2\/12:hover{
    top     : 16.666667% !important;
  }

  .xl\:hover\:right-2\/12:hover{
    right     : 16.666667% !important;
  }

  .xl\:hover\:bottom-2\/12:hover{
    bottom     : 16.666667% !important;
  }

  .xl\:hover\:left-2\/12:hover{
    left     : 16.666667% !important;
  }

  .xl\:hover\:top-3\/12:hover{
    top     : 25% !important;
  }

  .xl\:hover\:right-3\/12:hover{
    right     : 25% !important;
  }

  .xl\:hover\:bottom-3\/12:hover{
    bottom     : 25% !important;
  }

  .xl\:hover\:left-3\/12:hover{
    left     : 25% !important;
  }

  .xl\:hover\:top-4\/12:hover{
    top     : 33.333333% !important;
  }

  .xl\:hover\:right-4\/12:hover{
    right     : 33.333333% !important;
  }

  .xl\:hover\:bottom-4\/12:hover{
    bottom     : 33.333333% !important;
  }

  .xl\:hover\:left-4\/12:hover{
    left     : 33.333333% !important;
  }

  .xl\:hover\:top-5\/12:hover{
    top     : 41.666667% !important;
  }

  .xl\:hover\:right-5\/12:hover{
    right     : 41.666667% !important;
  }

  .xl\:hover\:bottom-5\/12:hover{
    bottom     : 41.666667% !important;
  }

  .xl\:hover\:left-5\/12:hover{
    left     : 41.666667% !important;
  }

  .xl\:hover\:top-6\/12:hover{
    top     : 50% !important;
  }

  .xl\:hover\:right-6\/12:hover{
    right     : 50% !important;
  }

  .xl\:hover\:bottom-6\/12:hover{
    bottom     : 50% !important;
  }

  .xl\:hover\:left-6\/12:hover{
    left     : 50% !important;
  }

  .xl\:hover\:top-7\/12:hover{
    top     : 58.333333% !important;
  }

  .xl\:hover\:right-7\/12:hover{
    right     : 58.333333% !important;
  }

  .xl\:hover\:bottom-7\/12:hover{
    bottom     : 58.333333% !important;
  }

  .xl\:hover\:left-7\/12:hover{
    left     : 58.333333% !important;
  }

  .xl\:hover\:top-8\/12:hover{
    top     : 66.666667% !important;
  }

  .xl\:hover\:right-8\/12:hover{
    right     : 66.666667% !important;
  }

  .xl\:hover\:bottom-8\/12:hover{
    bottom     : 66.666667% !important;
  }

  .xl\:hover\:left-8\/12:hover{
    left     : 66.666667% !important;
  }

  .xl\:hover\:top-9\/12:hover{
    top     : 75% !important;
  }

  .xl\:hover\:right-9\/12:hover{
    right     : 75% !important;
  }

  .xl\:hover\:bottom-9\/12:hover{
    bottom     : 75% !important;
  }

  .xl\:hover\:left-9\/12:hover{
    left     : 75% !important;
  }

  .xl\:hover\:top-10\/12:hover{
    top     : 83.333333% !important;
  }

  .xl\:hover\:right-10\/12:hover{
    right     : 83.333333% !important;
  }

  .xl\:hover\:bottom-10\/12:hover{
    bottom     : 83.333333% !important;
  }

  .xl\:hover\:left-10\/12:hover{
    left     : 83.333333% !important;
  }

  .xl\:hover\:top-11\/12:hover{
    top     : 91.666667% !important;
  }

  .xl\:hover\:right-11\/12:hover{
    right     : 91.666667% !important;
  }

  .xl\:hover\:bottom-11\/12:hover{
    bottom     : 91.666667% !important;
  }

  .xl\:hover\:left-11\/12:hover{
    left     : 91.666667% !important;
  }

  .xl\:hover\:top-full:hover{
    top     : 100% !important;
  }

  .xl\:hover\:right-full:hover{
    right     : 100% !important;
  }

  .xl\:hover\:bottom-full:hover{
    bottom     : 100% !important;
  }

  .xl\:hover\:left-full:hover{
    left     : 100% !important;
  }

  .xl\:focus\:inset-0:focus{
    top     : 0 !important;
    right     : 0 !important;
    bottom     : 0 !important;
    left     : 0 !important;
  }

  .xl\:focus\:inset-1:focus{
    top     : 0.25rem !important;
    right     : 0.25rem !important;
    bottom     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .xl\:focus\:inset-2:focus{
    top     : 0.5rem !important;
    right     : 0.5rem !important;
    bottom     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .xl\:focus\:inset-3:focus{
    top     : 0.75rem !important;
    right     : 0.75rem !important;
    bottom     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .xl\:focus\:inset-4:focus{
    top     : 1rem !important;
    right     : 1rem !important;
    bottom     : 1rem !important;
    left     : 1rem !important;
  }

  .xl\:focus\:inset-5:focus{
    top     : 1.25rem !important;
    right     : 1.25rem !important;
    bottom     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .xl\:focus\:inset-6:focus{
    top     : 1.5rem !important;
    right     : 1.5rem !important;
    bottom     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .xl\:focus\:inset-7:focus{
    top     : 1.75rem !important;
    right     : 1.75rem !important;
    bottom     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .xl\:focus\:inset-8:focus{
    top     : 2rem !important;
    right     : 2rem !important;
    bottom     : 2rem !important;
    left     : 2rem !important;
  }

  .xl\:focus\:inset-9:focus{
    top     : 2.25rem !important;
    right     : 2.25rem !important;
    bottom     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .xl\:focus\:inset-10:focus{
    top     : 2.5rem !important;
    right     : 2.5rem !important;
    bottom     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .xl\:focus\:inset-11:focus{
    top     : 2.75rem !important;
    right     : 2.75rem !important;
    bottom     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .xl\:focus\:inset-12:focus{
    top     : 3rem !important;
    right     : 3rem !important;
    bottom     : 3rem !important;
    left     : 3rem !important;
  }

  .xl\:focus\:inset-13:focus{
    top     : 3.25rem !important;
    right     : 3.25rem !important;
    bottom     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .xl\:focus\:inset-14:focus{
    top     : 3.5rem !important;
    right     : 3.5rem !important;
    bottom     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .xl\:focus\:inset-15:focus{
    top     : 3.75rem !important;
    right     : 3.75rem !important;
    bottom     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .xl\:focus\:inset-16:focus{
    top     : 4rem !important;
    right     : 4rem !important;
    bottom     : 4rem !important;
    left     : 4rem !important;
  }

  .xl\:focus\:inset-20:focus{
    top     : 5rem !important;
    right     : 5rem !important;
    bottom     : 5rem !important;
    left     : 5rem !important;
  }

  .xl\:focus\:inset-24:focus{
    top     : 6rem !important;
    right     : 6rem !important;
    bottom     : 6rem !important;
    left     : 6rem !important;
  }

  .xl\:focus\:inset-28:focus{
    top     : 7rem !important;
    right     : 7rem !important;
    bottom     : 7rem !important;
    left     : 7rem !important;
  }

  .xl\:focus\:inset-32:focus{
    top     : 8rem !important;
    right     : 8rem !important;
    bottom     : 8rem !important;
    left     : 8rem !important;
  }

  .xl\:focus\:inset-36:focus{
    top     : 9rem !important;
    right     : 9rem !important;
    bottom     : 9rem !important;
    left     : 9rem !important;
  }

  .xl\:focus\:inset-40:focus{
    top     : 10rem !important;
    right     : 10rem !important;
    bottom     : 10rem !important;
    left     : 10rem !important;
  }

  .xl\:focus\:inset-44:focus{
    top     : 11rem !important;
    right     : 11rem !important;
    bottom     : 11rem !important;
    left     : 11rem !important;
  }

  .xl\:focus\:inset-48:focus{
    top     : 12rem !important;
    right     : 12rem !important;
    bottom     : 12rem !important;
    left     : 12rem !important;
  }

  .xl\:focus\:inset-52:focus{
    top     : 13rem !important;
    right     : 13rem !important;
    bottom     : 13rem !important;
    left     : 13rem !important;
  }

  .xl\:focus\:inset-56:focus{
    top     : 14rem !important;
    right     : 14rem !important;
    bottom     : 14rem !important;
    left     : 14rem !important;
  }

  .xl\:focus\:inset-60:focus{
    top     : 15rem !important;
    right     : 15rem !important;
    bottom     : 15rem !important;
    left     : 15rem !important;
  }

  .xl\:focus\:inset-64:focus{
    top     : 16rem !important;
    right     : 16rem !important;
    bottom     : 16rem !important;
    left     : 16rem !important;
  }

  .xl\:focus\:inset-72:focus{
    top     : 18rem !important;
    right     : 18rem !important;
    bottom     : 18rem !important;
    left     : 18rem !important;
  }

  .xl\:focus\:inset-80:focus{
    top     : 20rem !important;
    right     : 20rem !important;
    bottom     : 20rem !important;
    left     : 20rem !important;
  }

  .xl\:focus\:inset-96:focus{
    top     : 24rem !important;
    right     : 24rem !important;
    bottom     : 24rem !important;
    left     : 24rem !important;
  }

  .xl\:focus\:inset-auto:focus{
    top     : auto !important;
    right     : auto !important;
    bottom     : auto !important;
    left     : auto !important;
  }

  .xl\:focus\:inset-px:focus{
    top     : 1px !important;
    right     : 1px !important;
    bottom     : 1px !important;
    left     : 1px !important;
  }

  .xl\:focus\:inset-0\.5:focus{
    top     : 0.125rem !important;
    right     : 0.125rem !important;
    bottom     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .xl\:focus\:inset-1\.5:focus{
    top     : 0.375rem !important;
    right     : 0.375rem !important;
    bottom     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .xl\:focus\:inset-2\.5:focus{
    top     : 0.625rem !important;
    right     : 0.625rem !important;
    bottom     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .xl\:focus\:inset-3\.5:focus{
    top     : 0.875rem !important;
    right     : 0.875rem !important;
    bottom     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .xl\:focus\:inset-1\/2:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-1\/3:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-2\/3:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-1\/4:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .xl\:focus\:inset-2\/4:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-3\/4:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .xl\:focus\:inset-1\/5:focus{
    top     : 20% !important;
    right     : 20% !important;
    bottom     : 20% !important;
    left     : 20% !important;
  }

  .xl\:focus\:inset-2\/5:focus{
    top     : 40% !important;
    right     : 40% !important;
    bottom     : 40% !important;
    left     : 40% !important;
  }

  .xl\:focus\:inset-3\/5:focus{
    top     : 60% !important;
    right     : 60% !important;
    bottom     : 60% !important;
    left     : 60% !important;
  }

  .xl\:focus\:inset-4\/5:focus{
    top     : 80% !important;
    right     : 80% !important;
    bottom     : 80% !important;
    left     : 80% !important;
  }

  .xl\:focus\:inset-1\/6:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:focus\:inset-2\/6:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-3\/6:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-4\/6:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-5\/6:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:focus\:inset-1\/12:focus{
    top     : 8.333333% !important;
    right     : 8.333333% !important;
    bottom     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .xl\:focus\:inset-2\/12:focus{
    top     : 16.666667% !important;
    right     : 16.666667% !important;
    bottom     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:focus\:inset-3\/12:focus{
    top     : 25% !important;
    right     : 25% !important;
    bottom     : 25% !important;
    left     : 25% !important;
  }

  .xl\:focus\:inset-4\/12:focus{
    top     : 33.333333% !important;
    right     : 33.333333% !important;
    bottom     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-5\/12:focus{
    top     : 41.666667% !important;
    right     : 41.666667% !important;
    bottom     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .xl\:focus\:inset-6\/12:focus{
    top     : 50% !important;
    right     : 50% !important;
    bottom     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-7\/12:focus{
    top     : 58.333333% !important;
    right     : 58.333333% !important;
    bottom     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .xl\:focus\:inset-8\/12:focus{
    top     : 66.666667% !important;
    right     : 66.666667% !important;
    bottom     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-9\/12:focus{
    top     : 75% !important;
    right     : 75% !important;
    bottom     : 75% !important;
    left     : 75% !important;
  }

  .xl\:focus\:inset-10\/12:focus{
    top     : 83.333333% !important;
    right     : 83.333333% !important;
    bottom     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:focus\:inset-11\/12:focus{
    top     : 91.666667% !important;
    right     : 91.666667% !important;
    bottom     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .xl\:focus\:inset-full:focus{
    top     : 100% !important;
    right     : 100% !important;
    bottom     : 100% !important;
    left     : 100% !important;
  }

  .xl\:focus\:inset-y-0:focus{
    top     : 0 !important;
    bottom     : 0 !important;
  }

  .xl\:focus\:inset-x-0:focus{
    right     : 0 !important;
    left     : 0 !important;
  }

  .xl\:focus\:inset-y-1:focus{
    top     : 0.25rem !important;
    bottom     : 0.25rem !important;
  }

  .xl\:focus\:inset-x-1:focus{
    right     : 0.25rem !important;
    left     : 0.25rem !important;
  }

  .xl\:focus\:inset-y-2:focus{
    top     : 0.5rem !important;
    bottom     : 0.5rem !important;
  }

  .xl\:focus\:inset-x-2:focus{
    right     : 0.5rem !important;
    left     : 0.5rem !important;
  }

  .xl\:focus\:inset-y-3:focus{
    top     : 0.75rem !important;
    bottom     : 0.75rem !important;
  }

  .xl\:focus\:inset-x-3:focus{
    right     : 0.75rem !important;
    left     : 0.75rem !important;
  }

  .xl\:focus\:inset-y-4:focus{
    top     : 1rem !important;
    bottom     : 1rem !important;
  }

  .xl\:focus\:inset-x-4:focus{
    right     : 1rem !important;
    left     : 1rem !important;
  }

  .xl\:focus\:inset-y-5:focus{
    top     : 1.25rem !important;
    bottom     : 1.25rem !important;
  }

  .xl\:focus\:inset-x-5:focus{
    right     : 1.25rem !important;
    left     : 1.25rem !important;
  }

  .xl\:focus\:inset-y-6:focus{
    top     : 1.5rem !important;
    bottom     : 1.5rem !important;
  }

  .xl\:focus\:inset-x-6:focus{
    right     : 1.5rem !important;
    left     : 1.5rem !important;
  }

  .xl\:focus\:inset-y-7:focus{
    top     : 1.75rem !important;
    bottom     : 1.75rem !important;
  }

  .xl\:focus\:inset-x-7:focus{
    right     : 1.75rem !important;
    left     : 1.75rem !important;
  }

  .xl\:focus\:inset-y-8:focus{
    top     : 2rem !important;
    bottom     : 2rem !important;
  }

  .xl\:focus\:inset-x-8:focus{
    right     : 2rem !important;
    left     : 2rem !important;
  }

  .xl\:focus\:inset-y-9:focus{
    top     : 2.25rem !important;
    bottom     : 2.25rem !important;
  }

  .xl\:focus\:inset-x-9:focus{
    right     : 2.25rem !important;
    left     : 2.25rem !important;
  }

  .xl\:focus\:inset-y-10:focus{
    top     : 2.5rem !important;
    bottom     : 2.5rem !important;
  }

  .xl\:focus\:inset-x-10:focus{
    right     : 2.5rem !important;
    left     : 2.5rem !important;
  }

  .xl\:focus\:inset-y-11:focus{
    top     : 2.75rem !important;
    bottom     : 2.75rem !important;
  }

  .xl\:focus\:inset-x-11:focus{
    right     : 2.75rem !important;
    left     : 2.75rem !important;
  }

  .xl\:focus\:inset-y-12:focus{
    top     : 3rem !important;
    bottom     : 3rem !important;
  }

  .xl\:focus\:inset-x-12:focus{
    right     : 3rem !important;
    left     : 3rem !important;
  }

  .xl\:focus\:inset-y-13:focus{
    top     : 3.25rem !important;
    bottom     : 3.25rem !important;
  }

  .xl\:focus\:inset-x-13:focus{
    right     : 3.25rem !important;
    left     : 3.25rem !important;
  }

  .xl\:focus\:inset-y-14:focus{
    top     : 3.5rem !important;
    bottom     : 3.5rem !important;
  }

  .xl\:focus\:inset-x-14:focus{
    right     : 3.5rem !important;
    left     : 3.5rem !important;
  }

  .xl\:focus\:inset-y-15:focus{
    top     : 3.75rem !important;
    bottom     : 3.75rem !important;
  }

  .xl\:focus\:inset-x-15:focus{
    right     : 3.75rem !important;
    left     : 3.75rem !important;
  }

  .xl\:focus\:inset-y-16:focus{
    top     : 4rem !important;
    bottom     : 4rem !important;
  }

  .xl\:focus\:inset-x-16:focus{
    right     : 4rem !important;
    left     : 4rem !important;
  }

  .xl\:focus\:inset-y-20:focus{
    top     : 5rem !important;
    bottom     : 5rem !important;
  }

  .xl\:focus\:inset-x-20:focus{
    right     : 5rem !important;
    left     : 5rem !important;
  }

  .xl\:focus\:inset-y-24:focus{
    top     : 6rem !important;
    bottom     : 6rem !important;
  }

  .xl\:focus\:inset-x-24:focus{
    right     : 6rem !important;
    left     : 6rem !important;
  }

  .xl\:focus\:inset-y-28:focus{
    top     : 7rem !important;
    bottom     : 7rem !important;
  }

  .xl\:focus\:inset-x-28:focus{
    right     : 7rem !important;
    left     : 7rem !important;
  }

  .xl\:focus\:inset-y-32:focus{
    top     : 8rem !important;
    bottom     : 8rem !important;
  }

  .xl\:focus\:inset-x-32:focus{
    right     : 8rem !important;
    left     : 8rem !important;
  }

  .xl\:focus\:inset-y-36:focus{
    top     : 9rem !important;
    bottom     : 9rem !important;
  }

  .xl\:focus\:inset-x-36:focus{
    right     : 9rem !important;
    left     : 9rem !important;
  }

  .xl\:focus\:inset-y-40:focus{
    top     : 10rem !important;
    bottom     : 10rem !important;
  }

  .xl\:focus\:inset-x-40:focus{
    right     : 10rem !important;
    left     : 10rem !important;
  }

  .xl\:focus\:inset-y-44:focus{
    top     : 11rem !important;
    bottom     : 11rem !important;
  }

  .xl\:focus\:inset-x-44:focus{
    right     : 11rem !important;
    left     : 11rem !important;
  }

  .xl\:focus\:inset-y-48:focus{
    top     : 12rem !important;
    bottom     : 12rem !important;
  }

  .xl\:focus\:inset-x-48:focus{
    right     : 12rem !important;
    left     : 12rem !important;
  }

  .xl\:focus\:inset-y-52:focus{
    top     : 13rem !important;
    bottom     : 13rem !important;
  }

  .xl\:focus\:inset-x-52:focus{
    right     : 13rem !important;
    left     : 13rem !important;
  }

  .xl\:focus\:inset-y-56:focus{
    top     : 14rem !important;
    bottom     : 14rem !important;
  }

  .xl\:focus\:inset-x-56:focus{
    right     : 14rem !important;
    left     : 14rem !important;
  }

  .xl\:focus\:inset-y-60:focus{
    top     : 15rem !important;
    bottom     : 15rem !important;
  }

  .xl\:focus\:inset-x-60:focus{
    right     : 15rem !important;
    left     : 15rem !important;
  }

  .xl\:focus\:inset-y-64:focus{
    top     : 16rem !important;
    bottom     : 16rem !important;
  }

  .xl\:focus\:inset-x-64:focus{
    right     : 16rem !important;
    left     : 16rem !important;
  }

  .xl\:focus\:inset-y-72:focus{
    top     : 18rem !important;
    bottom     : 18rem !important;
  }

  .xl\:focus\:inset-x-72:focus{
    right     : 18rem !important;
    left     : 18rem !important;
  }

  .xl\:focus\:inset-y-80:focus{
    top     : 20rem !important;
    bottom     : 20rem !important;
  }

  .xl\:focus\:inset-x-80:focus{
    right     : 20rem !important;
    left     : 20rem !important;
  }

  .xl\:focus\:inset-y-96:focus{
    top     : 24rem !important;
    bottom     : 24rem !important;
  }

  .xl\:focus\:inset-x-96:focus{
    right     : 24rem !important;
    left     : 24rem !important;
  }

  .xl\:focus\:inset-y-auto:focus{
    top     : auto !important;
    bottom     : auto !important;
  }

  .xl\:focus\:inset-x-auto:focus{
    right     : auto !important;
    left     : auto !important;
  }

  .xl\:focus\:inset-y-px:focus{
    top     : 1px !important;
    bottom     : 1px !important;
  }

  .xl\:focus\:inset-x-px:focus{
    right     : 1px !important;
    left     : 1px !important;
  }

  .xl\:focus\:inset-y-0\.5:focus{
    top     : 0.125rem !important;
    bottom     : 0.125rem !important;
  }

  .xl\:focus\:inset-x-0\.5:focus{
    right     : 0.125rem !important;
    left     : 0.125rem !important;
  }

  .xl\:focus\:inset-y-1\.5:focus{
    top     : 0.375rem !important;
    bottom     : 0.375rem !important;
  }

  .xl\:focus\:inset-x-1\.5:focus{
    right     : 0.375rem !important;
    left     : 0.375rem !important;
  }

  .xl\:focus\:inset-y-2\.5:focus{
    top     : 0.625rem !important;
    bottom     : 0.625rem !important;
  }

  .xl\:focus\:inset-x-2\.5:focus{
    right     : 0.625rem !important;
    left     : 0.625rem !important;
  }

  .xl\:focus\:inset-y-3\.5:focus{
    top     : 0.875rem !important;
    bottom     : 0.875rem !important;
  }

  .xl\:focus\:inset-x-3\.5:focus{
    right     : 0.875rem !important;
    left     : 0.875rem !important;
  }

  .xl\:focus\:inset-y-1\/2:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:focus\:inset-x-1\/2:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-y-1\/3:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:inset-x-1\/3:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-y-2\/3:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:inset-x-2\/3:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-y-1\/4:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .xl\:focus\:inset-x-1\/4:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .xl\:focus\:inset-y-2\/4:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:focus\:inset-x-2\/4:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-y-3\/4:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .xl\:focus\:inset-x-3\/4:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .xl\:focus\:inset-y-1\/5:focus{
    top     : 20% !important;
    bottom     : 20% !important;
  }

  .xl\:focus\:inset-x-1\/5:focus{
    right     : 20% !important;
    left     : 20% !important;
  }

  .xl\:focus\:inset-y-2\/5:focus{
    top     : 40% !important;
    bottom     : 40% !important;
  }

  .xl\:focus\:inset-x-2\/5:focus{
    right     : 40% !important;
    left     : 40% !important;
  }

  .xl\:focus\:inset-y-3\/5:focus{
    top     : 60% !important;
    bottom     : 60% !important;
  }

  .xl\:focus\:inset-x-3\/5:focus{
    right     : 60% !important;
    left     : 60% !important;
  }

  .xl\:focus\:inset-y-4\/5:focus{
    top     : 80% !important;
    bottom     : 80% !important;
  }

  .xl\:focus\:inset-x-4\/5:focus{
    right     : 80% !important;
    left     : 80% !important;
  }

  .xl\:focus\:inset-y-1\/6:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .xl\:focus\:inset-x-1\/6:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:focus\:inset-y-2\/6:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:inset-x-2\/6:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-y-3\/6:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:focus\:inset-x-3\/6:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-y-4\/6:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:inset-x-4\/6:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-y-5\/6:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .xl\:focus\:inset-x-5\/6:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:focus\:inset-y-1\/12:focus{
    top     : 8.333333% !important;
    bottom     : 8.333333% !important;
  }

  .xl\:focus\:inset-x-1\/12:focus{
    right     : 8.333333% !important;
    left     : 8.333333% !important;
  }

  .xl\:focus\:inset-y-2\/12:focus{
    top     : 16.666667% !important;
    bottom     : 16.666667% !important;
  }

  .xl\:focus\:inset-x-2\/12:focus{
    right     : 16.666667% !important;
    left     : 16.666667% !important;
  }

  .xl\:focus\:inset-y-3\/12:focus{
    top     : 25% !important;
    bottom     : 25% !important;
  }

  .xl\:focus\:inset-x-3\/12:focus{
    right     : 25% !important;
    left     : 25% !important;
  }

  .xl\:focus\:inset-y-4\/12:focus{
    top     : 33.333333% !important;
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:inset-x-4\/12:focus{
    right     : 33.333333% !important;
    left     : 33.333333% !important;
  }

  .xl\:focus\:inset-y-5\/12:focus{
    top     : 41.666667% !important;
    bottom     : 41.666667% !important;
  }

  .xl\:focus\:inset-x-5\/12:focus{
    right     : 41.666667% !important;
    left     : 41.666667% !important;
  }

  .xl\:focus\:inset-y-6\/12:focus{
    top     : 50% !important;
    bottom     : 50% !important;
  }

  .xl\:focus\:inset-x-6\/12:focus{
    right     : 50% !important;
    left     : 50% !important;
  }

  .xl\:focus\:inset-y-7\/12:focus{
    top     : 58.333333% !important;
    bottom     : 58.333333% !important;
  }

  .xl\:focus\:inset-x-7\/12:focus{
    right     : 58.333333% !important;
    left     : 58.333333% !important;
  }

  .xl\:focus\:inset-y-8\/12:focus{
    top     : 66.666667% !important;
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:inset-x-8\/12:focus{
    right     : 66.666667% !important;
    left     : 66.666667% !important;
  }

  .xl\:focus\:inset-y-9\/12:focus{
    top     : 75% !important;
    bottom     : 75% !important;
  }

  .xl\:focus\:inset-x-9\/12:focus{
    right     : 75% !important;
    left     : 75% !important;
  }

  .xl\:focus\:inset-y-10\/12:focus{
    top     : 83.333333% !important;
    bottom     : 83.333333% !important;
  }

  .xl\:focus\:inset-x-10\/12:focus{
    right     : 83.333333% !important;
    left     : 83.333333% !important;
  }

  .xl\:focus\:inset-y-11\/12:focus{
    top     : 91.666667% !important;
    bottom     : 91.666667% !important;
  }

  .xl\:focus\:inset-x-11\/12:focus{
    right     : 91.666667% !important;
    left     : 91.666667% !important;
  }

  .xl\:focus\:inset-y-full:focus{
    top     : 100% !important;
    bottom     : 100% !important;
  }

  .xl\:focus\:inset-x-full:focus{
    right     : 100% !important;
    left     : 100% !important;
  }

  .xl\:focus\:top-0:focus{
    top     : 0 !important;
  }

  .xl\:focus\:right-0:focus{
    right     : 0 !important;
  }

  .xl\:focus\:bottom-0:focus{
    bottom     : 0 !important;
  }

  .xl\:focus\:left-0:focus{
    left     : 0 !important;
  }

  .xl\:focus\:top-1:focus{
    top     : 0.25rem !important;
  }

  .xl\:focus\:right-1:focus{
    right     : 0.25rem !important;
  }

  .xl\:focus\:bottom-1:focus{
    bottom     : 0.25rem !important;
  }

  .xl\:focus\:left-1:focus{
    left     : 0.25rem !important;
  }

  .xl\:focus\:top-2:focus{
    top     : 0.5rem !important;
  }

  .xl\:focus\:right-2:focus{
    right     : 0.5rem !important;
  }

  .xl\:focus\:bottom-2:focus{
    bottom     : 0.5rem !important;
  }

  .xl\:focus\:left-2:focus{
    left     : 0.5rem !important;
  }

  .xl\:focus\:top-3:focus{
    top     : 0.75rem !important;
  }

  .xl\:focus\:right-3:focus{
    right     : 0.75rem !important;
  }

  .xl\:focus\:bottom-3:focus{
    bottom     : 0.75rem !important;
  }

  .xl\:focus\:left-3:focus{
    left     : 0.75rem !important;
  }

  .xl\:focus\:top-4:focus{
    top     : 1rem !important;
  }

  .xl\:focus\:right-4:focus{
    right     : 1rem !important;
  }

  .xl\:focus\:bottom-4:focus{
    bottom     : 1rem !important;
  }

  .xl\:focus\:left-4:focus{
    left     : 1rem !important;
  }

  .xl\:focus\:top-5:focus{
    top     : 1.25rem !important;
  }

  .xl\:focus\:right-5:focus{
    right     : 1.25rem !important;
  }

  .xl\:focus\:bottom-5:focus{
    bottom     : 1.25rem !important;
  }

  .xl\:focus\:left-5:focus{
    left     : 1.25rem !important;
  }

  .xl\:focus\:top-6:focus{
    top     : 1.5rem !important;
  }

  .xl\:focus\:right-6:focus{
    right     : 1.5rem !important;
  }

  .xl\:focus\:bottom-6:focus{
    bottom     : 1.5rem !important;
  }

  .xl\:focus\:left-6:focus{
    left     : 1.5rem !important;
  }

  .xl\:focus\:top-7:focus{
    top     : 1.75rem !important;
  }

  .xl\:focus\:right-7:focus{
    right     : 1.75rem !important;
  }

  .xl\:focus\:bottom-7:focus{
    bottom     : 1.75rem !important;
  }

  .xl\:focus\:left-7:focus{
    left     : 1.75rem !important;
  }

  .xl\:focus\:top-8:focus{
    top     : 2rem !important;
  }

  .xl\:focus\:right-8:focus{
    right     : 2rem !important;
  }

  .xl\:focus\:bottom-8:focus{
    bottom     : 2rem !important;
  }

  .xl\:focus\:left-8:focus{
    left     : 2rem !important;
  }

  .xl\:focus\:top-9:focus{
    top     : 2.25rem !important;
  }

  .xl\:focus\:right-9:focus{
    right     : 2.25rem !important;
  }

  .xl\:focus\:bottom-9:focus{
    bottom     : 2.25rem !important;
  }

  .xl\:focus\:left-9:focus{
    left     : 2.25rem !important;
  }

  .xl\:focus\:top-10:focus{
    top     : 2.5rem !important;
  }

  .xl\:focus\:right-10:focus{
    right     : 2.5rem !important;
  }

  .xl\:focus\:bottom-10:focus{
    bottom     : 2.5rem !important;
  }

  .xl\:focus\:left-10:focus{
    left     : 2.5rem !important;
  }

  .xl\:focus\:top-11:focus{
    top     : 2.75rem !important;
  }

  .xl\:focus\:right-11:focus{
    right     : 2.75rem !important;
  }

  .xl\:focus\:bottom-11:focus{
    bottom     : 2.75rem !important;
  }

  .xl\:focus\:left-11:focus{
    left     : 2.75rem !important;
  }

  .xl\:focus\:top-12:focus{
    top     : 3rem !important;
  }

  .xl\:focus\:right-12:focus{
    right     : 3rem !important;
  }

  .xl\:focus\:bottom-12:focus{
    bottom     : 3rem !important;
  }

  .xl\:focus\:left-12:focus{
    left     : 3rem !important;
  }

  .xl\:focus\:top-13:focus{
    top     : 3.25rem !important;
  }

  .xl\:focus\:right-13:focus{
    right     : 3.25rem !important;
  }

  .xl\:focus\:bottom-13:focus{
    bottom     : 3.25rem !important;
  }

  .xl\:focus\:left-13:focus{
    left     : 3.25rem !important;
  }

  .xl\:focus\:top-14:focus{
    top     : 3.5rem !important;
  }

  .xl\:focus\:right-14:focus{
    right     : 3.5rem !important;
  }

  .xl\:focus\:bottom-14:focus{
    bottom     : 3.5rem !important;
  }

  .xl\:focus\:left-14:focus{
    left     : 3.5rem !important;
  }

  .xl\:focus\:top-15:focus{
    top     : 3.75rem !important;
  }

  .xl\:focus\:right-15:focus{
    right     : 3.75rem !important;
  }

  .xl\:focus\:bottom-15:focus{
    bottom     : 3.75rem !important;
  }

  .xl\:focus\:left-15:focus{
    left     : 3.75rem !important;
  }

  .xl\:focus\:top-16:focus{
    top     : 4rem !important;
  }

  .xl\:focus\:right-16:focus{
    right     : 4rem !important;
  }

  .xl\:focus\:bottom-16:focus{
    bottom     : 4rem !important;
  }

  .xl\:focus\:left-16:focus{
    left     : 4rem !important;
  }

  .xl\:focus\:top-20:focus{
    top     : 5rem !important;
  }

  .xl\:focus\:right-20:focus{
    right     : 5rem !important;
  }

  .xl\:focus\:bottom-20:focus{
    bottom     : 5rem !important;
  }

  .xl\:focus\:left-20:focus{
    left     : 5rem !important;
  }

  .xl\:focus\:top-24:focus{
    top     : 6rem !important;
  }

  .xl\:focus\:right-24:focus{
    right     : 6rem !important;
  }

  .xl\:focus\:bottom-24:focus{
    bottom     : 6rem !important;
  }

  .xl\:focus\:left-24:focus{
    left     : 6rem !important;
  }

  .xl\:focus\:top-28:focus{
    top     : 7rem !important;
  }

  .xl\:focus\:right-28:focus{
    right     : 7rem !important;
  }

  .xl\:focus\:bottom-28:focus{
    bottom     : 7rem !important;
  }

  .xl\:focus\:left-28:focus{
    left     : 7rem !important;
  }

  .xl\:focus\:top-32:focus{
    top     : 8rem !important;
  }

  .xl\:focus\:right-32:focus{
    right     : 8rem !important;
  }

  .xl\:focus\:bottom-32:focus{
    bottom     : 8rem !important;
  }

  .xl\:focus\:left-32:focus{
    left     : 8rem !important;
  }

  .xl\:focus\:top-36:focus{
    top     : 9rem !important;
  }

  .xl\:focus\:right-36:focus{
    right     : 9rem !important;
  }

  .xl\:focus\:bottom-36:focus{
    bottom     : 9rem !important;
  }

  .xl\:focus\:left-36:focus{
    left     : 9rem !important;
  }

  .xl\:focus\:top-40:focus{
    top     : 10rem !important;
  }

  .xl\:focus\:right-40:focus{
    right     : 10rem !important;
  }

  .xl\:focus\:bottom-40:focus{
    bottom     : 10rem !important;
  }

  .xl\:focus\:left-40:focus{
    left     : 10rem !important;
  }

  .xl\:focus\:top-44:focus{
    top     : 11rem !important;
  }

  .xl\:focus\:right-44:focus{
    right     : 11rem !important;
  }

  .xl\:focus\:bottom-44:focus{
    bottom     : 11rem !important;
  }

  .xl\:focus\:left-44:focus{
    left     : 11rem !important;
  }

  .xl\:focus\:top-48:focus{
    top     : 12rem !important;
  }

  .xl\:focus\:right-48:focus{
    right     : 12rem !important;
  }

  .xl\:focus\:bottom-48:focus{
    bottom     : 12rem !important;
  }

  .xl\:focus\:left-48:focus{
    left     : 12rem !important;
  }

  .xl\:focus\:top-52:focus{
    top     : 13rem !important;
  }

  .xl\:focus\:right-52:focus{
    right     : 13rem !important;
  }

  .xl\:focus\:bottom-52:focus{
    bottom     : 13rem !important;
  }

  .xl\:focus\:left-52:focus{
    left     : 13rem !important;
  }

  .xl\:focus\:top-56:focus{
    top     : 14rem !important;
  }

  .xl\:focus\:right-56:focus{
    right     : 14rem !important;
  }

  .xl\:focus\:bottom-56:focus{
    bottom     : 14rem !important;
  }

  .xl\:focus\:left-56:focus{
    left     : 14rem !important;
  }

  .xl\:focus\:top-60:focus{
    top     : 15rem !important;
  }

  .xl\:focus\:right-60:focus{
    right     : 15rem !important;
  }

  .xl\:focus\:bottom-60:focus{
    bottom     : 15rem !important;
  }

  .xl\:focus\:left-60:focus{
    left     : 15rem !important;
  }

  .xl\:focus\:top-64:focus{
    top     : 16rem !important;
  }

  .xl\:focus\:right-64:focus{
    right     : 16rem !important;
  }

  .xl\:focus\:bottom-64:focus{
    bottom     : 16rem !important;
  }

  .xl\:focus\:left-64:focus{
    left     : 16rem !important;
  }

  .xl\:focus\:top-72:focus{
    top     : 18rem !important;
  }

  .xl\:focus\:right-72:focus{
    right     : 18rem !important;
  }

  .xl\:focus\:bottom-72:focus{
    bottom     : 18rem !important;
  }

  .xl\:focus\:left-72:focus{
    left     : 18rem !important;
  }

  .xl\:focus\:top-80:focus{
    top     : 20rem !important;
  }

  .xl\:focus\:right-80:focus{
    right     : 20rem !important;
  }

  .xl\:focus\:bottom-80:focus{
    bottom     : 20rem !important;
  }

  .xl\:focus\:left-80:focus{
    left     : 20rem !important;
  }

  .xl\:focus\:top-96:focus{
    top     : 24rem !important;
  }

  .xl\:focus\:right-96:focus{
    right     : 24rem !important;
  }

  .xl\:focus\:bottom-96:focus{
    bottom     : 24rem !important;
  }

  .xl\:focus\:left-96:focus{
    left     : 24rem !important;
  }

  .xl\:focus\:top-auto:focus{
    top     : auto !important;
  }

  .xl\:focus\:right-auto:focus{
    right     : auto !important;
  }

  .xl\:focus\:bottom-auto:focus{
    bottom     : auto !important;
  }

  .xl\:focus\:left-auto:focus{
    left     : auto !important;
  }

  .xl\:focus\:top-px:focus{
    top     : 1px !important;
  }

  .xl\:focus\:right-px:focus{
    right     : 1px !important;
  }

  .xl\:focus\:bottom-px:focus{
    bottom     : 1px !important;
  }

  .xl\:focus\:left-px:focus{
    left     : 1px !important;
  }

  .xl\:focus\:top-0\.5:focus{
    top     : 0.125rem !important;
  }

  .xl\:focus\:right-0\.5:focus{
    right     : 0.125rem !important;
  }

  .xl\:focus\:bottom-0\.5:focus{
    bottom     : 0.125rem !important;
  }

  .xl\:focus\:left-0\.5:focus{
    left     : 0.125rem !important;
  }

  .xl\:focus\:top-1\.5:focus{
    top     : 0.375rem !important;
  }

  .xl\:focus\:right-1\.5:focus{
    right     : 0.375rem !important;
  }

  .xl\:focus\:bottom-1\.5:focus{
    bottom     : 0.375rem !important;
  }

  .xl\:focus\:left-1\.5:focus{
    left     : 0.375rem !important;
  }

  .xl\:focus\:top-2\.5:focus{
    top     : 0.625rem !important;
  }

  .xl\:focus\:right-2\.5:focus{
    right     : 0.625rem !important;
  }

  .xl\:focus\:bottom-2\.5:focus{
    bottom     : 0.625rem !important;
  }

  .xl\:focus\:left-2\.5:focus{
    left     : 0.625rem !important;
  }

  .xl\:focus\:top-3\.5:focus{
    top     : 0.875rem !important;
  }

  .xl\:focus\:right-3\.5:focus{
    right     : 0.875rem !important;
  }

  .xl\:focus\:bottom-3\.5:focus{
    bottom     : 0.875rem !important;
  }

  .xl\:focus\:left-3\.5:focus{
    left     : 0.875rem !important;
  }

  .xl\:focus\:top-1\/2:focus{
    top     : 50% !important;
  }

  .xl\:focus\:right-1\/2:focus{
    right     : 50% !important;
  }

  .xl\:focus\:bottom-1\/2:focus{
    bottom     : 50% !important;
  }

  .xl\:focus\:left-1\/2:focus{
    left     : 50% !important;
  }

  .xl\:focus\:top-1\/3:focus{
    top     : 33.333333% !important;
  }

  .xl\:focus\:right-1\/3:focus{
    right     : 33.333333% !important;
  }

  .xl\:focus\:bottom-1\/3:focus{
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:left-1\/3:focus{
    left     : 33.333333% !important;
  }

  .xl\:focus\:top-2\/3:focus{
    top     : 66.666667% !important;
  }

  .xl\:focus\:right-2\/3:focus{
    right     : 66.666667% !important;
  }

  .xl\:focus\:bottom-2\/3:focus{
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:left-2\/3:focus{
    left     : 66.666667% !important;
  }

  .xl\:focus\:top-1\/4:focus{
    top     : 25% !important;
  }

  .xl\:focus\:right-1\/4:focus{
    right     : 25% !important;
  }

  .xl\:focus\:bottom-1\/4:focus{
    bottom     : 25% !important;
  }

  .xl\:focus\:left-1\/4:focus{
    left     : 25% !important;
  }

  .xl\:focus\:top-2\/4:focus{
    top     : 50% !important;
  }

  .xl\:focus\:right-2\/4:focus{
    right     : 50% !important;
  }

  .xl\:focus\:bottom-2\/4:focus{
    bottom     : 50% !important;
  }

  .xl\:focus\:left-2\/4:focus{
    left     : 50% !important;
  }

  .xl\:focus\:top-3\/4:focus{
    top     : 75% !important;
  }

  .xl\:focus\:right-3\/4:focus{
    right     : 75% !important;
  }

  .xl\:focus\:bottom-3\/4:focus{
    bottom     : 75% !important;
  }

  .xl\:focus\:left-3\/4:focus{
    left     : 75% !important;
  }

  .xl\:focus\:top-1\/5:focus{
    top     : 20% !important;
  }

  .xl\:focus\:right-1\/5:focus{
    right     : 20% !important;
  }

  .xl\:focus\:bottom-1\/5:focus{
    bottom     : 20% !important;
  }

  .xl\:focus\:left-1\/5:focus{
    left     : 20% !important;
  }

  .xl\:focus\:top-2\/5:focus{
    top     : 40% !important;
  }

  .xl\:focus\:right-2\/5:focus{
    right     : 40% !important;
  }

  .xl\:focus\:bottom-2\/5:focus{
    bottom     : 40% !important;
  }

  .xl\:focus\:left-2\/5:focus{
    left     : 40% !important;
  }

  .xl\:focus\:top-3\/5:focus{
    top     : 60% !important;
  }

  .xl\:focus\:right-3\/5:focus{
    right     : 60% !important;
  }

  .xl\:focus\:bottom-3\/5:focus{
    bottom     : 60% !important;
  }

  .xl\:focus\:left-3\/5:focus{
    left     : 60% !important;
  }

  .xl\:focus\:top-4\/5:focus{
    top     : 80% !important;
  }

  .xl\:focus\:right-4\/5:focus{
    right     : 80% !important;
  }

  .xl\:focus\:bottom-4\/5:focus{
    bottom     : 80% !important;
  }

  .xl\:focus\:left-4\/5:focus{
    left     : 80% !important;
  }

  .xl\:focus\:top-1\/6:focus{
    top     : 16.666667% !important;
  }

  .xl\:focus\:right-1\/6:focus{
    right     : 16.666667% !important;
  }

  .xl\:focus\:bottom-1\/6:focus{
    bottom     : 16.666667% !important;
  }

  .xl\:focus\:left-1\/6:focus{
    left     : 16.666667% !important;
  }

  .xl\:focus\:top-2\/6:focus{
    top     : 33.333333% !important;
  }

  .xl\:focus\:right-2\/6:focus{
    right     : 33.333333% !important;
  }

  .xl\:focus\:bottom-2\/6:focus{
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:left-2\/6:focus{
    left     : 33.333333% !important;
  }

  .xl\:focus\:top-3\/6:focus{
    top     : 50% !important;
  }

  .xl\:focus\:right-3\/6:focus{
    right     : 50% !important;
  }

  .xl\:focus\:bottom-3\/6:focus{
    bottom     : 50% !important;
  }

  .xl\:focus\:left-3\/6:focus{
    left     : 50% !important;
  }

  .xl\:focus\:top-4\/6:focus{
    top     : 66.666667% !important;
  }

  .xl\:focus\:right-4\/6:focus{
    right     : 66.666667% !important;
  }

  .xl\:focus\:bottom-4\/6:focus{
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:left-4\/6:focus{
    left     : 66.666667% !important;
  }

  .xl\:focus\:top-5\/6:focus{
    top     : 83.333333% !important;
  }

  .xl\:focus\:right-5\/6:focus{
    right     : 83.333333% !important;
  }

  .xl\:focus\:bottom-5\/6:focus{
    bottom     : 83.333333% !important;
  }

  .xl\:focus\:left-5\/6:focus{
    left     : 83.333333% !important;
  }

  .xl\:focus\:top-1\/12:focus{
    top     : 8.333333% !important;
  }

  .xl\:focus\:right-1\/12:focus{
    right     : 8.333333% !important;
  }

  .xl\:focus\:bottom-1\/12:focus{
    bottom     : 8.333333% !important;
  }

  .xl\:focus\:left-1\/12:focus{
    left     : 8.333333% !important;
  }

  .xl\:focus\:top-2\/12:focus{
    top     : 16.666667% !important;
  }

  .xl\:focus\:right-2\/12:focus{
    right     : 16.666667% !important;
  }

  .xl\:focus\:bottom-2\/12:focus{
    bottom     : 16.666667% !important;
  }

  .xl\:focus\:left-2\/12:focus{
    left     : 16.666667% !important;
  }

  .xl\:focus\:top-3\/12:focus{
    top     : 25% !important;
  }

  .xl\:focus\:right-3\/12:focus{
    right     : 25% !important;
  }

  .xl\:focus\:bottom-3\/12:focus{
    bottom     : 25% !important;
  }

  .xl\:focus\:left-3\/12:focus{
    left     : 25% !important;
  }

  .xl\:focus\:top-4\/12:focus{
    top     : 33.333333% !important;
  }

  .xl\:focus\:right-4\/12:focus{
    right     : 33.333333% !important;
  }

  .xl\:focus\:bottom-4\/12:focus{
    bottom     : 33.333333% !important;
  }

  .xl\:focus\:left-4\/12:focus{
    left     : 33.333333% !important;
  }

  .xl\:focus\:top-5\/12:focus{
    top     : 41.666667% !important;
  }

  .xl\:focus\:right-5\/12:focus{
    right     : 41.666667% !important;
  }

  .xl\:focus\:bottom-5\/12:focus{
    bottom     : 41.666667% !important;
  }

  .xl\:focus\:left-5\/12:focus{
    left     : 41.666667% !important;
  }

  .xl\:focus\:top-6\/12:focus{
    top     : 50% !important;
  }

  .xl\:focus\:right-6\/12:focus{
    right     : 50% !important;
  }

  .xl\:focus\:bottom-6\/12:focus{
    bottom     : 50% !important;
  }

  .xl\:focus\:left-6\/12:focus{
    left     : 50% !important;
  }

  .xl\:focus\:top-7\/12:focus{
    top     : 58.333333% !important;
  }

  .xl\:focus\:right-7\/12:focus{
    right     : 58.333333% !important;
  }

  .xl\:focus\:bottom-7\/12:focus{
    bottom     : 58.333333% !important;
  }

  .xl\:focus\:left-7\/12:focus{
    left     : 58.333333% !important;
  }

  .xl\:focus\:top-8\/12:focus{
    top     : 66.666667% !important;
  }

  .xl\:focus\:right-8\/12:focus{
    right     : 66.666667% !important;
  }

  .xl\:focus\:bottom-8\/12:focus{
    bottom     : 66.666667% !important;
  }

  .xl\:focus\:left-8\/12:focus{
    left     : 66.666667% !important;
  }

  .xl\:focus\:top-9\/12:focus{
    top     : 75% !important;
  }

  .xl\:focus\:right-9\/12:focus{
    right     : 75% !important;
  }

  .xl\:focus\:bottom-9\/12:focus{
    bottom     : 75% !important;
  }

  .xl\:focus\:left-9\/12:focus{
    left     : 75% !important;
  }

  .xl\:focus\:top-10\/12:focus{
    top     : 83.333333% !important;
  }

  .xl\:focus\:right-10\/12:focus{
    right     : 83.333333% !important;
  }

  .xl\:focus\:bottom-10\/12:focus{
    bottom     : 83.333333% !important;
  }

  .xl\:focus\:left-10\/12:focus{
    left     : 83.333333% !important;
  }

  .xl\:focus\:top-11\/12:focus{
    top     : 91.666667% !important;
  }

  .xl\:focus\:right-11\/12:focus{
    right     : 91.666667% !important;
  }

  .xl\:focus\:bottom-11\/12:focus{
    bottom     : 91.666667% !important;
  }

  .xl\:focus\:left-11\/12:focus{
    left     : 91.666667% !important;
  }

  .xl\:focus\:top-full:focus{
    top     : 100% !important;
  }

  .xl\:focus\:right-full:focus{
    right     : 100% !important;
  }

  .xl\:focus\:bottom-full:focus{
    bottom     : 100% !important;
  }

  .xl\:focus\:left-full:focus{
    left     : 100% !important;
  }

  .xl\:resize-none{
    resize     : none !important;
  }

  .xl\:resize-y{
    resize     : vertical !important;
  }

  .xl\:resize-x{
    resize     : horizontal !important;
  }

  .xl\:resize{
    resize     : both !important;
  }

  .group:hover .xl\:group-hover\:resize-none{
    resize     : none !important;
  }

  .group:hover .xl\:group-hover\:resize-y{
    resize     : vertical !important;
  }

  .group:hover .xl\:group-hover\:resize-x{
    resize     : horizontal !important;
  }

  .group:hover .xl\:group-hover\:resize{
    resize     : both !important;
  }

  .xl\:hover\:resize-none:hover{
    resize     : none !important;
  }

  .xl\:hover\:resize-y:hover{
    resize     : vertical !important;
  }

  .xl\:hover\:resize-x:hover{
    resize     : horizontal !important;
  }

  .xl\:hover\:resize:hover{
    resize     : both !important;
  }

  .xl\:focus\:resize-none:focus{
    resize     : none !important;
  }

  .xl\:focus\:resize-y:focus{
    resize     : vertical !important;
  }

  .xl\:focus\:resize-x:focus{
    resize     : horizontal !important;
  }

  .xl\:focus\:resize:focus{
    resize     : both !important;
  }

  .xl\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .xl\:shadow-none{
    box-shadow     : none !important;
  }

  .xl\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .xl\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .xl\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .xl\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .xl\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .xl\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .xl\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .xl\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .xl\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .xl\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .xl\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-xs{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .xl\:group-hover\:shadow-sm{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .group:hover .xl\:group-hover\:shadow{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:shadow-2xl{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .group:hover .xl\:group-hover\:shadow-inner{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-none{
    box-shadow     : none !important;
  }

  .group:hover .xl\:group-hover\:shadow-solid{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-gray{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-blue{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-teal{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-green{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-yellow{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-orange{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-red{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-pink{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-purple{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .group:hover .xl\:group-hover\:shadow-outline-indigo{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .xl\:hover\:shadow-xs:hover{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:shadow-sm:hover{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:shadow:hover{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:shadow-md:hover{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:shadow-lg:hover{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:shadow-xl:hover{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:hover\:shadow-2xl:hover{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:hover\:shadow-inner:hover{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:shadow-outline:hover{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .xl\:hover\:shadow-none:hover{
    box-shadow     : none !important;
  }

  .xl\:hover\:shadow-solid:hover{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .xl\:hover\:shadow-outline-gray:hover{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-blue:hover{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-teal:hover{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-green:hover{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-yellow:hover{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-orange:hover{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-red:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-pink:hover{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-purple:hover{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .xl\:hover\:shadow-outline-indigo:hover{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .xl\:focus\:shadow-xs:focus{
    box-shadow     : 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:shadow-sm:focus{
    box-shadow     : 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:shadow:focus{
    box-shadow     : 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:shadow-md:focus{
    box-shadow     : 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:shadow-lg:focus{
    box-shadow     : 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:shadow-xl:focus{
    box-shadow     : 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:focus\:shadow-2xl:focus{
    box-shadow     : 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:focus\:shadow-inner:focus{
    box-shadow     : inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:shadow-outline:focus{
    box-shadow     : 0 0 0 3px rgba(118, 169, 250, 0.45) !important;
  }

  .xl\:focus\:shadow-none:focus{
    box-shadow     : none !important;
  }

  .xl\:focus\:shadow-solid:focus{
    box-shadow     : 0 0 0 2px currentColor !important;
  }

  .xl\:focus\:shadow-outline-gray:focus{
    box-shadow     : 0 0 0 3px rgba(159, 166, 178, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-blue:focus{
    box-shadow     : 0 0 0 3px rgba(164, 202, 254, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-teal:focus{
    box-shadow     : 0 0 0 3px rgba(126, 220, 226, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-green:focus{
    box-shadow     : 0 0 0 3px rgba(132, 225, 188, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-yellow:focus{
    box-shadow     : 0 0 0 3px rgba(250, 202, 21, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-orange:focus{
    box-shadow     : 0 0 0 3px rgba(253, 186, 140, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-red:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 180, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-pink:focus{
    box-shadow     : 0 0 0 3px rgba(248, 180, 217, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-purple:focus{
    box-shadow     : 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
  }

  .xl\:focus\:shadow-outline-indigo:focus{
    box-shadow     : 0 0 0 3px rgba(180, 198, 252, 0.45) !important;
  }

  .xl\:fill-current{
    fill     : currentColor !important;
  }

  .group:hover .xl\:group-hover\:fill-current{
    fill     : currentColor !important;
  }

  .xl\:hover\:fill-current:hover{
    fill     : currentColor !important;
  }

  .xl\:focus\:fill-current:focus{
    fill     : currentColor !important;
  }

  .xl\:stroke-current{
    stroke     : currentColor !important;
  }

  .group:hover .xl\:group-hover\:stroke-current{
    stroke     : currentColor !important;
  }

  .xl\:hover\:stroke-current:hover{
    stroke     : currentColor !important;
  }

  .xl\:focus\:stroke-current:focus{
    stroke     : currentColor !important;
  }

  .xl\:stroke-0{
    stroke-width     : 0 !important;
  }

  .xl\:stroke-1{
    stroke-width     : 1 !important;
  }

  .xl\:stroke-2{
    stroke-width     : 2 !important;
  }

  .group:hover .xl\:group-hover\:stroke-0{
    stroke-width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:stroke-1{
    stroke-width     : 1 !important;
  }

  .group:hover .xl\:group-hover\:stroke-2{
    stroke-width     : 2 !important;
  }

  .xl\:hover\:stroke-0:hover{
    stroke-width     : 0 !important;
  }

  .xl\:hover\:stroke-1:hover{
    stroke-width     : 1 !important;
  }

  .xl\:hover\:stroke-2:hover{
    stroke-width     : 2 !important;
  }

  .xl\:focus\:stroke-0:focus{
    stroke-width     : 0 !important;
  }

  .xl\:focus\:stroke-1:focus{
    stroke-width     : 1 !important;
  }

  .xl\:focus\:stroke-2:focus{
    stroke-width     : 2 !important;
  }

  .xl\:table-auto{
    table-layout     : auto !important;
  }

  .xl\:table-fixed{
    table-layout     : fixed !important;
  }

  .group:hover .xl\:group-hover\:table-auto{
    table-layout     : auto !important;
  }

  .group:hover .xl\:group-hover\:table-fixed{
    table-layout     : fixed !important;
  }

  .xl\:hover\:table-auto:hover{
    table-layout     : auto !important;
  }

  .xl\:hover\:table-fixed:hover{
    table-layout     : fixed !important;
  }

  .xl\:focus\:table-auto:focus{
    table-layout     : auto !important;
  }

  .xl\:focus\:table-fixed:focus{
    table-layout     : fixed !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;
  }

  .group:hover .xl\:group-hover\:text-left{
    text-align     : left !important;
  }

  .group:hover .xl\:group-hover\:text-center{
    text-align     : center !important;
  }

  .group:hover .xl\:group-hover\:text-right{
    text-align     : right !important;
  }

  .group:hover .xl\:group-hover\:text-justify{
    text-align     : justify !important;
  }

  .xl\:hover\:text-left:hover{
    text-align     : left !important;
  }

  .xl\:hover\:text-center:hover{
    text-align     : center !important;
  }

  .xl\:hover\:text-right:hover{
    text-align     : right !important;
  }

  .xl\:hover\:text-justify:hover{
    text-align     : justify !important;
  }

  .xl\:focus\:text-left:focus{
    text-align     : left !important;
  }

  .xl\:focus\:text-center:focus{
    text-align     : center !important;
  }

  .xl\:focus\:text-right:focus{
    text-align     : right !important;
  }

  .xl\:focus\:text-justify:focus{
    text-align     : justify !important;
  }

  .xl\:text-transparent{
    color     : transparent !important;
  }

  .xl\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .xl\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .xl\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .xl\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .xl\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .xl\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .xl\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .xl\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .xl\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .xl\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .xl\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .xl\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .xl\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .xl\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .xl\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .xl\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .xl\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .xl\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .xl\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .xl\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .xl\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .xl\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .xl\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .xl\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .xl\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .xl\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .xl\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .xl\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .xl\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .xl\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .xl\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .xl\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .xl\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .xl\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .xl\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .xl\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .xl\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .xl\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .xl\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .xl\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .xl\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .xl\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .xl\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .xl\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .xl\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .xl\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .xl\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .xl\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .xl\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .xl\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .xl\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .xl\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .xl\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .xl\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .xl\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .xl\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .xl\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .xl\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .xl\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .xl\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .xl\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .xl\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .xl\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .xl\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .xl\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .xl\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .xl\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .xl\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .xl\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .xl\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .xl\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .xl\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .xl\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .xl\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .xl\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .xl\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .xl\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .xl\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .xl\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .xl\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-transparent{
    color     : transparent !important;
  }

  .group:hover .xl\:group-hover\:text-white{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-black{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-50{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-100{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-200{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-300{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-400{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-500{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-600{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-700{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-800{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-gray-900{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-50{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-100{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-200{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-300{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-400{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-500{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-600{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-700{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-800{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-cool-gray-900{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-100{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-200{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-300{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-400{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-500{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-600{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-700{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-800{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-red-900{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-50{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-100{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-200{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-300{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-400{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-500{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-600{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-700{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-800{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-orange-900{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-50{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-100{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-200{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-300{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-400{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-500{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-600{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-700{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-800{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-yellow-900{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-50{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-100{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-200{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-300{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-400{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-500{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-600{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-700{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-800{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-green-900{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-50{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-100{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-200{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-300{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-400{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-500{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-600{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-700{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-800{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-teal-900{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-50{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-100{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-200{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-300{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-400{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-500{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-600{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-700{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-800{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-900{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-50{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-100{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-200{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-300{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-400{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-500{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-600{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-700{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-800{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-indigo-900{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-50{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-100{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-200{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-300{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-400{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-500{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-600{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-700{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-800{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-purple-900{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-50{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-100{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-200{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-300{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-400{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-500{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-600{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-700{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-800{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-pink-900{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .group:hover .xl\:group-hover\:text-blue-brand{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-transparent:hover{
    color     : transparent !important;
  }

  .xl\:hover\:text-white:hover{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-black:hover{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-50:hover{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-100:hover{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-200:hover{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-300:hover{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-400:hover{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-500:hover{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-600:hover{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-700:hover{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-800:hover{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-cool-gray-900:hover{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-100:hover{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-200:hover{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-400:hover{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-500:hover{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-600:hover{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-700:hover{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-800:hover{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-red-900:hover{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-50:hover{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-100:hover{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-200:hover{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-300:hover{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-400:hover{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-500:hover{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-600:hover{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-700:hover{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-800:hover{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-orange-900:hover{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-100:hover{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-200:hover{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-300:hover{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-400:hover{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-500:hover{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-600:hover{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-700:hover{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-800:hover{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-yellow-900:hover{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-50:hover{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-100:hover{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-200:hover{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-300:hover{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-400:hover{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-500:hover{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-600:hover{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-700:hover{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-800:hover{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-green-900:hover{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-50:hover{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-100:hover{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-200:hover{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-300:hover{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-400:hover{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-500:hover{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-600:hover{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-700:hover{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-800:hover{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-teal-900:hover{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-50:hover{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-100:hover{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-200:hover{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-300:hover{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-400:hover{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-500:hover{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-600:hover{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-700:hover{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-800:hover{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-900:hover{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-50:hover{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-100:hover{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-200:hover{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-300:hover{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-400:hover{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-500:hover{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-600:hover{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-700:hover{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-800:hover{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-indigo-900:hover{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-50:hover{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-100:hover{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-200:hover{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-300:hover{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-400:hover{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-500:hover{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-600:hover{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-700:hover{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-800:hover{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-purple-900:hover{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-50:hover{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-100:hover{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-200:hover{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-300:hover{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-400:hover{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-500:hover{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-600:hover{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-700:hover{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-800:hover{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-pink-900:hover{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .xl\:hover\:text-blue-brand:hover{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-transparent:focus{
    color     : transparent !important;
  }

  .xl\:focus\:text-white:focus{
    --text-opacity     : 1 !important;
    color     : #ffffff !important;
    color     : rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-black:focus{
    --text-opacity     : 1 !important;
    color     : #000000 !important;
    color     : rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f9fafb !important;
    color     : rgba(249, 250, 251, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f4f5f7 !important;
    color     : rgba(244, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e5e7eb !important;
    color     : rgba(229, 231, 235, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #d2d6dc !important;
    color     : rgba(210, 214, 220, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #9fa6b2 !important;
    color     : rgba(159, 166, 178, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #6b7280 !important;
    color     : rgba(107, 114, 128, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #4b5563 !important;
    color     : rgba(75, 85, 99, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #374151 !important;
    color     : rgba(55, 65, 81, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #252f3f !important;
    color     : rgba(37, 47, 63, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #161e2e !important;
    color     : rgba(22, 30, 46, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-50:focus{
    --text-opacity     : 1 !important;
    color     : #f8fafc !important;
    color     : rgba(248, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-100:focus{
    --text-opacity     : 1 !important;
    color     : #f1f5f9 !important;
    color     : rgba(241, 245, 249, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-200:focus{
    --text-opacity     : 1 !important;
    color     : #e2e8f0 !important;
    color     : rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-300:focus{
    --text-opacity     : 1 !important;
    color     : #cfd8e3 !important;
    color     : rgba(207, 216, 227, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-400:focus{
    --text-opacity     : 1 !important;
    color     : #97a6ba !important;
    color     : rgba(151, 166, 186, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-500:focus{
    --text-opacity     : 1 !important;
    color     : #64748b !important;
    color     : rgba(100, 116, 139, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-600:focus{
    --text-opacity     : 1 !important;
    color     : #475569 !important;
    color     : rgba(71, 85, 105, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-700:focus{
    --text-opacity     : 1 !important;
    color     : #364152 !important;
    color     : rgba(54, 65, 82, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-800:focus{
    --text-opacity     : 1 !important;
    color     : #27303f !important;
    color     : rgba(39, 48, 63, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-cool-gray-900:focus{
    --text-opacity     : 1 !important;
    color     : #1a202e !important;
    color     : rgba(26, 32, 46, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f2 !important;
    color     : rgba(253, 242, 242, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-100:focus{
    --text-opacity     : 1 !important;
    color     : #fde8e8 !important;
    color     : rgba(253, 232, 232, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-200:focus{
    --text-opacity     : 1 !important;
    color     : #fbd5d5 !important;
    color     : rgba(251, 213, 213, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4b4 !important;
    color     : rgba(248, 180, 180, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-400:focus{
    --text-opacity     : 1 !important;
    color     : #f98080 !important;
    color     : rgba(249, 128, 128, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-500:focus{
    --text-opacity     : 1 !important;
    color     : #f05252 !important;
    color     : rgba(240, 82, 82, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-600:focus{
    --text-opacity     : 1 !important;
    color     : #e02424 !important;
    color     : rgba(224, 36, 36, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-700:focus{
    --text-opacity     : 1 !important;
    color     : #c81e1e !important;
    color     : rgba(200, 30, 30, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-800:focus{
    --text-opacity     : 1 !important;
    color     : #9b1c1c !important;
    color     : rgba(155, 28, 28, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-red-900:focus{
    --text-opacity     : 1 !important;
    color     : #771d1d !important;
    color     : rgba(119, 29, 29, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-50:focus{
    --text-opacity     : 1 !important;
    color     : #fff8f1 !important;
    color     : rgba(255, 248, 241, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-100:focus{
    --text-opacity     : 1 !important;
    color     : #feecdc !important;
    color     : rgba(254, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-200:focus{
    --text-opacity     : 1 !important;
    color     : #fcd9bd !important;
    color     : rgba(252, 217, 189, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-300:focus{
    --text-opacity     : 1 !important;
    color     : #fdba8c !important;
    color     : rgba(253, 186, 140, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-400:focus{
    --text-opacity     : 1 !important;
    color     : #ff8a4c !important;
    color     : rgba(255, 138, 76, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-500:focus{
    --text-opacity     : 1 !important;
    color     : #ff5a1f !important;
    color     : rgba(255, 90, 31, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-600:focus{
    --text-opacity     : 1 !important;
    color     : #d03801 !important;
    color     : rgba(208, 56, 1, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-700:focus{
    --text-opacity     : 1 !important;
    color     : #b43403 !important;
    color     : rgba(180, 52, 3, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-800:focus{
    --text-opacity     : 1 !important;
    color     : #8a2c0d !important;
    color     : rgba(138, 44, 13, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-orange-900:focus{
    --text-opacity     : 1 !important;
    color     : #73230d !important;
    color     : rgba(115, 35, 13, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdfdea !important;
    color     : rgba(253, 253, 234, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-100:focus{
    --text-opacity     : 1 !important;
    color     : #fdf6b2 !important;
    color     : rgba(253, 246, 178, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-200:focus{
    --text-opacity     : 1 !important;
    color     : #fce96a !important;
    color     : rgba(252, 233, 106, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-300:focus{
    --text-opacity     : 1 !important;
    color     : #faca15 !important;
    color     : rgba(250, 202, 21, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-400:focus{
    --text-opacity     : 1 !important;
    color     : #e3a008 !important;
    color     : rgba(227, 160, 8, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-500:focus{
    --text-opacity     : 1 !important;
    color     : #c27803 !important;
    color     : rgba(194, 120, 3, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-600:focus{
    --text-opacity     : 1 !important;
    color     : #9f580a !important;
    color     : rgba(159, 88, 10, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-700:focus{
    --text-opacity     : 1 !important;
    color     : #8e4b10 !important;
    color     : rgba(142, 75, 16, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-800:focus{
    --text-opacity     : 1 !important;
    color     : #723b13 !important;
    color     : rgba(114, 59, 19, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-yellow-900:focus{
    --text-opacity     : 1 !important;
    color     : #633112 !important;
    color     : rgba(99, 49, 18, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-50:focus{
    --text-opacity     : 1 !important;
    color     : #f3faf7 !important;
    color     : rgba(243, 250, 247, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-100:focus{
    --text-opacity     : 1 !important;
    color     : #def7ec !important;
    color     : rgba(222, 247, 236, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-200:focus{
    --text-opacity     : 1 !important;
    color     : #bcf0da !important;
    color     : rgba(188, 240, 218, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-300:focus{
    --text-opacity     : 1 !important;
    color     : #84e1bc !important;
    color     : rgba(132, 225, 188, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-400:focus{
    --text-opacity     : 1 !important;
    color     : #31c48d !important;
    color     : rgba(49, 196, 141, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-500:focus{
    --text-opacity     : 1 !important;
    color     : #0e9f6e !important;
    color     : rgba(14, 159, 110, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-600:focus{
    --text-opacity     : 1 !important;
    color     : #057a55 !important;
    color     : rgba(5, 122, 85, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-700:focus{
    --text-opacity     : 1 !important;
    color     : #046c4e !important;
    color     : rgba(4, 108, 78, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-800:focus{
    --text-opacity     : 1 !important;
    color     : #03543f !important;
    color     : rgba(3, 84, 63, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-green-900:focus{
    --text-opacity     : 1 !important;
    color     : #014737 !important;
    color     : rgba(1, 71, 55, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-50:focus{
    --text-opacity     : 1 !important;
    color     : #edfafa !important;
    color     : rgba(237, 250, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-100:focus{
    --text-opacity     : 1 !important;
    color     : #d5f5f6 !important;
    color     : rgba(213, 245, 246, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-200:focus{
    --text-opacity     : 1 !important;
    color     : #afecef !important;
    color     : rgba(175, 236, 239, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-300:focus{
    --text-opacity     : 1 !important;
    color     : #7edce2 !important;
    color     : rgba(126, 220, 226, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-400:focus{
    --text-opacity     : 1 !important;
    color     : #16bdca !important;
    color     : rgba(22, 189, 202, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-500:focus{
    --text-opacity     : 1 !important;
    color     : #0694a2 !important;
    color     : rgba(6, 148, 162, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-600:focus{
    --text-opacity     : 1 !important;
    color     : #047481 !important;
    color     : rgba(4, 116, 129, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-700:focus{
    --text-opacity     : 1 !important;
    color     : #036672 !important;
    color     : rgba(3, 102, 114, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-800:focus{
    --text-opacity     : 1 !important;
    color     : #05505c !important;
    color     : rgba(5, 80, 92, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-teal-900:focus{
    --text-opacity     : 1 !important;
    color     : #014451 !important;
    color     : rgba(1, 68, 81, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-50:focus{
    --text-opacity     : 1 !important;
    color     : #ebf5ff !important;
    color     : rgba(235, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-100:focus{
    --text-opacity     : 1 !important;
    color     : #e1effe !important;
    color     : rgba(225, 239, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-200:focus{
    --text-opacity     : 1 !important;
    color     : #c3ddfd !important;
    color     : rgba(195, 221, 253, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-300:focus{
    --text-opacity     : 1 !important;
    color     : #a4cafe !important;
    color     : rgba(164, 202, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-400:focus{
    --text-opacity     : 1 !important;
    color     : #76a9fa !important;
    color     : rgba(118, 169, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-500:focus{
    --text-opacity     : 1 !important;
    color     : #3f83f8 !important;
    color     : rgba(63, 131, 248, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-600:focus{
    --text-opacity     : 1 !important;
    color     : #1c64f2 !important;
    color     : rgba(28, 100, 242, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-700:focus{
    --text-opacity     : 1 !important;
    color     : #1a56db !important;
    color     : rgba(26, 86, 219, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-800:focus{
    --text-opacity     : 1 !important;
    color     : #1e429f !important;
    color     : rgba(30, 66, 159, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-900:focus{
    --text-opacity     : 1 !important;
    color     : #233876 !important;
    color     : rgba(35, 56, 118, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-50:focus{
    --text-opacity     : 1 !important;
    color     : #f0f5ff !important;
    color     : rgba(240, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-100:focus{
    --text-opacity     : 1 !important;
    color     : #e5edff !important;
    color     : rgba(229, 237, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-200:focus{
    --text-opacity     : 1 !important;
    color     : #cddbfe !important;
    color     : rgba(205, 219, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-300:focus{
    --text-opacity     : 1 !important;
    color     : #b4c6fc !important;
    color     : rgba(180, 198, 252, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-400:focus{
    --text-opacity     : 1 !important;
    color     : #8da2fb !important;
    color     : rgba(141, 162, 251, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-500:focus{
    --text-opacity     : 1 !important;
    color     : #6875f5 !important;
    color     : rgba(104, 117, 245, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-600:focus{
    --text-opacity     : 1 !important;
    color     : #5850ec !important;
    color     : rgba(88, 80, 236, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-700:focus{
    --text-opacity     : 1 !important;
    color     : #5145cd !important;
    color     : rgba(81, 69, 205, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-800:focus{
    --text-opacity     : 1 !important;
    color     : #42389d !important;
    color     : rgba(66, 56, 157, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-indigo-900:focus{
    --text-opacity     : 1 !important;
    color     : #362f78 !important;
    color     : rgba(54, 47, 120, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-50:focus{
    --text-opacity     : 1 !important;
    color     : #f6f5ff !important;
    color     : rgba(246, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-100:focus{
    --text-opacity     : 1 !important;
    color     : #edebfe !important;
    color     : rgba(237, 235, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-200:focus{
    --text-opacity     : 1 !important;
    color     : #dcd7fe !important;
    color     : rgba(220, 215, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-300:focus{
    --text-opacity     : 1 !important;
    color     : #cabffd !important;
    color     : rgba(202, 191, 253, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-400:focus{
    --text-opacity     : 1 !important;
    color     : #ac94fa !important;
    color     : rgba(172, 148, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-500:focus{
    --text-opacity     : 1 !important;
    color     : #9061f9 !important;
    color     : rgba(144, 97, 249, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-600:focus{
    --text-opacity     : 1 !important;
    color     : #7e3af2 !important;
    color     : rgba(126, 58, 242, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-700:focus{
    --text-opacity     : 1 !important;
    color     : #6c2bd9 !important;
    color     : rgba(108, 43, 217, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-800:focus{
    --text-opacity     : 1 !important;
    color     : #5521b5 !important;
    color     : rgba(85, 33, 181, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-purple-900:focus{
    --text-opacity     : 1 !important;
    color     : #4a1d96 !important;
    color     : rgba(74, 29, 150, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-50:focus{
    --text-opacity     : 1 !important;
    color     : #fdf2f8 !important;
    color     : rgba(253, 242, 248, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-100:focus{
    --text-opacity     : 1 !important;
    color     : #fce8f3 !important;
    color     : rgba(252, 232, 243, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-200:focus{
    --text-opacity     : 1 !important;
    color     : #fad1e8 !important;
    color     : rgba(250, 209, 232, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-300:focus{
    --text-opacity     : 1 !important;
    color     : #f8b4d9 !important;
    color     : rgba(248, 180, 217, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-400:focus{
    --text-opacity     : 1 !important;
    color     : #f17eb8 !important;
    color     : rgba(241, 126, 184, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-500:focus{
    --text-opacity     : 1 !important;
    color     : #e74694 !important;
    color     : rgba(231, 70, 148, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-600:focus{
    --text-opacity     : 1 !important;
    color     : #d61f69 !important;
    color     : rgba(214, 31, 105, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-700:focus{
    --text-opacity     : 1 !important;
    color     : #bf125d !important;
    color     : rgba(191, 18, 93, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-800:focus{
    --text-opacity     : 1 !important;
    color     : #99154b !important;
    color     : rgba(153, 21, 75, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-pink-900:focus{
    --text-opacity     : 1 !important;
    color     : #751a3d !important;
    color     : rgba(117, 26, 61, var(--text-opacity)) !important;
  }

  .xl\:focus\:text-blue-brand:focus{
    --text-opacity     : 1 !important;
    color     : #0287f6 !important;
    color     : rgba(2, 135, 246, var(--text-opacity)) !important;
  }

  .xl\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .xl\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .xl\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .xl\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .xl\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .group:hover .xl\:group-hover\:text-opacity-0{
    --text-opacity     : 0 !important;
  }

  .group:hover .xl\:group-hover\:text-opacity-25{
    --text-opacity     : 0.25 !important;
  }

  .group:hover .xl\:group-hover\:text-opacity-50{
    --text-opacity     : 0.5 !important;
  }

  .group:hover .xl\:group-hover\:text-opacity-75{
    --text-opacity     : 0.75 !important;
  }

  .group:hover .xl\:group-hover\:text-opacity-100{
    --text-opacity     : 1 !important;
  }

  .xl\:hover\:text-opacity-0:hover{
    --text-opacity     : 0 !important;
  }

  .xl\:hover\:text-opacity-25:hover{
    --text-opacity     : 0.25 !important;
  }

  .xl\:hover\:text-opacity-50:hover{
    --text-opacity     : 0.5 !important;
  }

  .xl\:hover\:text-opacity-75:hover{
    --text-opacity     : 0.75 !important;
  }

  .xl\:hover\:text-opacity-100:hover{
    --text-opacity     : 1 !important;
  }

  .xl\:focus\:text-opacity-0:focus{
    --text-opacity     : 0 !important;
  }

  .xl\:focus\:text-opacity-25:focus{
    --text-opacity     : 0.25 !important;
  }

  .xl\:focus\:text-opacity-50:focus{
    --text-opacity     : 0.5 !important;
  }

  .xl\:focus\:text-opacity-75:focus{
    --text-opacity     : 0.75 !important;
  }

  .xl\:focus\:text-opacity-100:focus{
    --text-opacity     : 1 !important;
  }

  .xl\:italic{
    font-style     : italic !important;
  }

  .xl\:not-italic{
    font-style     : normal !important;
  }

  .group:hover .xl\:group-hover\:italic{
    font-style     : italic !important;
  }

  .group:hover .xl\:group-hover\:not-italic{
    font-style     : normal !important;
  }

  .xl\:hover\:italic:hover{
    font-style     : italic !important;
  }

  .xl\:hover\:not-italic:hover{
    font-style     : normal !important;
  }

  .xl\:focus\:italic:focus{
    font-style     : italic !important;
  }

  .xl\:focus\:not-italic:focus{
    font-style     : normal !important;
  }

  .xl\:uppercase{
    text-transform     : uppercase !important;
  }

  .xl\:lowercase{
    text-transform     : lowercase !important;
  }

  .xl\:capitalize{
    text-transform     : capitalize !important;
  }

  .xl\:normal-case{
    text-transform     : none !important;
  }

  .group:hover .xl\:group-hover\:uppercase{
    text-transform     : uppercase !important;
  }

  .group:hover .xl\:group-hover\:lowercase{
    text-transform     : lowercase !important;
  }

  .group:hover .xl\:group-hover\:capitalize{
    text-transform     : capitalize !important;
  }

  .group:hover .xl\:group-hover\:normal-case{
    text-transform     : none !important;
  }

  .xl\:hover\:uppercase:hover{
    text-transform     : uppercase !important;
  }

  .xl\:hover\:lowercase:hover{
    text-transform     : lowercase !important;
  }

  .xl\:hover\:capitalize:hover{
    text-transform     : capitalize !important;
  }

  .xl\:hover\:normal-case:hover{
    text-transform     : none !important;
  }

  .xl\:focus\:uppercase:focus{
    text-transform     : uppercase !important;
  }

  .xl\:focus\:lowercase:focus{
    text-transform     : lowercase !important;
  }

  .xl\:focus\:capitalize:focus{
    text-transform     : capitalize !important;
  }

  .xl\:focus\:normal-case:focus{
    text-transform     : none !important;
  }

  .xl\:underline{
    text-decoration     : underline !important;
  }

  .xl\:line-through{
    text-decoration     : line-through !important;
  }

  .xl\:no-underline{
    text-decoration     : none !important;
  }

  .group:hover .xl\:group-hover\:underline{
    text-decoration     : underline !important;
  }

  .group:hover .xl\:group-hover\:line-through{
    text-decoration     : line-through !important;
  }

  .group:hover .xl\:group-hover\:no-underline{
    text-decoration     : none !important;
  }

  .xl\:hover\:underline:hover{
    text-decoration     : underline !important;
  }

  .xl\:hover\:line-through:hover{
    text-decoration     : line-through !important;
  }

  .xl\:hover\:no-underline:hover{
    text-decoration     : none !important;
  }

  .xl\:focus\:underline:focus{
    text-decoration     : underline !important;
  }

  .xl\:focus\:line-through:focus{
    text-decoration     : line-through !important;
  }

  .xl\:focus\:no-underline:focus{
    text-decoration     : none !important;
  }

  .xl\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .xl\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .group:hover .xl\:group-hover\:antialiased{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .group:hover .xl\:group-hover\:subpixel-antialiased{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .xl\:hover\:antialiased:hover{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .xl\:hover\:subpixel-antialiased:hover{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !important;
  }

  .xl\:focus\:antialiased:focus{
    -webkit-font-smoothing     : antialiased !important;
    -moz-osx-font-smoothing     : grayscale !important;
  }

  .xl\:focus\:subpixel-antialiased:focus{
    -webkit-font-smoothing     : auto !important;
    -moz-osx-font-smoothing     : auto !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;
  }

  .group:hover .xl\:group-hover\:tracking-tighter{
    letter-spacing     : -0.05em !important;
  }

  .group:hover .xl\:group-hover\:tracking-tight{
    letter-spacing     : -0.025em !important;
  }

  .group:hover .xl\:group-hover\:tracking-normal{
    letter-spacing     : 0 !important;
  }

  .group:hover .xl\:group-hover\:tracking-wide{
    letter-spacing     : 0.025em !important;
  }

  .group:hover .xl\:group-hover\:tracking-wider{
    letter-spacing     : 0.05em !important;
  }

  .group:hover .xl\:group-hover\:tracking-widest{
    letter-spacing     : 0.1em !important;
  }

  .xl\:hover\:tracking-tighter:hover{
    letter-spacing     : -0.05em !important;
  }

  .xl\:hover\:tracking-tight:hover{
    letter-spacing     : -0.025em !important;
  }

  .xl\:hover\:tracking-normal:hover{
    letter-spacing     : 0 !important;
  }

  .xl\:hover\:tracking-wide:hover{
    letter-spacing     : 0.025em !important;
  }

  .xl\:hover\:tracking-wider:hover{
    letter-spacing     : 0.05em !important;
  }

  .xl\:hover\:tracking-widest:hover{
    letter-spacing     : 0.1em !important;
  }

  .xl\:focus\:tracking-tighter:focus{
    letter-spacing     : -0.05em !important;
  }

  .xl\:focus\:tracking-tight:focus{
    letter-spacing     : -0.025em !important;
  }

  .xl\:focus\:tracking-normal:focus{
    letter-spacing     : 0 !important;
  }

  .xl\:focus\:tracking-wide:focus{
    letter-spacing     : 0.025em !important;
  }

  .xl\:focus\:tracking-wider:focus{
    letter-spacing     : 0.05em !important;
  }

  .xl\:focus\:tracking-widest:focus{
    letter-spacing     : 0.1em !important;
  }

  .xl\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .xl\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .xl\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .xl\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .group:hover .xl\:group-hover\:select-none{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .group:hover .xl\:group-hover\:select-text{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .group:hover .xl\:group-hover\:select-all{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .group:hover .xl\:group-hover\:select-auto{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .xl\:hover\:select-none:hover{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .xl\:hover\:select-text:hover{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .xl\:hover\:select-all:hover{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .xl\:hover\:select-auto:hover{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .xl\:focus\:select-none:focus{
    -webkit-user-select     : none !important;
       -moz-user-select     : none !important;
        -ms-user-select     : none !important;
            user-select     : none !important;
  }

  .xl\:focus\:select-text:focus{
    -webkit-user-select     : text !important;
       -moz-user-select     : text !important;
        -ms-user-select     : text !important;
            user-select     : text !important;
  }

  .xl\:focus\:select-all:focus{
    -webkit-user-select     : all !important;
       -moz-user-select     : all !important;
        -ms-user-select     : all !important;
            user-select     : all !important;
  }

  .xl\:focus\:select-auto:focus{
    -webkit-user-select     : auto !important;
       -moz-user-select     : auto !important;
        -ms-user-select     : auto !important;
            user-select     : auto !important;
  }

  .xl\:align-baseline{
    vertical-align     : baseline !important;
  }

  .xl\:align-top{
    vertical-align     : top !important;
  }

  .xl\:align-middle{
    vertical-align     : middle !important;
  }

  .xl\:align-bottom{
    vertical-align     : bottom !important;
  }

  .xl\:align-text-top{
    vertical-align     : text-top !important;
  }

  .xl\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .group:hover .xl\:group-hover\:align-baseline{
    vertical-align     : baseline !important;
  }

  .group:hover .xl\:group-hover\:align-top{
    vertical-align     : top !important;
  }

  .group:hover .xl\:group-hover\:align-middle{
    vertical-align     : middle !important;
  }

  .group:hover .xl\:group-hover\:align-bottom{
    vertical-align     : bottom !important;
  }

  .group:hover .xl\:group-hover\:align-text-top{
    vertical-align     : text-top !important;
  }

  .group:hover .xl\:group-hover\:align-text-bottom{
    vertical-align     : text-bottom !important;
  }

  .xl\:hover\:align-baseline:hover{
    vertical-align     : baseline !important;
  }

  .xl\:hover\:align-top:hover{
    vertical-align     : top !important;
  }

  .xl\:hover\:align-middle:hover{
    vertical-align     : middle !important;
  }

  .xl\:hover\:align-bottom:hover{
    vertical-align     : bottom !important;
  }

  .xl\:hover\:align-text-top:hover{
    vertical-align     : text-top !important;
  }

  .xl\:hover\:align-text-bottom:hover{
    vertical-align     : text-bottom !important;
  }

  .xl\:focus\:align-baseline:focus{
    vertical-align     : baseline !important;
  }

  .xl\:focus\:align-top:focus{
    vertical-align     : top !important;
  }

  .xl\:focus\:align-middle:focus{
    vertical-align     : middle !important;
  }

  .xl\:focus\:align-bottom:focus{
    vertical-align     : bottom !important;
  }

  .xl\:focus\:align-text-top:focus{
    vertical-align     : text-top !important;
  }

  .xl\:focus\:align-text-bottom:focus{
    vertical-align     : text-bottom !important;
  }

  .xl\:visible{
    visibility     : visible !important;
  }

  .xl\:invisible{
    visibility     : hidden !important;
  }

  .group:hover .xl\:group-hover\:visible{
    visibility     : visible !important;
  }

  .group:hover .xl\:group-hover\:invisible{
    visibility     : hidden !important;
  }

  .xl\:hover\:visible:hover{
    visibility     : visible !important;
  }

  .xl\:hover\:invisible:hover{
    visibility     : hidden !important;
  }

  .xl\:focus\:visible:focus{
    visibility     : visible !important;
  }

  .xl\:focus\:invisible:focus{
    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;
  }

  .group:hover .xl\:group-hover\:whitespace-normal{
    white-space     : normal !important;
  }

  .group:hover .xl\:group-hover\:whitespace-no-wrap{
    white-space     : nowrap !important;
  }

  .group:hover .xl\:group-hover\:whitespace-pre{
    white-space     : pre !important;
  }

  .group:hover .xl\:group-hover\:whitespace-pre-line{
    white-space     : pre-line !important;
  }

  .group:hover .xl\:group-hover\:whitespace-pre-wrap{
    white-space     : pre-wrap !important;
  }

  .xl\:hover\:whitespace-normal:hover{
    white-space     : normal !important;
  }

  .xl\:hover\:whitespace-no-wrap:hover{
    white-space     : nowrap !important;
  }

  .xl\:hover\:whitespace-pre:hover{
    white-space     : pre !important;
  }

  .xl\:hover\:whitespace-pre-line:hover{
    white-space     : pre-line !important;
  }

  .xl\:hover\:whitespace-pre-wrap:hover{
    white-space     : pre-wrap !important;
  }

  .xl\:focus\:whitespace-normal:focus{
    white-space     : normal !important;
  }

  .xl\:focus\:whitespace-no-wrap:focus{
    white-space     : nowrap !important;
  }

  .xl\:focus\:whitespace-pre:focus{
    white-space     : pre !important;
  }

  .xl\:focus\:whitespace-pre-line:focus{
    white-space     : pre-line !important;
  }

  .xl\:focus\:whitespace-pre-wrap:focus{
    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;
  }

  .group:hover .xl\:group-hover\:break-normal{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .group:hover .xl\:group-hover\:break-words{
    overflow-wrap     : break-word !important;
  }

  .group:hover .xl\:group-hover\:break-all{
    word-break     : break-all !important;
  }

  .group:hover .xl\:group-hover\:truncate{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .xl\:hover\:break-normal:hover{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .xl\:hover\:break-words:hover{
    overflow-wrap     : break-word !important;
  }

  .xl\:hover\:break-all:hover{
    word-break     : break-all !important;
  }

  .xl\:hover\:truncate:hover{
    overflow     : hidden !important;
    text-overflow     : ellipsis !important;
    white-space     : nowrap !important;
  }

  .xl\:focus\:break-normal:focus{
    overflow-wrap     : normal !important;
    word-break     : normal !important;
  }

  .xl\:focus\:break-words:focus{
    overflow-wrap     : break-word !important;
  }

  .xl\:focus\:break-all:focus{
    word-break     : break-all !important;
  }

  .xl\:focus\:truncate:focus{
    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-20{
    width     : 5rem !important;
  }

  .xl\:w-24{
    width     : 6rem !important;
  }

  .xl\:w-28{
    width     : 7rem !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-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-96{
    width     : 24rem !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-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;
  }

  .group:hover .xl\:group-hover\:w-0{
    width     : 0 !important;
  }

  .group:hover .xl\:group-hover\:w-1{
    width     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:w-2{
    width     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:w-3{
    width     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:w-4{
    width     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:w-5{
    width     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:w-6{
    width     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:w-7{
    width     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:w-8{
    width     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:w-9{
    width     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:w-10{
    width     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:w-11{
    width     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:w-12{
    width     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:w-13{
    width     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:w-14{
    width     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:w-15{
    width     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:w-16{
    width     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:w-20{
    width     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:w-24{
    width     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:w-28{
    width     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:w-32{
    width     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:w-36{
    width     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:w-40{
    width     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:w-44{
    width     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:w-48{
    width     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:w-52{
    width     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:w-56{
    width     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:w-60{
    width     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:w-64{
    width     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:w-72{
    width     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:w-80{
    width     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:w-96{
    width     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:w-auto{
    width     : auto !important;
  }

  .group:hover .xl\:group-hover\:w-px{
    width     : 1px !important;
  }

  .group:hover .xl\:group-hover\:w-0\.5{
    width     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:w-1\.5{
    width     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:w-2\.5{
    width     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:w-3\.5{
    width     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:w-1\/2{
    width     : 50% !important;
  }

  .group:hover .xl\:group-hover\:w-1\/3{
    width     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-2\/3{
    width     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-1\/4{
    width     : 25% !important;
  }

  .group:hover .xl\:group-hover\:w-2\/4{
    width     : 50% !important;
  }

  .group:hover .xl\:group-hover\:w-3\/4{
    width     : 75% !important;
  }

  .group:hover .xl\:group-hover\:w-1\/5{
    width     : 20% !important;
  }

  .group:hover .xl\:group-hover\:w-2\/5{
    width     : 40% !important;
  }

  .group:hover .xl\:group-hover\:w-3\/5{
    width     : 60% !important;
  }

  .group:hover .xl\:group-hover\:w-4\/5{
    width     : 80% !important;
  }

  .group:hover .xl\:group-hover\:w-1\/6{
    width     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-2\/6{
    width     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-3\/6{
    width     : 50% !important;
  }

  .group:hover .xl\:group-hover\:w-4\/6{
    width     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-5\/6{
    width     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-1\/12{
    width     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-2\/12{
    width     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-3\/12{
    width     : 25% !important;
  }

  .group:hover .xl\:group-hover\:w-4\/12{
    width     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-5\/12{
    width     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-6\/12{
    width     : 50% !important;
  }

  .group:hover .xl\:group-hover\:w-7\/12{
    width     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-8\/12{
    width     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-9\/12{
    width     : 75% !important;
  }

  .group:hover .xl\:group-hover\:w-10\/12{
    width     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:w-11\/12{
    width     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:w-full{
    width     : 100% !important;
  }

  .group:hover .xl\:group-hover\:w-screen{
    width     : 100vw !important;
  }

  .group:hover .xl\:group-hover\:w-min-content{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .group:hover .xl\:group-hover\:w-max-content{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .xl\:hover\:w-0:hover{
    width     : 0 !important;
  }

  .xl\:hover\:w-1:hover{
    width     : 0.25rem !important;
  }

  .xl\:hover\:w-2:hover{
    width     : 0.5rem !important;
  }

  .xl\:hover\:w-3:hover{
    width     : 0.75rem !important;
  }

  .xl\:hover\:w-4:hover{
    width     : 1rem !important;
  }

  .xl\:hover\:w-5:hover{
    width     : 1.25rem !important;
  }

  .xl\:hover\:w-6:hover{
    width     : 1.5rem !important;
  }

  .xl\:hover\:w-7:hover{
    width     : 1.75rem !important;
  }

  .xl\:hover\:w-8:hover{
    width     : 2rem !important;
  }

  .xl\:hover\:w-9:hover{
    width     : 2.25rem !important;
  }

  .xl\:hover\:w-10:hover{
    width     : 2.5rem !important;
  }

  .xl\:hover\:w-11:hover{
    width     : 2.75rem !important;
  }

  .xl\:hover\:w-12:hover{
    width     : 3rem !important;
  }

  .xl\:hover\:w-13:hover{
    width     : 3.25rem !important;
  }

  .xl\:hover\:w-14:hover{
    width     : 3.5rem !important;
  }

  .xl\:hover\:w-15:hover{
    width     : 3.75rem !important;
  }

  .xl\:hover\:w-16:hover{
    width     : 4rem !important;
  }

  .xl\:hover\:w-20:hover{
    width     : 5rem !important;
  }

  .xl\:hover\:w-24:hover{
    width     : 6rem !important;
  }

  .xl\:hover\:w-28:hover{
    width     : 7rem !important;
  }

  .xl\:hover\:w-32:hover{
    width     : 8rem !important;
  }

  .xl\:hover\:w-36:hover{
    width     : 9rem !important;
  }

  .xl\:hover\:w-40:hover{
    width     : 10rem !important;
  }

  .xl\:hover\:w-44:hover{
    width     : 11rem !important;
  }

  .xl\:hover\:w-48:hover{
    width     : 12rem !important;
  }

  .xl\:hover\:w-52:hover{
    width     : 13rem !important;
  }

  .xl\:hover\:w-56:hover{
    width     : 14rem !important;
  }

  .xl\:hover\:w-60:hover{
    width     : 15rem !important;
  }

  .xl\:hover\:w-64:hover{
    width     : 16rem !important;
  }

  .xl\:hover\:w-72:hover{
    width     : 18rem !important;
  }

  .xl\:hover\:w-80:hover{
    width     : 20rem !important;
  }

  .xl\:hover\:w-96:hover{
    width     : 24rem !important;
  }

  .xl\:hover\:w-auto:hover{
    width     : auto !important;
  }

  .xl\:hover\:w-px:hover{
    width     : 1px !important;
  }

  .xl\:hover\:w-0\.5:hover{
    width     : 0.125rem !important;
  }

  .xl\:hover\:w-1\.5:hover{
    width     : 0.375rem !important;
  }

  .xl\:hover\:w-2\.5:hover{
    width     : 0.625rem !important;
  }

  .xl\:hover\:w-3\.5:hover{
    width     : 0.875rem !important;
  }

  .xl\:hover\:w-1\/2:hover{
    width     : 50% !important;
  }

  .xl\:hover\:w-1\/3:hover{
    width     : 33.333333% !important;
  }

  .xl\:hover\:w-2\/3:hover{
    width     : 66.666667% !important;
  }

  .xl\:hover\:w-1\/4:hover{
    width     : 25% !important;
  }

  .xl\:hover\:w-2\/4:hover{
    width     : 50% !important;
  }

  .xl\:hover\:w-3\/4:hover{
    width     : 75% !important;
  }

  .xl\:hover\:w-1\/5:hover{
    width     : 20% !important;
  }

  .xl\:hover\:w-2\/5:hover{
    width     : 40% !important;
  }

  .xl\:hover\:w-3\/5:hover{
    width     : 60% !important;
  }

  .xl\:hover\:w-4\/5:hover{
    width     : 80% !important;
  }

  .xl\:hover\:w-1\/6:hover{
    width     : 16.666667% !important;
  }

  .xl\:hover\:w-2\/6:hover{
    width     : 33.333333% !important;
  }

  .xl\:hover\:w-3\/6:hover{
    width     : 50% !important;
  }

  .xl\:hover\:w-4\/6:hover{
    width     : 66.666667% !important;
  }

  .xl\:hover\:w-5\/6:hover{
    width     : 83.333333% !important;
  }

  .xl\:hover\:w-1\/12:hover{
    width     : 8.333333% !important;
  }

  .xl\:hover\:w-2\/12:hover{
    width     : 16.666667% !important;
  }

  .xl\:hover\:w-3\/12:hover{
    width     : 25% !important;
  }

  .xl\:hover\:w-4\/12:hover{
    width     : 33.333333% !important;
  }

  .xl\:hover\:w-5\/12:hover{
    width     : 41.666667% !important;
  }

  .xl\:hover\:w-6\/12:hover{
    width     : 50% !important;
  }

  .xl\:hover\:w-7\/12:hover{
    width     : 58.333333% !important;
  }

  .xl\:hover\:w-8\/12:hover{
    width     : 66.666667% !important;
  }

  .xl\:hover\:w-9\/12:hover{
    width     : 75% !important;
  }

  .xl\:hover\:w-10\/12:hover{
    width     : 83.333333% !important;
  }

  .xl\:hover\:w-11\/12:hover{
    width     : 91.666667% !important;
  }

  .xl\:hover\:w-full:hover{
    width     : 100% !important;
  }

  .xl\:hover\:w-screen:hover{
    width     : 100vw !important;
  }

  .xl\:hover\:w-min-content:hover{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .xl\:hover\:w-max-content:hover{
    width     : -webkit-max-content !important;
    width     : -moz-max-content !important;
    width     : max-content !important;
  }

  .xl\:focus\:w-0:focus{
    width     : 0 !important;
  }

  .xl\:focus\:w-1:focus{
    width     : 0.25rem !important;
  }

  .xl\:focus\:w-2:focus{
    width     : 0.5rem !important;
  }

  .xl\:focus\:w-3:focus{
    width     : 0.75rem !important;
  }

  .xl\:focus\:w-4:focus{
    width     : 1rem !important;
  }

  .xl\:focus\:w-5:focus{
    width     : 1.25rem !important;
  }

  .xl\:focus\:w-6:focus{
    width     : 1.5rem !important;
  }

  .xl\:focus\:w-7:focus{
    width     : 1.75rem !important;
  }

  .xl\:focus\:w-8:focus{
    width     : 2rem !important;
  }

  .xl\:focus\:w-9:focus{
    width     : 2.25rem !important;
  }

  .xl\:focus\:w-10:focus{
    width     : 2.5rem !important;
  }

  .xl\:focus\:w-11:focus{
    width     : 2.75rem !important;
  }

  .xl\:focus\:w-12:focus{
    width     : 3rem !important;
  }

  .xl\:focus\:w-13:focus{
    width     : 3.25rem !important;
  }

  .xl\:focus\:w-14:focus{
    width     : 3.5rem !important;
  }

  .xl\:focus\:w-15:focus{
    width     : 3.75rem !important;
  }

  .xl\:focus\:w-16:focus{
    width     : 4rem !important;
  }

  .xl\:focus\:w-20:focus{
    width     : 5rem !important;
  }

  .xl\:focus\:w-24:focus{
    width     : 6rem !important;
  }

  .xl\:focus\:w-28:focus{
    width     : 7rem !important;
  }

  .xl\:focus\:w-32:focus{
    width     : 8rem !important;
  }

  .xl\:focus\:w-36:focus{
    width     : 9rem !important;
  }

  .xl\:focus\:w-40:focus{
    width     : 10rem !important;
  }

  .xl\:focus\:w-44:focus{
    width     : 11rem !important;
  }

  .xl\:focus\:w-48:focus{
    width     : 12rem !important;
  }

  .xl\:focus\:w-52:focus{
    width     : 13rem !important;
  }

  .xl\:focus\:w-56:focus{
    width     : 14rem !important;
  }

  .xl\:focus\:w-60:focus{
    width     : 15rem !important;
  }

  .xl\:focus\:w-64:focus{
    width     : 16rem !important;
  }

  .xl\:focus\:w-72:focus{
    width     : 18rem !important;
  }

  .xl\:focus\:w-80:focus{
    width     : 20rem !important;
  }

  .xl\:focus\:w-96:focus{
    width     : 24rem !important;
  }

  .xl\:focus\:w-auto:focus{
    width     : auto !important;
  }

  .xl\:focus\:w-px:focus{
    width     : 1px !important;
  }

  .xl\:focus\:w-0\.5:focus{
    width     : 0.125rem !important;
  }

  .xl\:focus\:w-1\.5:focus{
    width     : 0.375rem !important;
  }

  .xl\:focus\:w-2\.5:focus{
    width     : 0.625rem !important;
  }

  .xl\:focus\:w-3\.5:focus{
    width     : 0.875rem !important;
  }

  .xl\:focus\:w-1\/2:focus{
    width     : 50% !important;
  }

  .xl\:focus\:w-1\/3:focus{
    width     : 33.333333% !important;
  }

  .xl\:focus\:w-2\/3:focus{
    width     : 66.666667% !important;
  }

  .xl\:focus\:w-1\/4:focus{
    width     : 25% !important;
  }

  .xl\:focus\:w-2\/4:focus{
    width     : 50% !important;
  }

  .xl\:focus\:w-3\/4:focus{
    width     : 75% !important;
  }

  .xl\:focus\:w-1\/5:focus{
    width     : 20% !important;
  }

  .xl\:focus\:w-2\/5:focus{
    width     : 40% !important;
  }

  .xl\:focus\:w-3\/5:focus{
    width     : 60% !important;
  }

  .xl\:focus\:w-4\/5:focus{
    width     : 80% !important;
  }

  .xl\:focus\:w-1\/6:focus{
    width     : 16.666667% !important;
  }

  .xl\:focus\:w-2\/6:focus{
    width     : 33.333333% !important;
  }

  .xl\:focus\:w-3\/6:focus{
    width     : 50% !important;
  }

  .xl\:focus\:w-4\/6:focus{
    width     : 66.666667% !important;
  }

  .xl\:focus\:w-5\/6:focus{
    width     : 83.333333% !important;
  }

  .xl\:focus\:w-1\/12:focus{
    width     : 8.333333% !important;
  }

  .xl\:focus\:w-2\/12:focus{
    width     : 16.666667% !important;
  }

  .xl\:focus\:w-3\/12:focus{
    width     : 25% !important;
  }

  .xl\:focus\:w-4\/12:focus{
    width     : 33.333333% !important;
  }

  .xl\:focus\:w-5\/12:focus{
    width     : 41.666667% !important;
  }

  .xl\:focus\:w-6\/12:focus{
    width     : 50% !important;
  }

  .xl\:focus\:w-7\/12:focus{
    width     : 58.333333% !important;
  }

  .xl\:focus\:w-8\/12:focus{
    width     : 66.666667% !important;
  }

  .xl\:focus\:w-9\/12:focus{
    width     : 75% !important;
  }

  .xl\:focus\:w-10\/12:focus{
    width     : 83.333333% !important;
  }

  .xl\:focus\:w-11\/12:focus{
    width     : 91.666667% !important;
  }

  .xl\:focus\:w-full:focus{
    width     : 100% !important;
  }

  .xl\:focus\:w-screen:focus{
    width     : 100vw !important;
  }

  .xl\:focus\:w-min-content:focus{
    width     : -webkit-min-content !important;
    width     : -moz-min-content !important;
    width     : min-content !important;
  }

  .xl\:focus\:w-max-content:focus{
    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-auto{
    z-index     : auto !important;
  }

  .group:hover .xl\:group-hover\:z-0{
    z-index     : 0 !important;
  }

  .group:hover .xl\:group-hover\:z-10{
    z-index     : 10 !important;
  }

  .group:hover .xl\:group-hover\:z-20{
    z-index     : 20 !important;
  }

  .group:hover .xl\:group-hover\:z-30{
    z-index     : 30 !important;
  }

  .group:hover .xl\:group-hover\:z-40{
    z-index     : 40 !important;
  }

  .group:hover .xl\:group-hover\:z-50{
    z-index     : 50 !important;
  }

  .group:hover .xl\:group-hover\:z-auto{
    z-index     : auto !important;
  }

  .xl\:hover\:z-0:hover{
    z-index     : 0 !important;
  }

  .xl\:hover\:z-10:hover{
    z-index     : 10 !important;
  }

  .xl\:hover\:z-20:hover{
    z-index     : 20 !important;
  }

  .xl\:hover\:z-30:hover{
    z-index     : 30 !important;
  }

  .xl\:hover\:z-40:hover{
    z-index     : 40 !important;
  }

  .xl\:hover\:z-50:hover{
    z-index     : 50 !important;
  }

  .xl\:hover\:z-auto:hover{
    z-index     : auto !important;
  }

  .xl\:focus\:z-0:focus{
    z-index     : 0 !important;
  }

  .xl\:focus\:z-10:focus{
    z-index     : 10 !important;
  }

  .xl\:focus\:z-20:focus{
    z-index     : 20 !important;
  }

  .xl\:focus\:z-30:focus{
    z-index     : 30 !important;
  }

  .xl\:focus\:z-40:focus{
    z-index     : 40 !important;
  }

  .xl\:focus\:z-50:focus{
    z-index     : 50 !important;
  }

  .xl\:focus\:z-auto:focus{
    z-index     : auto !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-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .xl\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .xl\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !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-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-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !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\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .xl\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .xl\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .xl\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .xl\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .xl\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .xl\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .xl\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .xl\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .xl\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .xl\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .xl\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .xl\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .xl\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .xl\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .xl\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .xl\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .xl\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .xl\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .xl\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .xl\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .xl\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .xl\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .xl\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .xl\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .xl\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .xl\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .xl\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .xl\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .xl\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .xl\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .xl\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .xl\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .xl\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .xl\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .xl\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .xl\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .xl\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .xl\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .xl\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .xl\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .xl\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .xl\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .xl\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .xl\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .xl\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .xl\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .xl\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .xl\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .xl\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .xl\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .xl\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .xl\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .xl\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .xl\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .xl\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .xl\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .xl\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .xl\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .xl\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .xl\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .xl\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .xl\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .xl\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .xl\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .xl\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .xl\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .xl\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .xl\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .xl\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .xl\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .xl\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .xl\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .xl\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .xl\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .xl\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .xl\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .xl\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .xl\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .xl\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .xl\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .xl\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .xl\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .xl\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .xl\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .xl\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .xl\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .xl\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .xl\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .xl\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .xl\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .xl\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .group:hover .xl\:group-hover\:gap-0{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .group:hover .xl\:group-hover\:gap-1{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:gap-2{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:gap-3{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:gap-4{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:gap-5{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:gap-6{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:gap-7{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:gap-8{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:gap-9{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:gap-10{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:gap-11{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:gap-12{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:gap-13{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:gap-14{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:gap-15{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:gap-16{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:gap-20{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:gap-24{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:gap-28{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:gap-32{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:gap-36{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:gap-40{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:gap-44{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:gap-48{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:gap-52{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:gap-56{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:gap-60{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:gap-64{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:gap-72{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:gap-80{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:gap-96{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:gap-px{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .group:hover .xl\:group-hover\:gap-0\.5{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:gap-1\.5{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:gap-2\.5{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:gap-3\.5{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/2{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/3{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-2\/3{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/4{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:gap-2\/4{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:gap-3\/4{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/5{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .group:hover .xl\:group-hover\:gap-2\/5{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .group:hover .xl\:group-hover\:gap-3\/5{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .group:hover .xl\:group-hover\:gap-4\/5{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/6{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-2\/6{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-3\/6{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:gap-4\/6{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-5\/6{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-1\/12{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-2\/12{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-3\/12{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:gap-4\/12{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-5\/12{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-6\/12{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:gap-7\/12{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-8\/12{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-9\/12{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:gap-10\/12{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:gap-11\/12{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:gap-full{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-0{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-4{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-5{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-6{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-7{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-8{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-9{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-10{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-11{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-12{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-13{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-14{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-15{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-16{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-20{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-24{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-28{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-32{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-36{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-40{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-44{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-48{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-52{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-56{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-60{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-64{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-72{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-80{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-96{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-px{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .group:hover .xl\:group-hover\:col-gap-0\.5{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\.5{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\.5{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3\.5{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/2{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/3{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\/3{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/4{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\/4{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3\/4{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/5{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\/5{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3\/5{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-4\/5{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/6{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\/6{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3\/6{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-4\/6{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-5\/6{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-1\/12{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-2\/12{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-3\/12{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-4\/12{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-5\/12{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-6\/12{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-7\/12{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-8\/12{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-9\/12{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-10\/12{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-11\/12{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:col-gap-full{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-0{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-4{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-5{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-6{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-7{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-8{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-9{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-10{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-11{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-12{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-13{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-14{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-15{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-16{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-20{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-24{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-28{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-32{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-36{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-40{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-44{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-48{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-52{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-56{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-60{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-64{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-72{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-80{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-96{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-px{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .group:hover .xl\:group-hover\:row-gap-0\.5{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\.5{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\.5{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3\.5{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/2{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/3{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\/3{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/4{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\/4{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3\/4{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/5{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\/5{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3\/5{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-4\/5{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/6{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\/6{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3\/6{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-4\/6{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-5\/6{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-1\/12{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-2\/12{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-3\/12{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-4\/12{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-5\/12{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-6\/12{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-7\/12{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-8\/12{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-9\/12{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-10\/12{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-11\/12{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:row-gap-full{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .xl\:hover\:gap-0:hover{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .xl\:hover\:gap-1:hover{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .xl\:hover\:gap-2:hover{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .xl\:hover\:gap-3:hover{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .xl\:hover\:gap-4:hover{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .xl\:hover\:gap-5:hover{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .xl\:hover\:gap-6:hover{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .xl\:hover\:gap-7:hover{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .xl\:hover\:gap-8:hover{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .xl\:hover\:gap-9:hover{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .xl\:hover\:gap-10:hover{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .xl\:hover\:gap-11:hover{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .xl\:hover\:gap-12:hover{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .xl\:hover\:gap-13:hover{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .xl\:hover\:gap-14:hover{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .xl\:hover\:gap-15:hover{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .xl\:hover\:gap-16:hover{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .xl\:hover\:gap-20:hover{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .xl\:hover\:gap-24:hover{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .xl\:hover\:gap-28:hover{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .xl\:hover\:gap-32:hover{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .xl\:hover\:gap-36:hover{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .xl\:hover\:gap-40:hover{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .xl\:hover\:gap-44:hover{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .xl\:hover\:gap-48:hover{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .xl\:hover\:gap-52:hover{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .xl\:hover\:gap-56:hover{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .xl\:hover\:gap-60:hover{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .xl\:hover\:gap-64:hover{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .xl\:hover\:gap-72:hover{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .xl\:hover\:gap-80:hover{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .xl\:hover\:gap-96:hover{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .xl\:hover\:gap-px:hover{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .xl\:hover\:gap-0\.5:hover{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .xl\:hover\:gap-1\.5:hover{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .xl\:hover\:gap-2\.5:hover{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .xl\:hover\:gap-3\.5:hover{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .xl\:hover\:gap-1\/2:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:hover\:gap-1\/3:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:hover\:gap-2\/3:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:hover\:gap-1\/4:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .xl\:hover\:gap-2\/4:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:hover\:gap-3\/4:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .xl\:hover\:gap-1\/5:hover{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .xl\:hover\:gap-2\/5:hover{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .xl\:hover\:gap-3\/5:hover{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .xl\:hover\:gap-4\/5:hover{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .xl\:hover\:gap-1\/6:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .xl\:hover\:gap-2\/6:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:hover\:gap-3\/6:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:hover\:gap-4\/6:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:hover\:gap-5\/6:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .xl\:hover\:gap-1\/12:hover{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .xl\:hover\:gap-2\/12:hover{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .xl\:hover\:gap-3\/12:hover{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .xl\:hover\:gap-4\/12:hover{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:hover\:gap-5\/12:hover{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .xl\:hover\:gap-6\/12:hover{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:hover\:gap-7\/12:hover{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .xl\:hover\:gap-8\/12:hover{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:hover\:gap-9\/12:hover{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .xl\:hover\:gap-10\/12:hover{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .xl\:hover\:gap-11\/12:hover{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .xl\:hover\:gap-full:hover{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .xl\:hover\:col-gap-0:hover{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .xl\:hover\:col-gap-1:hover{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .xl\:hover\:col-gap-2:hover{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .xl\:hover\:col-gap-3:hover{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .xl\:hover\:col-gap-4:hover{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .xl\:hover\:col-gap-5:hover{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .xl\:hover\:col-gap-6:hover{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .xl\:hover\:col-gap-7:hover{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .xl\:hover\:col-gap-8:hover{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .xl\:hover\:col-gap-9:hover{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .xl\:hover\:col-gap-10:hover{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .xl\:hover\:col-gap-11:hover{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .xl\:hover\:col-gap-12:hover{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .xl\:hover\:col-gap-13:hover{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .xl\:hover\:col-gap-14:hover{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .xl\:hover\:col-gap-15:hover{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .xl\:hover\:col-gap-16:hover{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .xl\:hover\:col-gap-20:hover{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .xl\:hover\:col-gap-24:hover{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .xl\:hover\:col-gap-28:hover{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .xl\:hover\:col-gap-32:hover{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .xl\:hover\:col-gap-36:hover{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .xl\:hover\:col-gap-40:hover{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .xl\:hover\:col-gap-44:hover{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .xl\:hover\:col-gap-48:hover{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .xl\:hover\:col-gap-52:hover{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .xl\:hover\:col-gap-56:hover{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .xl\:hover\:col-gap-60:hover{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .xl\:hover\:col-gap-64:hover{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .xl\:hover\:col-gap-72:hover{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .xl\:hover\:col-gap-80:hover{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .xl\:hover\:col-gap-96:hover{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .xl\:hover\:col-gap-px:hover{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .xl\:hover\:col-gap-0\.5:hover{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .xl\:hover\:col-gap-1\.5:hover{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .xl\:hover\:col-gap-2\.5:hover{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .xl\:hover\:col-gap-3\.5:hover{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .xl\:hover\:col-gap-1\/2:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:hover\:col-gap-1\/3:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:hover\:col-gap-2\/3:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:hover\:col-gap-1\/4:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:hover\:col-gap-2\/4:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:hover\:col-gap-3\/4:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:hover\:col-gap-1\/5:hover{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .xl\:hover\:col-gap-2\/5:hover{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .xl\:hover\:col-gap-3\/5:hover{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .xl\:hover\:col-gap-4\/5:hover{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .xl\:hover\:col-gap-1\/6:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:hover\:col-gap-2\/6:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:hover\:col-gap-3\/6:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:hover\:col-gap-4\/6:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:hover\:col-gap-5\/6:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:hover\:col-gap-1\/12:hover{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .xl\:hover\:col-gap-2\/12:hover{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:hover\:col-gap-3\/12:hover{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:hover\:col-gap-4\/12:hover{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:hover\:col-gap-5\/12:hover{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .xl\:hover\:col-gap-6\/12:hover{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:hover\:col-gap-7\/12:hover{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .xl\:hover\:col-gap-8\/12:hover{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:hover\:col-gap-9\/12:hover{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:hover\:col-gap-10\/12:hover{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:hover\:col-gap-11\/12:hover{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .xl\:hover\:col-gap-full:hover{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .xl\:hover\:row-gap-0:hover{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .xl\:hover\:row-gap-1:hover{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .xl\:hover\:row-gap-2:hover{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .xl\:hover\:row-gap-3:hover{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .xl\:hover\:row-gap-4:hover{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .xl\:hover\:row-gap-5:hover{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .xl\:hover\:row-gap-6:hover{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .xl\:hover\:row-gap-7:hover{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .xl\:hover\:row-gap-8:hover{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .xl\:hover\:row-gap-9:hover{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .xl\:hover\:row-gap-10:hover{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .xl\:hover\:row-gap-11:hover{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .xl\:hover\:row-gap-12:hover{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .xl\:hover\:row-gap-13:hover{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .xl\:hover\:row-gap-14:hover{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .xl\:hover\:row-gap-15:hover{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .xl\:hover\:row-gap-16:hover{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .xl\:hover\:row-gap-20:hover{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .xl\:hover\:row-gap-24:hover{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .xl\:hover\:row-gap-28:hover{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .xl\:hover\:row-gap-32:hover{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .xl\:hover\:row-gap-36:hover{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .xl\:hover\:row-gap-40:hover{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .xl\:hover\:row-gap-44:hover{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .xl\:hover\:row-gap-48:hover{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .xl\:hover\:row-gap-52:hover{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .xl\:hover\:row-gap-56:hover{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .xl\:hover\:row-gap-60:hover{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .xl\:hover\:row-gap-64:hover{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .xl\:hover\:row-gap-72:hover{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .xl\:hover\:row-gap-80:hover{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .xl\:hover\:row-gap-96:hover{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .xl\:hover\:row-gap-px:hover{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .xl\:hover\:row-gap-0\.5:hover{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .xl\:hover\:row-gap-1\.5:hover{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .xl\:hover\:row-gap-2\.5:hover{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .xl\:hover\:row-gap-3\.5:hover{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .xl\:hover\:row-gap-1\/2:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:hover\:row-gap-1\/3:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:hover\:row-gap-2\/3:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:hover\:row-gap-1\/4:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:hover\:row-gap-2\/4:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:hover\:row-gap-3\/4:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:hover\:row-gap-1\/5:hover{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .xl\:hover\:row-gap-2\/5:hover{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .xl\:hover\:row-gap-3\/5:hover{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .xl\:hover\:row-gap-4\/5:hover{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .xl\:hover\:row-gap-1\/6:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:hover\:row-gap-2\/6:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:hover\:row-gap-3\/6:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:hover\:row-gap-4\/6:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:hover\:row-gap-5\/6:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:hover\:row-gap-1\/12:hover{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .xl\:hover\:row-gap-2\/12:hover{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:hover\:row-gap-3\/12:hover{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:hover\:row-gap-4\/12:hover{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:hover\:row-gap-5\/12:hover{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .xl\:hover\:row-gap-6\/12:hover{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:hover\:row-gap-7\/12:hover{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .xl\:hover\:row-gap-8\/12:hover{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:hover\:row-gap-9\/12:hover{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:hover\:row-gap-10\/12:hover{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:hover\:row-gap-11\/12:hover{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .xl\:hover\:row-gap-full:hover{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !important;
  }

  .xl\:focus\:gap-0:focus{
    grid-gap     : 0 !important;
    gap     : 0 !important;
  }

  .xl\:focus\:gap-1:focus{
    grid-gap     : 0.25rem !important;
    gap     : 0.25rem !important;
  }

  .xl\:focus\:gap-2:focus{
    grid-gap     : 0.5rem !important;
    gap     : 0.5rem !important;
  }

  .xl\:focus\:gap-3:focus{
    grid-gap     : 0.75rem !important;
    gap     : 0.75rem !important;
  }

  .xl\:focus\:gap-4:focus{
    grid-gap     : 1rem !important;
    gap     : 1rem !important;
  }

  .xl\:focus\:gap-5:focus{
    grid-gap     : 1.25rem !important;
    gap     : 1.25rem !important;
  }

  .xl\:focus\:gap-6:focus{
    grid-gap     : 1.5rem !important;
    gap     : 1.5rem !important;
  }

  .xl\:focus\:gap-7:focus{
    grid-gap     : 1.75rem !important;
    gap     : 1.75rem !important;
  }

  .xl\:focus\:gap-8:focus{
    grid-gap     : 2rem !important;
    gap     : 2rem !important;
  }

  .xl\:focus\:gap-9:focus{
    grid-gap     : 2.25rem !important;
    gap     : 2.25rem !important;
  }

  .xl\:focus\:gap-10:focus{
    grid-gap     : 2.5rem !important;
    gap     : 2.5rem !important;
  }

  .xl\:focus\:gap-11:focus{
    grid-gap     : 2.75rem !important;
    gap     : 2.75rem !important;
  }

  .xl\:focus\:gap-12:focus{
    grid-gap     : 3rem !important;
    gap     : 3rem !important;
  }

  .xl\:focus\:gap-13:focus{
    grid-gap     : 3.25rem !important;
    gap     : 3.25rem !important;
  }

  .xl\:focus\:gap-14:focus{
    grid-gap     : 3.5rem !important;
    gap     : 3.5rem !important;
  }

  .xl\:focus\:gap-15:focus{
    grid-gap     : 3.75rem !important;
    gap     : 3.75rem !important;
  }

  .xl\:focus\:gap-16:focus{
    grid-gap     : 4rem !important;
    gap     : 4rem !important;
  }

  .xl\:focus\:gap-20:focus{
    grid-gap     : 5rem !important;
    gap     : 5rem !important;
  }

  .xl\:focus\:gap-24:focus{
    grid-gap     : 6rem !important;
    gap     : 6rem !important;
  }

  .xl\:focus\:gap-28:focus{
    grid-gap     : 7rem !important;
    gap     : 7rem !important;
  }

  .xl\:focus\:gap-32:focus{
    grid-gap     : 8rem !important;
    gap     : 8rem !important;
  }

  .xl\:focus\:gap-36:focus{
    grid-gap     : 9rem !important;
    gap     : 9rem !important;
  }

  .xl\:focus\:gap-40:focus{
    grid-gap     : 10rem !important;
    gap     : 10rem !important;
  }

  .xl\:focus\:gap-44:focus{
    grid-gap     : 11rem !important;
    gap     : 11rem !important;
  }

  .xl\:focus\:gap-48:focus{
    grid-gap     : 12rem !important;
    gap     : 12rem !important;
  }

  .xl\:focus\:gap-52:focus{
    grid-gap     : 13rem !important;
    gap     : 13rem !important;
  }

  .xl\:focus\:gap-56:focus{
    grid-gap     : 14rem !important;
    gap     : 14rem !important;
  }

  .xl\:focus\:gap-60:focus{
    grid-gap     : 15rem !important;
    gap     : 15rem !important;
  }

  .xl\:focus\:gap-64:focus{
    grid-gap     : 16rem !important;
    gap     : 16rem !important;
  }

  .xl\:focus\:gap-72:focus{
    grid-gap     : 18rem !important;
    gap     : 18rem !important;
  }

  .xl\:focus\:gap-80:focus{
    grid-gap     : 20rem !important;
    gap     : 20rem !important;
  }

  .xl\:focus\:gap-96:focus{
    grid-gap     : 24rem !important;
    gap     : 24rem !important;
  }

  .xl\:focus\:gap-px:focus{
    grid-gap     : 1px !important;
    gap     : 1px !important;
  }

  .xl\:focus\:gap-0\.5:focus{
    grid-gap     : 0.125rem !important;
    gap     : 0.125rem !important;
  }

  .xl\:focus\:gap-1\.5:focus{
    grid-gap     : 0.375rem !important;
    gap     : 0.375rem !important;
  }

  .xl\:focus\:gap-2\.5:focus{
    grid-gap     : 0.625rem !important;
    gap     : 0.625rem !important;
  }

  .xl\:focus\:gap-3\.5:focus{
    grid-gap     : 0.875rem !important;
    gap     : 0.875rem !important;
  }

  .xl\:focus\:gap-1\/2:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:focus\:gap-1\/3:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:focus\:gap-2\/3:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:focus\:gap-1\/4:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .xl\:focus\:gap-2\/4:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:focus\:gap-3\/4:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .xl\:focus\:gap-1\/5:focus{
    grid-gap     : 20% !important;
    gap     : 20% !important;
  }

  .xl\:focus\:gap-2\/5:focus{
    grid-gap     : 40% !important;
    gap     : 40% !important;
  }

  .xl\:focus\:gap-3\/5:focus{
    grid-gap     : 60% !important;
    gap     : 60% !important;
  }

  .xl\:focus\:gap-4\/5:focus{
    grid-gap     : 80% !important;
    gap     : 80% !important;
  }

  .xl\:focus\:gap-1\/6:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .xl\:focus\:gap-2\/6:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:focus\:gap-3\/6:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:focus\:gap-4\/6:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:focus\:gap-5\/6:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .xl\:focus\:gap-1\/12:focus{
    grid-gap     : 8.333333% !important;
    gap     : 8.333333% !important;
  }

  .xl\:focus\:gap-2\/12:focus{
    grid-gap     : 16.666667% !important;
    gap     : 16.666667% !important;
  }

  .xl\:focus\:gap-3\/12:focus{
    grid-gap     : 25% !important;
    gap     : 25% !important;
  }

  .xl\:focus\:gap-4\/12:focus{
    grid-gap     : 33.333333% !important;
    gap     : 33.333333% !important;
  }

  .xl\:focus\:gap-5\/12:focus{
    grid-gap     : 41.666667% !important;
    gap     : 41.666667% !important;
  }

  .xl\:focus\:gap-6\/12:focus{
    grid-gap     : 50% !important;
    gap     : 50% !important;
  }

  .xl\:focus\:gap-7\/12:focus{
    grid-gap     : 58.333333% !important;
    gap     : 58.333333% !important;
  }

  .xl\:focus\:gap-8\/12:focus{
    grid-gap     : 66.666667% !important;
    gap     : 66.666667% !important;
  }

  .xl\:focus\:gap-9\/12:focus{
    grid-gap     : 75% !important;
    gap     : 75% !important;
  }

  .xl\:focus\:gap-10\/12:focus{
    grid-gap     : 83.333333% !important;
    gap     : 83.333333% !important;
  }

  .xl\:focus\:gap-11\/12:focus{
    grid-gap     : 91.666667% !important;
    gap     : 91.666667% !important;
  }

  .xl\:focus\:gap-full:focus{
    grid-gap     : 100% !important;
    gap     : 100% !important;
  }

  .xl\:focus\:col-gap-0:focus{
    grid-column-gap     : 0 !important;
    -moz-column-gap     : 0 !important;
         column-gap     : 0 !important;
  }

  .xl\:focus\:col-gap-1:focus{
    grid-column-gap     : 0.25rem !important;
    -moz-column-gap     : 0.25rem !important;
         column-gap     : 0.25rem !important;
  }

  .xl\:focus\:col-gap-2:focus{
    grid-column-gap     : 0.5rem !important;
    -moz-column-gap     : 0.5rem !important;
         column-gap     : 0.5rem !important;
  }

  .xl\:focus\:col-gap-3:focus{
    grid-column-gap     : 0.75rem !important;
    -moz-column-gap     : 0.75rem !important;
         column-gap     : 0.75rem !important;
  }

  .xl\:focus\:col-gap-4:focus{
    grid-column-gap     : 1rem !important;
    -moz-column-gap     : 1rem !important;
         column-gap     : 1rem !important;
  }

  .xl\:focus\:col-gap-5:focus{
    grid-column-gap     : 1.25rem !important;
    -moz-column-gap     : 1.25rem !important;
         column-gap     : 1.25rem !important;
  }

  .xl\:focus\:col-gap-6:focus{
    grid-column-gap     : 1.5rem !important;
    -moz-column-gap     : 1.5rem !important;
         column-gap     : 1.5rem !important;
  }

  .xl\:focus\:col-gap-7:focus{
    grid-column-gap     : 1.75rem !important;
    -moz-column-gap     : 1.75rem !important;
         column-gap     : 1.75rem !important;
  }

  .xl\:focus\:col-gap-8:focus{
    grid-column-gap     : 2rem !important;
    -moz-column-gap     : 2rem !important;
         column-gap     : 2rem !important;
  }

  .xl\:focus\:col-gap-9:focus{
    grid-column-gap     : 2.25rem !important;
    -moz-column-gap     : 2.25rem !important;
         column-gap     : 2.25rem !important;
  }

  .xl\:focus\:col-gap-10:focus{
    grid-column-gap     : 2.5rem !important;
    -moz-column-gap     : 2.5rem !important;
         column-gap     : 2.5rem !important;
  }

  .xl\:focus\:col-gap-11:focus{
    grid-column-gap     : 2.75rem !important;
    -moz-column-gap     : 2.75rem !important;
         column-gap     : 2.75rem !important;
  }

  .xl\:focus\:col-gap-12:focus{
    grid-column-gap     : 3rem !important;
    -moz-column-gap     : 3rem !important;
         column-gap     : 3rem !important;
  }

  .xl\:focus\:col-gap-13:focus{
    grid-column-gap     : 3.25rem !important;
    -moz-column-gap     : 3.25rem !important;
         column-gap     : 3.25rem !important;
  }

  .xl\:focus\:col-gap-14:focus{
    grid-column-gap     : 3.5rem !important;
    -moz-column-gap     : 3.5rem !important;
         column-gap     : 3.5rem !important;
  }

  .xl\:focus\:col-gap-15:focus{
    grid-column-gap     : 3.75rem !important;
    -moz-column-gap     : 3.75rem !important;
         column-gap     : 3.75rem !important;
  }

  .xl\:focus\:col-gap-16:focus{
    grid-column-gap     : 4rem !important;
    -moz-column-gap     : 4rem !important;
         column-gap     : 4rem !important;
  }

  .xl\:focus\:col-gap-20:focus{
    grid-column-gap     : 5rem !important;
    -moz-column-gap     : 5rem !important;
         column-gap     : 5rem !important;
  }

  .xl\:focus\:col-gap-24:focus{
    grid-column-gap     : 6rem !important;
    -moz-column-gap     : 6rem !important;
         column-gap     : 6rem !important;
  }

  .xl\:focus\:col-gap-28:focus{
    grid-column-gap     : 7rem !important;
    -moz-column-gap     : 7rem !important;
         column-gap     : 7rem !important;
  }

  .xl\:focus\:col-gap-32:focus{
    grid-column-gap     : 8rem !important;
    -moz-column-gap     : 8rem !important;
         column-gap     : 8rem !important;
  }

  .xl\:focus\:col-gap-36:focus{
    grid-column-gap     : 9rem !important;
    -moz-column-gap     : 9rem !important;
         column-gap     : 9rem !important;
  }

  .xl\:focus\:col-gap-40:focus{
    grid-column-gap     : 10rem !important;
    -moz-column-gap     : 10rem !important;
         column-gap     : 10rem !important;
  }

  .xl\:focus\:col-gap-44:focus{
    grid-column-gap     : 11rem !important;
    -moz-column-gap     : 11rem !important;
         column-gap     : 11rem !important;
  }

  .xl\:focus\:col-gap-48:focus{
    grid-column-gap     : 12rem !important;
    -moz-column-gap     : 12rem !important;
         column-gap     : 12rem !important;
  }

  .xl\:focus\:col-gap-52:focus{
    grid-column-gap     : 13rem !important;
    -moz-column-gap     : 13rem !important;
         column-gap     : 13rem !important;
  }

  .xl\:focus\:col-gap-56:focus{
    grid-column-gap     : 14rem !important;
    -moz-column-gap     : 14rem !important;
         column-gap     : 14rem !important;
  }

  .xl\:focus\:col-gap-60:focus{
    grid-column-gap     : 15rem !important;
    -moz-column-gap     : 15rem !important;
         column-gap     : 15rem !important;
  }

  .xl\:focus\:col-gap-64:focus{
    grid-column-gap     : 16rem !important;
    -moz-column-gap     : 16rem !important;
         column-gap     : 16rem !important;
  }

  .xl\:focus\:col-gap-72:focus{
    grid-column-gap     : 18rem !important;
    -moz-column-gap     : 18rem !important;
         column-gap     : 18rem !important;
  }

  .xl\:focus\:col-gap-80:focus{
    grid-column-gap     : 20rem !important;
    -moz-column-gap     : 20rem !important;
         column-gap     : 20rem !important;
  }

  .xl\:focus\:col-gap-96:focus{
    grid-column-gap     : 24rem !important;
    -moz-column-gap     : 24rem !important;
         column-gap     : 24rem !important;
  }

  .xl\:focus\:col-gap-px:focus{
    grid-column-gap     : 1px !important;
    -moz-column-gap     : 1px !important;
         column-gap     : 1px !important;
  }

  .xl\:focus\:col-gap-0\.5:focus{
    grid-column-gap     : 0.125rem !important;
    -moz-column-gap     : 0.125rem !important;
         column-gap     : 0.125rem !important;
  }

  .xl\:focus\:col-gap-1\.5:focus{
    grid-column-gap     : 0.375rem !important;
    -moz-column-gap     : 0.375rem !important;
         column-gap     : 0.375rem !important;
  }

  .xl\:focus\:col-gap-2\.5:focus{
    grid-column-gap     : 0.625rem !important;
    -moz-column-gap     : 0.625rem !important;
         column-gap     : 0.625rem !important;
  }

  .xl\:focus\:col-gap-3\.5:focus{
    grid-column-gap     : 0.875rem !important;
    -moz-column-gap     : 0.875rem !important;
         column-gap     : 0.875rem !important;
  }

  .xl\:focus\:col-gap-1\/2:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:focus\:col-gap-1\/3:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:focus\:col-gap-2\/3:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:focus\:col-gap-1\/4:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:focus\:col-gap-2\/4:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:focus\:col-gap-3\/4:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:focus\:col-gap-1\/5:focus{
    grid-column-gap     : 20% !important;
    -moz-column-gap     : 20% !important;
         column-gap     : 20% !important;
  }

  .xl\:focus\:col-gap-2\/5:focus{
    grid-column-gap     : 40% !important;
    -moz-column-gap     : 40% !important;
         column-gap     : 40% !important;
  }

  .xl\:focus\:col-gap-3\/5:focus{
    grid-column-gap     : 60% !important;
    -moz-column-gap     : 60% !important;
         column-gap     : 60% !important;
  }

  .xl\:focus\:col-gap-4\/5:focus{
    grid-column-gap     : 80% !important;
    -moz-column-gap     : 80% !important;
         column-gap     : 80% !important;
  }

  .xl\:focus\:col-gap-1\/6:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:focus\:col-gap-2\/6:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:focus\:col-gap-3\/6:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:focus\:col-gap-4\/6:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:focus\:col-gap-5\/6:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:focus\:col-gap-1\/12:focus{
    grid-column-gap     : 8.333333% !important;
    -moz-column-gap     : 8.333333% !important;
         column-gap     : 8.333333% !important;
  }

  .xl\:focus\:col-gap-2\/12:focus{
    grid-column-gap     : 16.666667% !important;
    -moz-column-gap     : 16.666667% !important;
         column-gap     : 16.666667% !important;
  }

  .xl\:focus\:col-gap-3\/12:focus{
    grid-column-gap     : 25% !important;
    -moz-column-gap     : 25% !important;
         column-gap     : 25% !important;
  }

  .xl\:focus\:col-gap-4\/12:focus{
    grid-column-gap     : 33.333333% !important;
    -moz-column-gap     : 33.333333% !important;
         column-gap     : 33.333333% !important;
  }

  .xl\:focus\:col-gap-5\/12:focus{
    grid-column-gap     : 41.666667% !important;
    -moz-column-gap     : 41.666667% !important;
         column-gap     : 41.666667% !important;
  }

  .xl\:focus\:col-gap-6\/12:focus{
    grid-column-gap     : 50% !important;
    -moz-column-gap     : 50% !important;
         column-gap     : 50% !important;
  }

  .xl\:focus\:col-gap-7\/12:focus{
    grid-column-gap     : 58.333333% !important;
    -moz-column-gap     : 58.333333% !important;
         column-gap     : 58.333333% !important;
  }

  .xl\:focus\:col-gap-8\/12:focus{
    grid-column-gap     : 66.666667% !important;
    -moz-column-gap     : 66.666667% !important;
         column-gap     : 66.666667% !important;
  }

  .xl\:focus\:col-gap-9\/12:focus{
    grid-column-gap     : 75% !important;
    -moz-column-gap     : 75% !important;
         column-gap     : 75% !important;
  }

  .xl\:focus\:col-gap-10\/12:focus{
    grid-column-gap     : 83.333333% !important;
    -moz-column-gap     : 83.333333% !important;
         column-gap     : 83.333333% !important;
  }

  .xl\:focus\:col-gap-11\/12:focus{
    grid-column-gap     : 91.666667% !important;
    -moz-column-gap     : 91.666667% !important;
         column-gap     : 91.666667% !important;
  }

  .xl\:focus\:col-gap-full:focus{
    grid-column-gap     : 100% !important;
    -moz-column-gap     : 100% !important;
         column-gap     : 100% !important;
  }

  .xl\:focus\:row-gap-0:focus{
    grid-row-gap     : 0 !important;
    row-gap     : 0 !important;
  }

  .xl\:focus\:row-gap-1:focus{
    grid-row-gap     : 0.25rem !important;
    row-gap     : 0.25rem !important;
  }

  .xl\:focus\:row-gap-2:focus{
    grid-row-gap     : 0.5rem !important;
    row-gap     : 0.5rem !important;
  }

  .xl\:focus\:row-gap-3:focus{
    grid-row-gap     : 0.75rem !important;
    row-gap     : 0.75rem !important;
  }

  .xl\:focus\:row-gap-4:focus{
    grid-row-gap     : 1rem !important;
    row-gap     : 1rem !important;
  }

  .xl\:focus\:row-gap-5:focus{
    grid-row-gap     : 1.25rem !important;
    row-gap     : 1.25rem !important;
  }

  .xl\:focus\:row-gap-6:focus{
    grid-row-gap     : 1.5rem !important;
    row-gap     : 1.5rem !important;
  }

  .xl\:focus\:row-gap-7:focus{
    grid-row-gap     : 1.75rem !important;
    row-gap     : 1.75rem !important;
  }

  .xl\:focus\:row-gap-8:focus{
    grid-row-gap     : 2rem !important;
    row-gap     : 2rem !important;
  }

  .xl\:focus\:row-gap-9:focus{
    grid-row-gap     : 2.25rem !important;
    row-gap     : 2.25rem !important;
  }

  .xl\:focus\:row-gap-10:focus{
    grid-row-gap     : 2.5rem !important;
    row-gap     : 2.5rem !important;
  }

  .xl\:focus\:row-gap-11:focus{
    grid-row-gap     : 2.75rem !important;
    row-gap     : 2.75rem !important;
  }

  .xl\:focus\:row-gap-12:focus{
    grid-row-gap     : 3rem !important;
    row-gap     : 3rem !important;
  }

  .xl\:focus\:row-gap-13:focus{
    grid-row-gap     : 3.25rem !important;
    row-gap     : 3.25rem !important;
  }

  .xl\:focus\:row-gap-14:focus{
    grid-row-gap     : 3.5rem !important;
    row-gap     : 3.5rem !important;
  }

  .xl\:focus\:row-gap-15:focus{
    grid-row-gap     : 3.75rem !important;
    row-gap     : 3.75rem !important;
  }

  .xl\:focus\:row-gap-16:focus{
    grid-row-gap     : 4rem !important;
    row-gap     : 4rem !important;
  }

  .xl\:focus\:row-gap-20:focus{
    grid-row-gap     : 5rem !important;
    row-gap     : 5rem !important;
  }

  .xl\:focus\:row-gap-24:focus{
    grid-row-gap     : 6rem !important;
    row-gap     : 6rem !important;
  }

  .xl\:focus\:row-gap-28:focus{
    grid-row-gap     : 7rem !important;
    row-gap     : 7rem !important;
  }

  .xl\:focus\:row-gap-32:focus{
    grid-row-gap     : 8rem !important;
    row-gap     : 8rem !important;
  }

  .xl\:focus\:row-gap-36:focus{
    grid-row-gap     : 9rem !important;
    row-gap     : 9rem !important;
  }

  .xl\:focus\:row-gap-40:focus{
    grid-row-gap     : 10rem !important;
    row-gap     : 10rem !important;
  }

  .xl\:focus\:row-gap-44:focus{
    grid-row-gap     : 11rem !important;
    row-gap     : 11rem !important;
  }

  .xl\:focus\:row-gap-48:focus{
    grid-row-gap     : 12rem !important;
    row-gap     : 12rem !important;
  }

  .xl\:focus\:row-gap-52:focus{
    grid-row-gap     : 13rem !important;
    row-gap     : 13rem !important;
  }

  .xl\:focus\:row-gap-56:focus{
    grid-row-gap     : 14rem !important;
    row-gap     : 14rem !important;
  }

  .xl\:focus\:row-gap-60:focus{
    grid-row-gap     : 15rem !important;
    row-gap     : 15rem !important;
  }

  .xl\:focus\:row-gap-64:focus{
    grid-row-gap     : 16rem !important;
    row-gap     : 16rem !important;
  }

  .xl\:focus\:row-gap-72:focus{
    grid-row-gap     : 18rem !important;
    row-gap     : 18rem !important;
  }

  .xl\:focus\:row-gap-80:focus{
    grid-row-gap     : 20rem !important;
    row-gap     : 20rem !important;
  }

  .xl\:focus\:row-gap-96:focus{
    grid-row-gap     : 24rem !important;
    row-gap     : 24rem !important;
  }

  .xl\:focus\:row-gap-px:focus{
    grid-row-gap     : 1px !important;
    row-gap     : 1px !important;
  }

  .xl\:focus\:row-gap-0\.5:focus{
    grid-row-gap     : 0.125rem !important;
    row-gap     : 0.125rem !important;
  }

  .xl\:focus\:row-gap-1\.5:focus{
    grid-row-gap     : 0.375rem !important;
    row-gap     : 0.375rem !important;
  }

  .xl\:focus\:row-gap-2\.5:focus{
    grid-row-gap     : 0.625rem !important;
    row-gap     : 0.625rem !important;
  }

  .xl\:focus\:row-gap-3\.5:focus{
    grid-row-gap     : 0.875rem !important;
    row-gap     : 0.875rem !important;
  }

  .xl\:focus\:row-gap-1\/2:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:focus\:row-gap-1\/3:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:focus\:row-gap-2\/3:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:focus\:row-gap-1\/4:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:focus\:row-gap-2\/4:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:focus\:row-gap-3\/4:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:focus\:row-gap-1\/5:focus{
    grid-row-gap     : 20% !important;
    row-gap     : 20% !important;
  }

  .xl\:focus\:row-gap-2\/5:focus{
    grid-row-gap     : 40% !important;
    row-gap     : 40% !important;
  }

  .xl\:focus\:row-gap-3\/5:focus{
    grid-row-gap     : 60% !important;
    row-gap     : 60% !important;
  }

  .xl\:focus\:row-gap-4\/5:focus{
    grid-row-gap     : 80% !important;
    row-gap     : 80% !important;
  }

  .xl\:focus\:row-gap-1\/6:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:focus\:row-gap-2\/6:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:focus\:row-gap-3\/6:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:focus\:row-gap-4\/6:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:focus\:row-gap-5\/6:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:focus\:row-gap-1\/12:focus{
    grid-row-gap     : 8.333333% !important;
    row-gap     : 8.333333% !important;
  }

  .xl\:focus\:row-gap-2\/12:focus{
    grid-row-gap     : 16.666667% !important;
    row-gap     : 16.666667% !important;
  }

  .xl\:focus\:row-gap-3\/12:focus{
    grid-row-gap     : 25% !important;
    row-gap     : 25% !important;
  }

  .xl\:focus\:row-gap-4\/12:focus{
    grid-row-gap     : 33.333333% !important;
    row-gap     : 33.333333% !important;
  }

  .xl\:focus\:row-gap-5\/12:focus{
    grid-row-gap     : 41.666667% !important;
    row-gap     : 41.666667% !important;
  }

  .xl\:focus\:row-gap-6\/12:focus{
    grid-row-gap     : 50% !important;
    row-gap     : 50% !important;
  }

  .xl\:focus\:row-gap-7\/12:focus{
    grid-row-gap     : 58.333333% !important;
    row-gap     : 58.333333% !important;
  }

  .xl\:focus\:row-gap-8\/12:focus{
    grid-row-gap     : 66.666667% !important;
    row-gap     : 66.666667% !important;
  }

  .xl\:focus\:row-gap-9\/12:focus{
    grid-row-gap     : 75% !important;
    row-gap     : 75% !important;
  }

  .xl\:focus\:row-gap-10\/12:focus{
    grid-row-gap     : 83.333333% !important;
    row-gap     : 83.333333% !important;
  }

  .xl\:focus\:row-gap-11\/12:focus{
    grid-row-gap     : 91.666667% !important;
    row-gap     : 91.666667% !important;
  }

  .xl\:focus\:row-gap-full:focus{
    grid-row-gap     : 100% !important;
    row-gap     : 100% !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;
  }

  .group:hover .xl\:group-hover\:grid-flow-row{
    grid-auto-flow     : row !important;
  }

  .group:hover .xl\:group-hover\:grid-flow-col{
    grid-auto-flow     : column !important;
  }

  .group:hover .xl\:group-hover\:grid-flow-row-dense{
    grid-auto-flow     : row dense !important;
  }

  .group:hover .xl\:group-hover\:grid-flow-col-dense{
    grid-auto-flow     : column dense !important;
  }

  .xl\:hover\:grid-flow-row:hover{
    grid-auto-flow     : row !important;
  }

  .xl\:hover\:grid-flow-col:hover{
    grid-auto-flow     : column !important;
  }

  .xl\:hover\:grid-flow-row-dense:hover{
    grid-auto-flow     : row dense !important;
  }

  .xl\:hover\:grid-flow-col-dense:hover{
    grid-auto-flow     : column dense !important;
  }

  .xl\:focus\:grid-flow-row:focus{
    grid-auto-flow     : row !important;
  }

  .xl\:focus\:grid-flow-col:focus{
    grid-auto-flow     : column !important;
  }

  .xl\:focus\:grid-flow-row-dense:focus{
    grid-auto-flow     : row dense !important;
  }

  .xl\:focus\:grid-flow-col-dense:focus{
    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;
  }

  .group:hover .xl\:group-hover\:grid-cols-1{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-2{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-3{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-4{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-5{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-6{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-7{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-8{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-9{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-10{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-11{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-12{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-cols-none{
    grid-template-columns     : none !important;
  }

  .xl\:hover\:grid-cols-1:hover{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-2:hover{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-3:hover{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-4:hover{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-5:hover{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-6:hover{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-7:hover{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-8:hover{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-9:hover{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-10:hover{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-11:hover{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-12:hover{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-cols-none:hover{
    grid-template-columns     : none !important;
  }

  .xl\:focus\:grid-cols-1:focus{
    grid-template-columns     : repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-2:focus{
    grid-template-columns     : repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-3:focus{
    grid-template-columns     : repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-4:focus{
    grid-template-columns     : repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-5:focus{
    grid-template-columns     : repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-6:focus{
    grid-template-columns     : repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-7:focus{
    grid-template-columns     : repeat(7, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-8:focus{
    grid-template-columns     : repeat(8, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-9:focus{
    grid-template-columns     : repeat(9, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-10:focus{
    grid-template-columns     : repeat(10, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-11:focus{
    grid-template-columns     : repeat(11, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-12:focus{
    grid-template-columns     : repeat(12, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-cols-none:focus{
    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;
  }

  .group:hover .xl\:group-hover\:col-auto{
    grid-column     : auto !important;
  }

  .group:hover .xl\:group-hover\:col-span-1{
    grid-column     : span 1 / span 1 !important;
  }

  .group:hover .xl\:group-hover\:col-span-2{
    grid-column     : span 2 / span 2 !important;
  }

  .group:hover .xl\:group-hover\:col-span-3{
    grid-column     : span 3 / span 3 !important;
  }

  .group:hover .xl\:group-hover\:col-span-4{
    grid-column     : span 4 / span 4 !important;
  }

  .group:hover .xl\:group-hover\:col-span-5{
    grid-column     : span 5 / span 5 !important;
  }

  .group:hover .xl\:group-hover\:col-span-6{
    grid-column     : span 6 / span 6 !important;
  }

  .group:hover .xl\:group-hover\:col-span-7{
    grid-column     : span 7 / span 7 !important;
  }

  .group:hover .xl\:group-hover\:col-span-8{
    grid-column     : span 8 / span 8 !important;
  }

  .group:hover .xl\:group-hover\:col-span-9{
    grid-column     : span 9 / span 9 !important;
  }

  .group:hover .xl\:group-hover\:col-span-10{
    grid-column     : span 10 / span 10 !important;
  }

  .group:hover .xl\:group-hover\:col-span-11{
    grid-column     : span 11 / span 11 !important;
  }

  .group:hover .xl\:group-hover\:col-span-12{
    grid-column     : span 12 / span 12 !important;
  }

  .xl\:hover\:col-auto:hover{
    grid-column     : auto !important;
  }

  .xl\:hover\:col-span-1:hover{
    grid-column     : span 1 / span 1 !important;
  }

  .xl\:hover\:col-span-2:hover{
    grid-column     : span 2 / span 2 !important;
  }

  .xl\:hover\:col-span-3:hover{
    grid-column     : span 3 / span 3 !important;
  }

  .xl\:hover\:col-span-4:hover{
    grid-column     : span 4 / span 4 !important;
  }

  .xl\:hover\:col-span-5:hover{
    grid-column     : span 5 / span 5 !important;
  }

  .xl\:hover\:col-span-6:hover{
    grid-column     : span 6 / span 6 !important;
  }

  .xl\:hover\:col-span-7:hover{
    grid-column     : span 7 / span 7 !important;
  }

  .xl\:hover\:col-span-8:hover{
    grid-column     : span 8 / span 8 !important;
  }

  .xl\:hover\:col-span-9:hover{
    grid-column     : span 9 / span 9 !important;
  }

  .xl\:hover\:col-span-10:hover{
    grid-column     : span 10 / span 10 !important;
  }

  .xl\:hover\:col-span-11:hover{
    grid-column     : span 11 / span 11 !important;
  }

  .xl\:hover\:col-span-12:hover{
    grid-column     : span 12 / span 12 !important;
  }

  .xl\:focus\:col-auto:focus{
    grid-column     : auto !important;
  }

  .xl\:focus\:col-span-1:focus{
    grid-column     : span 1 / span 1 !important;
  }

  .xl\:focus\:col-span-2:focus{
    grid-column     : span 2 / span 2 !important;
  }

  .xl\:focus\:col-span-3:focus{
    grid-column     : span 3 / span 3 !important;
  }

  .xl\:focus\:col-span-4:focus{
    grid-column     : span 4 / span 4 !important;
  }

  .xl\:focus\:col-span-5:focus{
    grid-column     : span 5 / span 5 !important;
  }

  .xl\:focus\:col-span-6:focus{
    grid-column     : span 6 / span 6 !important;
  }

  .xl\:focus\:col-span-7:focus{
    grid-column     : span 7 / span 7 !important;
  }

  .xl\:focus\:col-span-8:focus{
    grid-column     : span 8 / span 8 !important;
  }

  .xl\:focus\:col-span-9:focus{
    grid-column     : span 9 / span 9 !important;
  }

  .xl\:focus\:col-span-10:focus{
    grid-column     : span 10 / span 10 !important;
  }

  .xl\:focus\:col-span-11:focus{
    grid-column     : span 11 / span 11 !important;
  }

  .xl\:focus\:col-span-12:focus{
    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;
  }

  .group:hover .xl\:group-hover\:col-start-1{
    grid-column-start     : 1 !important;
  }

  .group:hover .xl\:group-hover\:col-start-2{
    grid-column-start     : 2 !important;
  }

  .group:hover .xl\:group-hover\:col-start-3{
    grid-column-start     : 3 !important;
  }

  .group:hover .xl\:group-hover\:col-start-4{
    grid-column-start     : 4 !important;
  }

  .group:hover .xl\:group-hover\:col-start-5{
    grid-column-start     : 5 !important;
  }

  .group:hover .xl\:group-hover\:col-start-6{
    grid-column-start     : 6 !important;
  }

  .group:hover .xl\:group-hover\:col-start-7{
    grid-column-start     : 7 !important;
  }

  .group:hover .xl\:group-hover\:col-start-8{
    grid-column-start     : 8 !important;
  }

  .group:hover .xl\:group-hover\:col-start-9{
    grid-column-start     : 9 !important;
  }

  .group:hover .xl\:group-hover\:col-start-10{
    grid-column-start     : 10 !important;
  }

  .group:hover .xl\:group-hover\:col-start-11{
    grid-column-start     : 11 !important;
  }

  .group:hover .xl\:group-hover\:col-start-12{
    grid-column-start     : 12 !important;
  }

  .group:hover .xl\:group-hover\:col-start-13{
    grid-column-start     : 13 !important;
  }

  .group:hover .xl\:group-hover\:col-start-auto{
    grid-column-start     : auto !important;
  }

  .xl\:hover\:col-start-1:hover{
    grid-column-start     : 1 !important;
  }

  .xl\:hover\:col-start-2:hover{
    grid-column-start     : 2 !important;
  }

  .xl\:hover\:col-start-3:hover{
    grid-column-start     : 3 !important;
  }

  .xl\:hover\:col-start-4:hover{
    grid-column-start     : 4 !important;
  }

  .xl\:hover\:col-start-5:hover{
    grid-column-start     : 5 !important;
  }

  .xl\:hover\:col-start-6:hover{
    grid-column-start     : 6 !important;
  }

  .xl\:hover\:col-start-7:hover{
    grid-column-start     : 7 !important;
  }

  .xl\:hover\:col-start-8:hover{
    grid-column-start     : 8 !important;
  }

  .xl\:hover\:col-start-9:hover{
    grid-column-start     : 9 !important;
  }

  .xl\:hover\:col-start-10:hover{
    grid-column-start     : 10 !important;
  }

  .xl\:hover\:col-start-11:hover{
    grid-column-start     : 11 !important;
  }

  .xl\:hover\:col-start-12:hover{
    grid-column-start     : 12 !important;
  }

  .xl\:hover\:col-start-13:hover{
    grid-column-start     : 13 !important;
  }

  .xl\:hover\:col-start-auto:hover{
    grid-column-start     : auto !important;
  }

  .xl\:focus\:col-start-1:focus{
    grid-column-start     : 1 !important;
  }

  .xl\:focus\:col-start-2:focus{
    grid-column-start     : 2 !important;
  }

  .xl\:focus\:col-start-3:focus{
    grid-column-start     : 3 !important;
  }

  .xl\:focus\:col-start-4:focus{
    grid-column-start     : 4 !important;
  }

  .xl\:focus\:col-start-5:focus{
    grid-column-start     : 5 !important;
  }

  .xl\:focus\:col-start-6:focus{
    grid-column-start     : 6 !important;
  }

  .xl\:focus\:col-start-7:focus{
    grid-column-start     : 7 !important;
  }

  .xl\:focus\:col-start-8:focus{
    grid-column-start     : 8 !important;
  }

  .xl\:focus\:col-start-9:focus{
    grid-column-start     : 9 !important;
  }

  .xl\:focus\:col-start-10:focus{
    grid-column-start     : 10 !important;
  }

  .xl\:focus\:col-start-11:focus{
    grid-column-start     : 11 !important;
  }

  .xl\:focus\:col-start-12:focus{
    grid-column-start     : 12 !important;
  }

  .xl\:focus\:col-start-13:focus{
    grid-column-start     : 13 !important;
  }

  .xl\:focus\:col-start-auto:focus{
    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;
  }

  .group:hover .xl\:group-hover\:col-end-1{
    grid-column-end     : 1 !important;
  }

  .group:hover .xl\:group-hover\:col-end-2{
    grid-column-end     : 2 !important;
  }

  .group:hover .xl\:group-hover\:col-end-3{
    grid-column-end     : 3 !important;
  }

  .group:hover .xl\:group-hover\:col-end-4{
    grid-column-end     : 4 !important;
  }

  .group:hover .xl\:group-hover\:col-end-5{
    grid-column-end     : 5 !important;
  }

  .group:hover .xl\:group-hover\:col-end-6{
    grid-column-end     : 6 !important;
  }

  .group:hover .xl\:group-hover\:col-end-7{
    grid-column-end     : 7 !important;
  }

  .group:hover .xl\:group-hover\:col-end-8{
    grid-column-end     : 8 !important;
  }

  .group:hover .xl\:group-hover\:col-end-9{
    grid-column-end     : 9 !important;
  }

  .group:hover .xl\:group-hover\:col-end-10{
    grid-column-end     : 10 !important;
  }

  .group:hover .xl\:group-hover\:col-end-11{
    grid-column-end     : 11 !important;
  }

  .group:hover .xl\:group-hover\:col-end-12{
    grid-column-end     : 12 !important;
  }

  .group:hover .xl\:group-hover\:col-end-13{
    grid-column-end     : 13 !important;
  }

  .group:hover .xl\:group-hover\:col-end-auto{
    grid-column-end     : auto !important;
  }

  .xl\:hover\:col-end-1:hover{
    grid-column-end     : 1 !important;
  }

  .xl\:hover\:col-end-2:hover{
    grid-column-end     : 2 !important;
  }

  .xl\:hover\:col-end-3:hover{
    grid-column-end     : 3 !important;
  }

  .xl\:hover\:col-end-4:hover{
    grid-column-end     : 4 !important;
  }

  .xl\:hover\:col-end-5:hover{
    grid-column-end     : 5 !important;
  }

  .xl\:hover\:col-end-6:hover{
    grid-column-end     : 6 !important;
  }

  .xl\:hover\:col-end-7:hover{
    grid-column-end     : 7 !important;
  }

  .xl\:hover\:col-end-8:hover{
    grid-column-end     : 8 !important;
  }

  .xl\:hover\:col-end-9:hover{
    grid-column-end     : 9 !important;
  }

  .xl\:hover\:col-end-10:hover{
    grid-column-end     : 10 !important;
  }

  .xl\:hover\:col-end-11:hover{
    grid-column-end     : 11 !important;
  }

  .xl\:hover\:col-end-12:hover{
    grid-column-end     : 12 !important;
  }

  .xl\:hover\:col-end-13:hover{
    grid-column-end     : 13 !important;
  }

  .xl\:hover\:col-end-auto:hover{
    grid-column-end     : auto !important;
  }

  .xl\:focus\:col-end-1:focus{
    grid-column-end     : 1 !important;
  }

  .xl\:focus\:col-end-2:focus{
    grid-column-end     : 2 !important;
  }

  .xl\:focus\:col-end-3:focus{
    grid-column-end     : 3 !important;
  }

  .xl\:focus\:col-end-4:focus{
    grid-column-end     : 4 !important;
  }

  .xl\:focus\:col-end-5:focus{
    grid-column-end     : 5 !important;
  }

  .xl\:focus\:col-end-6:focus{
    grid-column-end     : 6 !important;
  }

  .xl\:focus\:col-end-7:focus{
    grid-column-end     : 7 !important;
  }

  .xl\:focus\:col-end-8:focus{
    grid-column-end     : 8 !important;
  }

  .xl\:focus\:col-end-9:focus{
    grid-column-end     : 9 !important;
  }

  .xl\:focus\:col-end-10:focus{
    grid-column-end     : 10 !important;
  }

  .xl\:focus\:col-end-11:focus{
    grid-column-end     : 11 !important;
  }

  .xl\:focus\:col-end-12:focus{
    grid-column-end     : 12 !important;
  }

  .xl\:focus\:col-end-13:focus{
    grid-column-end     : 13 !important;
  }

  .xl\:focus\:col-end-auto:focus{
    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;
  }

  .group:hover .xl\:group-hover\:grid-rows-1{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-2{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-3{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-4{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-5{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-6{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .group:hover .xl\:group-hover\:grid-rows-none{
    grid-template-rows     : none !important;
  }

  .xl\:hover\:grid-rows-1:hover{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-2:hover{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-3:hover{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-4:hover{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-5:hover{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-6:hover{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:hover\:grid-rows-none:hover{
    grid-template-rows     : none !important;
  }

  .xl\:focus\:grid-rows-1:focus{
    grid-template-rows     : repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-2:focus{
    grid-template-rows     : repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-3:focus{
    grid-template-rows     : repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-4:focus{
    grid-template-rows     : repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-5:focus{
    grid-template-rows     : repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-6:focus{
    grid-template-rows     : repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:focus\:grid-rows-none:focus{
    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;
  }

  .group:hover .xl\:group-hover\:row-auto{
    grid-row     : auto !important;
  }

  .group:hover .xl\:group-hover\:row-span-1{
    grid-row     : span 1 / span 1 !important;
  }

  .group:hover .xl\:group-hover\:row-span-2{
    grid-row     : span 2 / span 2 !important;
  }

  .group:hover .xl\:group-hover\:row-span-3{
    grid-row     : span 3 / span 3 !important;
  }

  .group:hover .xl\:group-hover\:row-span-4{
    grid-row     : span 4 / span 4 !important;
  }

  .group:hover .xl\:group-hover\:row-span-5{
    grid-row     : span 5 / span 5 !important;
  }

  .group:hover .xl\:group-hover\:row-span-6{
    grid-row     : span 6 / span 6 !important;
  }

  .xl\:hover\:row-auto:hover{
    grid-row     : auto !important;
  }

  .xl\:hover\:row-span-1:hover{
    grid-row     : span 1 / span 1 !important;
  }

  .xl\:hover\:row-span-2:hover{
    grid-row     : span 2 / span 2 !important;
  }

  .xl\:hover\:row-span-3:hover{
    grid-row     : span 3 / span 3 !important;
  }

  .xl\:hover\:row-span-4:hover{
    grid-row     : span 4 / span 4 !important;
  }

  .xl\:hover\:row-span-5:hover{
    grid-row     : span 5 / span 5 !important;
  }

  .xl\:hover\:row-span-6:hover{
    grid-row     : span 6 / span 6 !important;
  }

  .xl\:focus\:row-auto:focus{
    grid-row     : auto !important;
  }

  .xl\:focus\:row-span-1:focus{
    grid-row     : span 1 / span 1 !important;
  }

  .xl\:focus\:row-span-2:focus{
    grid-row     : span 2 / span 2 !important;
  }

  .xl\:focus\:row-span-3:focus{
    grid-row     : span 3 / span 3 !important;
  }

  .xl\:focus\:row-span-4:focus{
    grid-row     : span 4 / span 4 !important;
  }

  .xl\:focus\:row-span-5:focus{
    grid-row     : span 5 / span 5 !important;
  }

  .xl\:focus\:row-span-6:focus{
    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;
  }

  .group:hover .xl\:group-hover\:row-start-1{
    grid-row-start     : 1 !important;
  }

  .group:hover .xl\:group-hover\:row-start-2{
    grid-row-start     : 2 !important;
  }

  .group:hover .xl\:group-hover\:row-start-3{
    grid-row-start     : 3 !important;
  }

  .group:hover .xl\:group-hover\:row-start-4{
    grid-row-start     : 4 !important;
  }

  .group:hover .xl\:group-hover\:row-start-5{
    grid-row-start     : 5 !important;
  }

  .group:hover .xl\:group-hover\:row-start-6{
    grid-row-start     : 6 !important;
  }

  .group:hover .xl\:group-hover\:row-start-7{
    grid-row-start     : 7 !important;
  }

  .group:hover .xl\:group-hover\:row-start-auto{
    grid-row-start     : auto !important;
  }

  .xl\:hover\:row-start-1:hover{
    grid-row-start     : 1 !important;
  }

  .xl\:hover\:row-start-2:hover{
    grid-row-start     : 2 !important;
  }

  .xl\:hover\:row-start-3:hover{
    grid-row-start     : 3 !important;
  }

  .xl\:hover\:row-start-4:hover{
    grid-row-start     : 4 !important;
  }

  .xl\:hover\:row-start-5:hover{
    grid-row-start     : 5 !important;
  }

  .xl\:hover\:row-start-6:hover{
    grid-row-start     : 6 !important;
  }

  .xl\:hover\:row-start-7:hover{
    grid-row-start     : 7 !important;
  }

  .xl\:hover\:row-start-auto:hover{
    grid-row-start     : auto !important;
  }

  .xl\:focus\:row-start-1:focus{
    grid-row-start     : 1 !important;
  }

  .xl\:focus\:row-start-2:focus{
    grid-row-start     : 2 !important;
  }

  .xl\:focus\:row-start-3:focus{
    grid-row-start     : 3 !important;
  }

  .xl\:focus\:row-start-4:focus{
    grid-row-start     : 4 !important;
  }

  .xl\:focus\:row-start-5:focus{
    grid-row-start     : 5 !important;
  }

  .xl\:focus\:row-start-6:focus{
    grid-row-start     : 6 !important;
  }

  .xl\:focus\:row-start-7:focus{
    grid-row-start     : 7 !important;
  }

  .xl\:focus\:row-start-auto:focus{
    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;
  }

  .group:hover .xl\:group-hover\:row-end-1{
    grid-row-end     : 1 !important;
  }

  .group:hover .xl\:group-hover\:row-end-2{
    grid-row-end     : 2 !important;
  }

  .group:hover .xl\:group-hover\:row-end-3{
    grid-row-end     : 3 !important;
  }

  .group:hover .xl\:group-hover\:row-end-4{
    grid-row-end     : 4 !important;
  }

  .group:hover .xl\:group-hover\:row-end-5{
    grid-row-end     : 5 !important;
  }

  .group:hover .xl\:group-hover\:row-end-6{
    grid-row-end     : 6 !important;
  }

  .group:hover .xl\:group-hover\:row-end-7{
    grid-row-end     : 7 !important;
  }

  .group:hover .xl\:group-hover\:row-end-auto{
    grid-row-end     : auto !important;
  }

  .xl\:hover\:row-end-1:hover{
    grid-row-end     : 1 !important;
  }

  .xl\:hover\:row-end-2:hover{
    grid-row-end     : 2 !important;
  }

  .xl\:hover\:row-end-3:hover{
    grid-row-end     : 3 !important;
  }

  .xl\:hover\:row-end-4:hover{
    grid-row-end     : 4 !important;
  }

  .xl\:hover\:row-end-5:hover{
    grid-row-end     : 5 !important;
  }

  .xl\:hover\:row-end-6:hover{
    grid-row-end     : 6 !important;
  }

  .xl\:hover\:row-end-7:hover{
    grid-row-end     : 7 !important;
  }

  .xl\:hover\:row-end-auto:hover{
    grid-row-end     : auto !important;
  }

  .xl\:focus\:row-end-1:focus{
    grid-row-end     : 1 !important;
  }

  .xl\:focus\:row-end-2:focus{
    grid-row-end     : 2 !important;
  }

  .xl\:focus\:row-end-3:focus{
    grid-row-end     : 3 !important;
  }

  .xl\:focus\:row-end-4:focus{
    grid-row-end     : 4 !important;
  }

  .xl\:focus\:row-end-5:focus{
    grid-row-end     : 5 !important;
  }

  .xl\:focus\:row-end-6:focus{
    grid-row-end     : 6 !important;
  }

  .xl\:focus\:row-end-7:focus{
    grid-row-end     : 7 !important;
  }

  .xl\:focus\:row-end-auto:focus{
    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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:transform-none{
    transform     : none !important;
  }

  .xl\:hover\:transform:hover{
    --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\:hover\:transform-none:hover{
    transform     : none !important;
  }

  .xl\:focus\:transform:focus{
    --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\:focus\:transform-none:focus{
    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;
  }

  .group:hover .xl\:group-hover\:origin-center{
    transform-origin     : center !important;
  }

  .group:hover .xl\:group-hover\:origin-top{
    transform-origin     : top !important;
  }

  .group:hover .xl\:group-hover\:origin-top-right{
    transform-origin     : top right !important;
  }

  .group:hover .xl\:group-hover\:origin-right{
    transform-origin     : right !important;
  }

  .group:hover .xl\:group-hover\:origin-bottom-right{
    transform-origin     : bottom right !important;
  }

  .group:hover .xl\:group-hover\:origin-bottom{
    transform-origin     : bottom !important;
  }

  .group:hover .xl\:group-hover\:origin-bottom-left{
    transform-origin     : bottom left !important;
  }

  .group:hover .xl\:group-hover\:origin-left{
    transform-origin     : left !important;
  }

  .group:hover .xl\:group-hover\:origin-top-left{
    transform-origin     : top left !important;
  }

  .xl\:hover\:origin-center:hover{
    transform-origin     : center !important;
  }

  .xl\:hover\:origin-top:hover{
    transform-origin     : top !important;
  }

  .xl\:hover\:origin-top-right:hover{
    transform-origin     : top right !important;
  }

  .xl\:hover\:origin-right:hover{
    transform-origin     : right !important;
  }

  .xl\:hover\:origin-bottom-right:hover{
    transform-origin     : bottom right !important;
  }

  .xl\:hover\:origin-bottom:hover{
    transform-origin     : bottom !important;
  }

  .xl\:hover\:origin-bottom-left:hover{
    transform-origin     : bottom left !important;
  }

  .xl\:hover\:origin-left:hover{
    transform-origin     : left !important;
  }

  .xl\:hover\:origin-top-left:hover{
    transform-origin     : top left !important;
  }

  .xl\:focus\:origin-center:focus{
    transform-origin     : center !important;
  }

  .xl\:focus\:origin-top:focus{
    transform-origin     : top !important;
  }

  .xl\:focus\:origin-top-right:focus{
    transform-origin     : top right !important;
  }

  .xl\:focus\:origin-right:focus{
    transform-origin     : right !important;
  }

  .xl\:focus\:origin-bottom-right:focus{
    transform-origin     : bottom right !important;
  }

  .xl\:focus\:origin-bottom:focus{
    transform-origin     : bottom !important;
  }

  .xl\:focus\:origin-bottom-left:focus{
    transform-origin     : bottom left !important;
  }

  .xl\:focus\:origin-left:focus{
    transform-origin     : left !important;
  }

  .xl\:focus\:origin-top-left:focus{
    transform-origin     : top left !important;
  }

  .xl\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .xl\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .xl\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .xl\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .xl\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .xl\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .xl\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .xl\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .xl\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .xl\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .xl\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .xl\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .xl\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .xl\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .xl\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .xl\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .xl\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .xl\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .xl\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .xl\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .xl\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .xl\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .xl\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .xl\:group-hover\:scale-0{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .group:hover .xl\:group-hover\:scale-50{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .group:hover .xl\:group-hover\:scale-75{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .group:hover .xl\:group-hover\:scale-90{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .group:hover .xl\:group-hover\:scale-95{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .group:hover .xl\:group-hover\:scale-100{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .group:hover .xl\:group-hover\:scale-105{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .xl\:group-hover\:scale-110{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .xl\:group-hover\:scale-125{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .xl\:group-hover\:scale-150{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-0{
    --transform-scale-x     : 0 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-50{
    --transform-scale-x     : .5 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-75{
    --transform-scale-x     : .75 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-90{
    --transform-scale-x     : .9 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-95{
    --transform-scale-x     : .95 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-100{
    --transform-scale-x     : 1 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-105{
    --transform-scale-x     : 1.05 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-110{
    --transform-scale-x     : 1.1 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-125{
    --transform-scale-x     : 1.25 !important;
  }

  .group:hover .xl\:group-hover\:scale-x-150{
    --transform-scale-x     : 1.5 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-0{
    --transform-scale-y     : 0 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-50{
    --transform-scale-y     : .5 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-75{
    --transform-scale-y     : .75 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-90{
    --transform-scale-y     : .9 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-95{
    --transform-scale-y     : .95 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-100{
    --transform-scale-y     : 1 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-105{
    --transform-scale-y     : 1.05 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-110{
    --transform-scale-y     : 1.1 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-125{
    --transform-scale-y     : 1.25 !important;
  }

  .group:hover .xl\:group-hover\:scale-y-150{
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:hover\:scale-0:hover{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .xl\:hover\:scale-50:hover{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .xl\:hover\:scale-75:hover{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .xl\:hover\:scale-90:hover{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .xl\:hover\:scale-95:hover{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .xl\:hover\:scale-100:hover{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .xl\:hover\:scale-105:hover{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:hover\:scale-110:hover{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:hover\:scale-125:hover{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:hover\:scale-150:hover{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:hover\:scale-x-0:hover{
    --transform-scale-x     : 0 !important;
  }

  .xl\:hover\:scale-x-50:hover{
    --transform-scale-x     : .5 !important;
  }

  .xl\:hover\:scale-x-75:hover{
    --transform-scale-x     : .75 !important;
  }

  .xl\:hover\:scale-x-90:hover{
    --transform-scale-x     : .9 !important;
  }

  .xl\:hover\:scale-x-95:hover{
    --transform-scale-x     : .95 !important;
  }

  .xl\:hover\:scale-x-100:hover{
    --transform-scale-x     : 1 !important;
  }

  .xl\:hover\:scale-x-105:hover{
    --transform-scale-x     : 1.05 !important;
  }

  .xl\:hover\:scale-x-110:hover{
    --transform-scale-x     : 1.1 !important;
  }

  .xl\:hover\:scale-x-125:hover{
    --transform-scale-x     : 1.25 !important;
  }

  .xl\:hover\:scale-x-150:hover{
    --transform-scale-x     : 1.5 !important;
  }

  .xl\:hover\:scale-y-0:hover{
    --transform-scale-y     : 0 !important;
  }

  .xl\:hover\:scale-y-50:hover{
    --transform-scale-y     : .5 !important;
  }

  .xl\:hover\:scale-y-75:hover{
    --transform-scale-y     : .75 !important;
  }

  .xl\:hover\:scale-y-90:hover{
    --transform-scale-y     : .9 !important;
  }

  .xl\:hover\:scale-y-95:hover{
    --transform-scale-y     : .95 !important;
  }

  .xl\:hover\:scale-y-100:hover{
    --transform-scale-y     : 1 !important;
  }

  .xl\:hover\:scale-y-105:hover{
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:hover\:scale-y-110:hover{
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:hover\:scale-y-125:hover{
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:hover\:scale-y-150:hover{
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:focus\:scale-0:focus{
    --transform-scale-x     : 0 !important;
    --transform-scale-y     : 0 !important;
  }

  .xl\:focus\:scale-50:focus{
    --transform-scale-x     : .5 !important;
    --transform-scale-y     : .5 !important;
  }

  .xl\:focus\:scale-75:focus{
    --transform-scale-x     : .75 !important;
    --transform-scale-y     : .75 !important;
  }

  .xl\:focus\:scale-90:focus{
    --transform-scale-x     : .9 !important;
    --transform-scale-y     : .9 !important;
  }

  .xl\:focus\:scale-95:focus{
    --transform-scale-x     : .95 !important;
    --transform-scale-y     : .95 !important;
  }

  .xl\:focus\:scale-100:focus{
    --transform-scale-x     : 1 !important;
    --transform-scale-y     : 1 !important;
  }

  .xl\:focus\:scale-105:focus{
    --transform-scale-x     : 1.05 !important;
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:focus\:scale-110:focus{
    --transform-scale-x     : 1.1 !important;
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:focus\:scale-125:focus{
    --transform-scale-x     : 1.25 !important;
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:focus\:scale-150:focus{
    --transform-scale-x     : 1.5 !important;
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:focus\:scale-x-0:focus{
    --transform-scale-x     : 0 !important;
  }

  .xl\:focus\:scale-x-50:focus{
    --transform-scale-x     : .5 !important;
  }

  .xl\:focus\:scale-x-75:focus{
    --transform-scale-x     : .75 !important;
  }

  .xl\:focus\:scale-x-90:focus{
    --transform-scale-x     : .9 !important;
  }

  .xl\:focus\:scale-x-95:focus{
    --transform-scale-x     : .95 !important;
  }

  .xl\:focus\:scale-x-100:focus{
    --transform-scale-x     : 1 !important;
  }

  .xl\:focus\:scale-x-105:focus{
    --transform-scale-x     : 1.05 !important;
  }

  .xl\:focus\:scale-x-110:focus{
    --transform-scale-x     : 1.1 !important;
  }

  .xl\:focus\:scale-x-125:focus{
    --transform-scale-x     : 1.25 !important;
  }

  .xl\:focus\:scale-x-150:focus{
    --transform-scale-x     : 1.5 !important;
  }

  .xl\:focus\:scale-y-0:focus{
    --transform-scale-y     : 0 !important;
  }

  .xl\:focus\:scale-y-50:focus{
    --transform-scale-y     : .5 !important;
  }

  .xl\:focus\:scale-y-75:focus{
    --transform-scale-y     : .75 !important;
  }

  .xl\:focus\:scale-y-90:focus{
    --transform-scale-y     : .9 !important;
  }

  .xl\:focus\:scale-y-95:focus{
    --transform-scale-y     : .95 !important;
  }

  .xl\:focus\:scale-y-100:focus{
    --transform-scale-y     : 1 !important;
  }

  .xl\:focus\:scale-y-105:focus{
    --transform-scale-y     : 1.05 !important;
  }

  .xl\:focus\:scale-y-110:focus{
    --transform-scale-y     : 1.1 !important;
  }

  .xl\:focus\:scale-y-125:focus{
    --transform-scale-y     : 1.25 !important;
  }

  .xl\:focus\:scale-y-150:focus{
    --transform-scale-y     : 1.5 !important;
  }

  .xl\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .xl\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .xl\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .xl\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .xl\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .xl\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .xl\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .group:hover .xl\:group-hover\:rotate-0{
    --transform-rotate     : 0 !important;
  }

  .group:hover .xl\:group-hover\:rotate-45{
    --transform-rotate     : 45deg !important;
  }

  .group:hover .xl\:group-hover\:rotate-90{
    --transform-rotate     : 90deg !important;
  }

  .group:hover .xl\:group-hover\:rotate-180{
    --transform-rotate     : 180deg !important;
  }

  .group:hover .xl\:group-hover\:-rotate-180{
    --transform-rotate     : -180deg !important;
  }

  .group:hover .xl\:group-hover\:-rotate-90{
    --transform-rotate     : -90deg !important;
  }

  .group:hover .xl\:group-hover\:-rotate-45{
    --transform-rotate     : -45deg !important;
  }

  .xl\:hover\:rotate-0:hover{
    --transform-rotate     : 0 !important;
  }

  .xl\:hover\:rotate-45:hover{
    --transform-rotate     : 45deg !important;
  }

  .xl\:hover\:rotate-90:hover{
    --transform-rotate     : 90deg !important;
  }

  .xl\:hover\:rotate-180:hover{
    --transform-rotate     : 180deg !important;
  }

  .xl\:hover\:-rotate-180:hover{
    --transform-rotate     : -180deg !important;
  }

  .xl\:hover\:-rotate-90:hover{
    --transform-rotate     : -90deg !important;
  }

  .xl\:hover\:-rotate-45:hover{
    --transform-rotate     : -45deg !important;
  }

  .xl\:focus\:rotate-0:focus{
    --transform-rotate     : 0 !important;
  }

  .xl\:focus\:rotate-45:focus{
    --transform-rotate     : 45deg !important;
  }

  .xl\:focus\:rotate-90:focus{
    --transform-rotate     : 90deg !important;
  }

  .xl\:focus\:rotate-180:focus{
    --transform-rotate     : 180deg !important;
  }

  .xl\:focus\:-rotate-180:focus{
    --transform-rotate     : -180deg !important;
  }

  .xl\:focus\:-rotate-90:focus{
    --transform-rotate     : -90deg !important;
  }

  .xl\:focus\:-rotate-45:focus{
    --transform-rotate     : -45deg !important;
  }

  .xl\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .xl\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .xl\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .xl\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .xl\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .xl\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .xl\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .xl\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .xl\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .xl\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .xl\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .xl\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .xl\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .xl\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .xl\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .xl\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .xl\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .xl\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .xl\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .xl\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .xl\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .xl\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .xl\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .xl\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .xl\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .xl\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .xl\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .xl\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .xl\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .xl\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .xl\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .xl\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .xl\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .xl\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .xl\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .xl\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .xl\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .xl\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .xl\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .xl\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .xl\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .xl\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .xl\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .xl\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .xl\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .xl\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .xl\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .xl\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .xl\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .xl\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .xl\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .xl\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .xl\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .xl\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .xl\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .xl\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .xl\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .xl\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .xl\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .xl\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .xl\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .xl\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .xl\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .xl\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .xl\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .xl\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .xl\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .xl\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .xl\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .xl\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .xl\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .xl\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .xl\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .xl\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .xl\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .xl\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .xl\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .xl\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .xl\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .xl\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .xl\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .xl\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .xl\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .xl\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .xl\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .xl\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .xl\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .xl\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .xl\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .xl\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .xl\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .xl\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .xl\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .xl\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .xl\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .xl\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .xl\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .xl\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .xl\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .xl\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .xl\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .xl\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .xl\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .xl\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .xl\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .xl\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .xl\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .xl\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .xl\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .xl\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .xl\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .xl\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .xl\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .xl\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .xl\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .xl\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .xl\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .xl\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .xl\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .xl\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .xl\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .xl\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .xl\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .xl\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .xl\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .xl\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .xl\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .xl\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .xl\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .xl\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .xl\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .xl\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .xl\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .xl\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .xl\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .xl\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .xl\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .xl\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .xl\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .xl\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .xl\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .xl\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .xl\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .xl\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .xl\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .xl\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .xl\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .xl\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .xl\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .xl\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .xl\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .xl\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .xl\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .xl\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .xl\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .xl\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .xl\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .xl\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .xl\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .xl\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .xl\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .xl\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .xl\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .xl\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .xl\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .xl\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .xl\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .xl\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .xl\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .xl\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .xl\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .xl\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .xl\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .xl\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .xl\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .xl\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .xl\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .xl\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .xl\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .xl\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .xl\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .xl\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .xl\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .xl\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .xl\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .xl\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .xl\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .xl\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .xl\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .xl\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .xl\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .xl\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .xl\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .xl\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .xl\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .xl\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .xl\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .xl\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .xl\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .xl\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .xl\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .xl\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .xl\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .xl\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .xl\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .xl\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .xl\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .xl\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .xl\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .xl\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .xl\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .xl\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .xl\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .xl\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-0{
    --transform-translate-x     : 0 !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1{
    --transform-translate-x     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2{
    --transform-translate-x     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3{
    --transform-translate-x     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-4{
    --transform-translate-x     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-5{
    --transform-translate-x     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-6{
    --transform-translate-x     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-7{
    --transform-translate-x     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-8{
    --transform-translate-x     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-9{
    --transform-translate-x     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-10{
    --transform-translate-x     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-11{
    --transform-translate-x     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-12{
    --transform-translate-x     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-13{
    --transform-translate-x     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-14{
    --transform-translate-x     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-15{
    --transform-translate-x     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-16{
    --transform-translate-x     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-20{
    --transform-translate-x     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-24{
    --transform-translate-x     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-28{
    --transform-translate-x     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-32{
    --transform-translate-x     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-36{
    --transform-translate-x     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-40{
    --transform-translate-x     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-44{
    --transform-translate-x     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-48{
    --transform-translate-x     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-52{
    --transform-translate-x     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-56{
    --transform-translate-x     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-60{
    --transform-translate-x     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-64{
    --transform-translate-x     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-72{
    --transform-translate-x     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-80{
    --transform-translate-x     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-96{
    --transform-translate-x     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-px{
    --transform-translate-x     : 1px !important;
  }

  .group:hover .xl\:group-hover\:translate-x-0\.5{
    --transform-translate-x     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\.5{
    --transform-translate-x     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\.5{
    --transform-translate-x     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3\.5{
    --transform-translate-x     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/2{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/3{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\/3{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/4{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\/4{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3\/4{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/5{
    --transform-translate-x     : 20% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\/5{
    --transform-translate-x     : 40% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3\/5{
    --transform-translate-x     : 60% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-4\/5{
    --transform-translate-x     : 80% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/6{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\/6{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3\/6{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-4\/6{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-5\/6{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-1\/12{
    --transform-translate-x     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-2\/12{
    --transform-translate-x     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-3\/12{
    --transform-translate-x     : 25% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-4\/12{
    --transform-translate-x     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-5\/12{
    --transform-translate-x     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-6\/12{
    --transform-translate-x     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-7\/12{
    --transform-translate-x     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-8\/12{
    --transform-translate-x     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-9\/12{
    --transform-translate-x     : 75% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-10\/12{
    --transform-translate-x     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-11\/12{
    --transform-translate-x     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-x-full{
    --transform-translate-x     : 100% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1{
    --transform-translate-x     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2{
    --transform-translate-x     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3{
    --transform-translate-x     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-4{
    --transform-translate-x     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-5{
    --transform-translate-x     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-6{
    --transform-translate-x     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-7{
    --transform-translate-x     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-8{
    --transform-translate-x     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-9{
    --transform-translate-x     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-10{
    --transform-translate-x     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-11{
    --transform-translate-x     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-12{
    --transform-translate-x     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-13{
    --transform-translate-x     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-14{
    --transform-translate-x     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-15{
    --transform-translate-x     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-16{
    --transform-translate-x     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-20{
    --transform-translate-x     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-24{
    --transform-translate-x     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-28{
    --transform-translate-x     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-32{
    --transform-translate-x     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-36{
    --transform-translate-x     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-40{
    --transform-translate-x     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-44{
    --transform-translate-x     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-48{
    --transform-translate-x     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-52{
    --transform-translate-x     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-56{
    --transform-translate-x     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-60{
    --transform-translate-x     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-64{
    --transform-translate-x     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-72{
    --transform-translate-x     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-80{
    --transform-translate-x     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-96{
    --transform-translate-x     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-px{
    --transform-translate-x     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-0\.5{
    --transform-translate-x     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\.5{
    --transform-translate-x     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\.5{
    --transform-translate-x     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3\.5{
    --transform-translate-x     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/2{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/3{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\/3{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/4{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\/4{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3\/4{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/5{
    --transform-translate-x     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\/5{
    --transform-translate-x     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3\/5{
    --transform-translate-x     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-4\/5{
    --transform-translate-x     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/6{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\/6{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3\/6{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-4\/6{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-5\/6{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-1\/12{
    --transform-translate-x     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-2\/12{
    --transform-translate-x     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-3\/12{
    --transform-translate-x     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-4\/12{
    --transform-translate-x     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-5\/12{
    --transform-translate-x     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-6\/12{
    --transform-translate-x     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-7\/12{
    --transform-translate-x     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-8\/12{
    --transform-translate-x     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-9\/12{
    --transform-translate-x     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-10\/12{
    --transform-translate-x     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-11\/12{
    --transform-translate-x     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-x-full{
    --transform-translate-x     : -100% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-0{
    --transform-translate-y     : 0 !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1{
    --transform-translate-y     : 0.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2{
    --transform-translate-y     : 0.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3{
    --transform-translate-y     : 0.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-4{
    --transform-translate-y     : 1rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-5{
    --transform-translate-y     : 1.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-6{
    --transform-translate-y     : 1.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-7{
    --transform-translate-y     : 1.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-8{
    --transform-translate-y     : 2rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-9{
    --transform-translate-y     : 2.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-10{
    --transform-translate-y     : 2.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-11{
    --transform-translate-y     : 2.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-12{
    --transform-translate-y     : 3rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-13{
    --transform-translate-y     : 3.25rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-14{
    --transform-translate-y     : 3.5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-15{
    --transform-translate-y     : 3.75rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-16{
    --transform-translate-y     : 4rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-20{
    --transform-translate-y     : 5rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-24{
    --transform-translate-y     : 6rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-28{
    --transform-translate-y     : 7rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-32{
    --transform-translate-y     : 8rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-36{
    --transform-translate-y     : 9rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-40{
    --transform-translate-y     : 10rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-44{
    --transform-translate-y     : 11rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-48{
    --transform-translate-y     : 12rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-52{
    --transform-translate-y     : 13rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-56{
    --transform-translate-y     : 14rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-60{
    --transform-translate-y     : 15rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-64{
    --transform-translate-y     : 16rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-72{
    --transform-translate-y     : 18rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-80{
    --transform-translate-y     : 20rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-96{
    --transform-translate-y     : 24rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-px{
    --transform-translate-y     : 1px !important;
  }

  .group:hover .xl\:group-hover\:translate-y-0\.5{
    --transform-translate-y     : 0.125rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\.5{
    --transform-translate-y     : 0.375rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\.5{
    --transform-translate-y     : 0.625rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3\.5{
    --transform-translate-y     : 0.875rem !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/2{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/3{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\/3{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/4{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\/4{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3\/4{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/5{
    --transform-translate-y     : 20% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\/5{
    --transform-translate-y     : 40% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3\/5{
    --transform-translate-y     : 60% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-4\/5{
    --transform-translate-y     : 80% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/6{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\/6{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3\/6{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-4\/6{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-5\/6{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-1\/12{
    --transform-translate-y     : 8.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-2\/12{
    --transform-translate-y     : 16.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-3\/12{
    --transform-translate-y     : 25% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-4\/12{
    --transform-translate-y     : 33.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-5\/12{
    --transform-translate-y     : 41.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-6\/12{
    --transform-translate-y     : 50% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-7\/12{
    --transform-translate-y     : 58.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-8\/12{
    --transform-translate-y     : 66.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-9\/12{
    --transform-translate-y     : 75% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-10\/12{
    --transform-translate-y     : 83.333333% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-11\/12{
    --transform-translate-y     : 91.666667% !important;
  }

  .group:hover .xl\:group-hover\:translate-y-full{
    --transform-translate-y     : 100% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1{
    --transform-translate-y     : -0.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2{
    --transform-translate-y     : -0.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3{
    --transform-translate-y     : -0.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-4{
    --transform-translate-y     : -1rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-5{
    --transform-translate-y     : -1.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-6{
    --transform-translate-y     : -1.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-7{
    --transform-translate-y     : -1.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-8{
    --transform-translate-y     : -2rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-9{
    --transform-translate-y     : -2.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-10{
    --transform-translate-y     : -2.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-11{
    --transform-translate-y     : -2.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-12{
    --transform-translate-y     : -3rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-13{
    --transform-translate-y     : -3.25rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-14{
    --transform-translate-y     : -3.5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-15{
    --transform-translate-y     : -3.75rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-16{
    --transform-translate-y     : -4rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-20{
    --transform-translate-y     : -5rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-24{
    --transform-translate-y     : -6rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-28{
    --transform-translate-y     : -7rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-32{
    --transform-translate-y     : -8rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-36{
    --transform-translate-y     : -9rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-40{
    --transform-translate-y     : -10rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-44{
    --transform-translate-y     : -11rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-48{
    --transform-translate-y     : -12rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-52{
    --transform-translate-y     : -13rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-56{
    --transform-translate-y     : -14rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-60{
    --transform-translate-y     : -15rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-64{
    --transform-translate-y     : -16rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-72{
    --transform-translate-y     : -18rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-80{
    --transform-translate-y     : -20rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-96{
    --transform-translate-y     : -24rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-px{
    --transform-translate-y     : -1px !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-0\.5{
    --transform-translate-y     : -0.125rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\.5{
    --transform-translate-y     : -0.375rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\.5{
    --transform-translate-y     : -0.625rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3\.5{
    --transform-translate-y     : -0.875rem !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/2{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/3{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\/3{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/4{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\/4{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3\/4{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/5{
    --transform-translate-y     : -20% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\/5{
    --transform-translate-y     : -40% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3\/5{
    --transform-translate-y     : -60% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-4\/5{
    --transform-translate-y     : -80% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/6{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\/6{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3\/6{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-4\/6{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-5\/6{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-1\/12{
    --transform-translate-y     : -8.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-2\/12{
    --transform-translate-y     : -16.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-3\/12{
    --transform-translate-y     : -25% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-4\/12{
    --transform-translate-y     : -33.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-5\/12{
    --transform-translate-y     : -41.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-6\/12{
    --transform-translate-y     : -50% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-7\/12{
    --transform-translate-y     : -58.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-8\/12{
    --transform-translate-y     : -66.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-9\/12{
    --transform-translate-y     : -75% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-10\/12{
    --transform-translate-y     : -83.33333% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-11\/12{
    --transform-translate-y     : -91.66667% !important;
  }

  .group:hover .xl\:group-hover\:-translate-y-full{
    --transform-translate-y     : -100% !important;
  }

  .xl\:hover\:translate-x-0:hover{
    --transform-translate-x     : 0 !important;
  }

  .xl\:hover\:translate-x-1:hover{
    --transform-translate-x     : 0.25rem !important;
  }

  .xl\:hover\:translate-x-2:hover{
    --transform-translate-x     : 0.5rem !important;
  }

  .xl\:hover\:translate-x-3:hover{
    --transform-translate-x     : 0.75rem !important;
  }

  .xl\:hover\:translate-x-4:hover{
    --transform-translate-x     : 1rem !important;
  }

  .xl\:hover\:translate-x-5:hover{
    --transform-translate-x     : 1.25rem !important;
  }

  .xl\:hover\:translate-x-6:hover{
    --transform-translate-x     : 1.5rem !important;
  }

  .xl\:hover\:translate-x-7:hover{
    --transform-translate-x     : 1.75rem !important;
  }

  .xl\:hover\:translate-x-8:hover{
    --transform-translate-x     : 2rem !important;
  }

  .xl\:hover\:translate-x-9:hover{
    --transform-translate-x     : 2.25rem !important;
  }

  .xl\:hover\:translate-x-10:hover{
    --transform-translate-x     : 2.5rem !important;
  }

  .xl\:hover\:translate-x-11:hover{
    --transform-translate-x     : 2.75rem !important;
  }

  .xl\:hover\:translate-x-12:hover{
    --transform-translate-x     : 3rem !important;
  }

  .xl\:hover\:translate-x-13:hover{
    --transform-translate-x     : 3.25rem !important;
  }

  .xl\:hover\:translate-x-14:hover{
    --transform-translate-x     : 3.5rem !important;
  }

  .xl\:hover\:translate-x-15:hover{
    --transform-translate-x     : 3.75rem !important;
  }

  .xl\:hover\:translate-x-16:hover{
    --transform-translate-x     : 4rem !important;
  }

  .xl\:hover\:translate-x-20:hover{
    --transform-translate-x     : 5rem !important;
  }

  .xl\:hover\:translate-x-24:hover{
    --transform-translate-x     : 6rem !important;
  }

  .xl\:hover\:translate-x-28:hover{
    --transform-translate-x     : 7rem !important;
  }

  .xl\:hover\:translate-x-32:hover{
    --transform-translate-x     : 8rem !important;
  }

  .xl\:hover\:translate-x-36:hover{
    --transform-translate-x     : 9rem !important;
  }

  .xl\:hover\:translate-x-40:hover{
    --transform-translate-x     : 10rem !important;
  }

  .xl\:hover\:translate-x-44:hover{
    --transform-translate-x     : 11rem !important;
  }

  .xl\:hover\:translate-x-48:hover{
    --transform-translate-x     : 12rem !important;
  }

  .xl\:hover\:translate-x-52:hover{
    --transform-translate-x     : 13rem !important;
  }

  .xl\:hover\:translate-x-56:hover{
    --transform-translate-x     : 14rem !important;
  }

  .xl\:hover\:translate-x-60:hover{
    --transform-translate-x     : 15rem !important;
  }

  .xl\:hover\:translate-x-64:hover{
    --transform-translate-x     : 16rem !important;
  }

  .xl\:hover\:translate-x-72:hover{
    --transform-translate-x     : 18rem !important;
  }

  .xl\:hover\:translate-x-80:hover{
    --transform-translate-x     : 20rem !important;
  }

  .xl\:hover\:translate-x-96:hover{
    --transform-translate-x     : 24rem !important;
  }

  .xl\:hover\:translate-x-px:hover{
    --transform-translate-x     : 1px !important;
  }

  .xl\:hover\:translate-x-0\.5:hover{
    --transform-translate-x     : 0.125rem !important;
  }

  .xl\:hover\:translate-x-1\.5:hover{
    --transform-translate-x     : 0.375rem !important;
  }

  .xl\:hover\:translate-x-2\.5:hover{
    --transform-translate-x     : 0.625rem !important;
  }

  .xl\:hover\:translate-x-3\.5:hover{
    --transform-translate-x     : 0.875rem !important;
  }

  .xl\:hover\:translate-x-1\/2:hover{
    --transform-translate-x     : 50% !important;
  }

  .xl\:hover\:translate-x-1\/3:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:hover\:translate-x-2\/3:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:hover\:translate-x-1\/4:hover{
    --transform-translate-x     : 25% !important;
  }

  .xl\:hover\:translate-x-2\/4:hover{
    --transform-translate-x     : 50% !important;
  }

  .xl\:hover\:translate-x-3\/4:hover{
    --transform-translate-x     : 75% !important;
  }

  .xl\:hover\:translate-x-1\/5:hover{
    --transform-translate-x     : 20% !important;
  }

  .xl\:hover\:translate-x-2\/5:hover{
    --transform-translate-x     : 40% !important;
  }

  .xl\:hover\:translate-x-3\/5:hover{
    --transform-translate-x     : 60% !important;
  }

  .xl\:hover\:translate-x-4\/5:hover{
    --transform-translate-x     : 80% !important;
  }

  .xl\:hover\:translate-x-1\/6:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:hover\:translate-x-2\/6:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:hover\:translate-x-3\/6:hover{
    --transform-translate-x     : 50% !important;
  }

  .xl\:hover\:translate-x-4\/6:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:hover\:translate-x-5\/6:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:hover\:translate-x-1\/12:hover{
    --transform-translate-x     : 8.333333% !important;
  }

  .xl\:hover\:translate-x-2\/12:hover{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:hover\:translate-x-3\/12:hover{
    --transform-translate-x     : 25% !important;
  }

  .xl\:hover\:translate-x-4\/12:hover{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:hover\:translate-x-5\/12:hover{
    --transform-translate-x     : 41.666667% !important;
  }

  .xl\:hover\:translate-x-6\/12:hover{
    --transform-translate-x     : 50% !important;
  }

  .xl\:hover\:translate-x-7\/12:hover{
    --transform-translate-x     : 58.333333% !important;
  }

  .xl\:hover\:translate-x-8\/12:hover{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:hover\:translate-x-9\/12:hover{
    --transform-translate-x     : 75% !important;
  }

  .xl\:hover\:translate-x-10\/12:hover{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:hover\:translate-x-11\/12:hover{
    --transform-translate-x     : 91.666667% !important;
  }

  .xl\:hover\:translate-x-full:hover{
    --transform-translate-x     : 100% !important;
  }

  .xl\:hover\:-translate-x-1:hover{
    --transform-translate-x     : -0.25rem !important;
  }

  .xl\:hover\:-translate-x-2:hover{
    --transform-translate-x     : -0.5rem !important;
  }

  .xl\:hover\:-translate-x-3:hover{
    --transform-translate-x     : -0.75rem !important;
  }

  .xl\:hover\:-translate-x-4:hover{
    --transform-translate-x     : -1rem !important;
  }

  .xl\:hover\:-translate-x-5:hover{
    --transform-translate-x     : -1.25rem !important;
  }

  .xl\:hover\:-translate-x-6:hover{
    --transform-translate-x     : -1.5rem !important;
  }

  .xl\:hover\:-translate-x-7:hover{
    --transform-translate-x     : -1.75rem !important;
  }

  .xl\:hover\:-translate-x-8:hover{
    --transform-translate-x     : -2rem !important;
  }

  .xl\:hover\:-translate-x-9:hover{
    --transform-translate-x     : -2.25rem !important;
  }

  .xl\:hover\:-translate-x-10:hover{
    --transform-translate-x     : -2.5rem !important;
  }

  .xl\:hover\:-translate-x-11:hover{
    --transform-translate-x     : -2.75rem !important;
  }

  .xl\:hover\:-translate-x-12:hover{
    --transform-translate-x     : -3rem !important;
  }

  .xl\:hover\:-translate-x-13:hover{
    --transform-translate-x     : -3.25rem !important;
  }

  .xl\:hover\:-translate-x-14:hover{
    --transform-translate-x     : -3.5rem !important;
  }

  .xl\:hover\:-translate-x-15:hover{
    --transform-translate-x     : -3.75rem !important;
  }

  .xl\:hover\:-translate-x-16:hover{
    --transform-translate-x     : -4rem !important;
  }

  .xl\:hover\:-translate-x-20:hover{
    --transform-translate-x     : -5rem !important;
  }

  .xl\:hover\:-translate-x-24:hover{
    --transform-translate-x     : -6rem !important;
  }

  .xl\:hover\:-translate-x-28:hover{
    --transform-translate-x     : -7rem !important;
  }

  .xl\:hover\:-translate-x-32:hover{
    --transform-translate-x     : -8rem !important;
  }

  .xl\:hover\:-translate-x-36:hover{
    --transform-translate-x     : -9rem !important;
  }

  .xl\:hover\:-translate-x-40:hover{
    --transform-translate-x     : -10rem !important;
  }

  .xl\:hover\:-translate-x-44:hover{
    --transform-translate-x     : -11rem !important;
  }

  .xl\:hover\:-translate-x-48:hover{
    --transform-translate-x     : -12rem !important;
  }

  .xl\:hover\:-translate-x-52:hover{
    --transform-translate-x     : -13rem !important;
  }

  .xl\:hover\:-translate-x-56:hover{
    --transform-translate-x     : -14rem !important;
  }

  .xl\:hover\:-translate-x-60:hover{
    --transform-translate-x     : -15rem !important;
  }

  .xl\:hover\:-translate-x-64:hover{
    --transform-translate-x     : -16rem !important;
  }

  .xl\:hover\:-translate-x-72:hover{
    --transform-translate-x     : -18rem !important;
  }

  .xl\:hover\:-translate-x-80:hover{
    --transform-translate-x     : -20rem !important;
  }

  .xl\:hover\:-translate-x-96:hover{
    --transform-translate-x     : -24rem !important;
  }

  .xl\:hover\:-translate-x-px:hover{
    --transform-translate-x     : -1px !important;
  }

  .xl\:hover\:-translate-x-0\.5:hover{
    --transform-translate-x     : -0.125rem !important;
  }

  .xl\:hover\:-translate-x-1\.5:hover{
    --transform-translate-x     : -0.375rem !important;
  }

  .xl\:hover\:-translate-x-2\.5:hover{
    --transform-translate-x     : -0.625rem !important;
  }

  .xl\:hover\:-translate-x-3\.5:hover{
    --transform-translate-x     : -0.875rem !important;
  }

  .xl\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x     : -50% !important;
  }

  .xl\:hover\:-translate-x-1\/3:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:hover\:-translate-x-2\/3:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:hover\:-translate-x-1\/4:hover{
    --transform-translate-x     : -25% !important;
  }

  .xl\:hover\:-translate-x-2\/4:hover{
    --transform-translate-x     : -50% !important;
  }

  .xl\:hover\:-translate-x-3\/4:hover{
    --transform-translate-x     : -75% !important;
  }

  .xl\:hover\:-translate-x-1\/5:hover{
    --transform-translate-x     : -20% !important;
  }

  .xl\:hover\:-translate-x-2\/5:hover{
    --transform-translate-x     : -40% !important;
  }

  .xl\:hover\:-translate-x-3\/5:hover{
    --transform-translate-x     : -60% !important;
  }

  .xl\:hover\:-translate-x-4\/5:hover{
    --transform-translate-x     : -80% !important;
  }

  .xl\:hover\:-translate-x-1\/6:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:hover\:-translate-x-2\/6:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:hover\:-translate-x-3\/6:hover{
    --transform-translate-x     : -50% !important;
  }

  .xl\:hover\:-translate-x-4\/6:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:hover\:-translate-x-5\/6:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:hover\:-translate-x-1\/12:hover{
    --transform-translate-x     : -8.33333% !important;
  }

  .xl\:hover\:-translate-x-2\/12:hover{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:hover\:-translate-x-3\/12:hover{
    --transform-translate-x     : -25% !important;
  }

  .xl\:hover\:-translate-x-4\/12:hover{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:hover\:-translate-x-5\/12:hover{
    --transform-translate-x     : -41.66667% !important;
  }

  .xl\:hover\:-translate-x-6\/12:hover{
    --transform-translate-x     : -50% !important;
  }

  .xl\:hover\:-translate-x-7\/12:hover{
    --transform-translate-x     : -58.33333% !important;
  }

  .xl\:hover\:-translate-x-8\/12:hover{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:hover\:-translate-x-9\/12:hover{
    --transform-translate-x     : -75% !important;
  }

  .xl\:hover\:-translate-x-10\/12:hover{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:hover\:-translate-x-11\/12:hover{
    --transform-translate-x     : -91.66667% !important;
  }

  .xl\:hover\:-translate-x-full:hover{
    --transform-translate-x     : -100% !important;
  }

  .xl\:hover\:translate-y-0:hover{
    --transform-translate-y     : 0 !important;
  }

  .xl\:hover\:translate-y-1:hover{
    --transform-translate-y     : 0.25rem !important;
  }

  .xl\:hover\:translate-y-2:hover{
    --transform-translate-y     : 0.5rem !important;
  }

  .xl\:hover\:translate-y-3:hover{
    --transform-translate-y     : 0.75rem !important;
  }

  .xl\:hover\:translate-y-4:hover{
    --transform-translate-y     : 1rem !important;
  }

  .xl\:hover\:translate-y-5:hover{
    --transform-translate-y     : 1.25rem !important;
  }

  .xl\:hover\:translate-y-6:hover{
    --transform-translate-y     : 1.5rem !important;
  }

  .xl\:hover\:translate-y-7:hover{
    --transform-translate-y     : 1.75rem !important;
  }

  .xl\:hover\:translate-y-8:hover{
    --transform-translate-y     : 2rem !important;
  }

  .xl\:hover\:translate-y-9:hover{
    --transform-translate-y     : 2.25rem !important;
  }

  .xl\:hover\:translate-y-10:hover{
    --transform-translate-y     : 2.5rem !important;
  }

  .xl\:hover\:translate-y-11:hover{
    --transform-translate-y     : 2.75rem !important;
  }

  .xl\:hover\:translate-y-12:hover{
    --transform-translate-y     : 3rem !important;
  }

  .xl\:hover\:translate-y-13:hover{
    --transform-translate-y     : 3.25rem !important;
  }

  .xl\:hover\:translate-y-14:hover{
    --transform-translate-y     : 3.5rem !important;
  }

  .xl\:hover\:translate-y-15:hover{
    --transform-translate-y     : 3.75rem !important;
  }

  .xl\:hover\:translate-y-16:hover{
    --transform-translate-y     : 4rem !important;
  }

  .xl\:hover\:translate-y-20:hover{
    --transform-translate-y     : 5rem !important;
  }

  .xl\:hover\:translate-y-24:hover{
    --transform-translate-y     : 6rem !important;
  }

  .xl\:hover\:translate-y-28:hover{
    --transform-translate-y     : 7rem !important;
  }

  .xl\:hover\:translate-y-32:hover{
    --transform-translate-y     : 8rem !important;
  }

  .xl\:hover\:translate-y-36:hover{
    --transform-translate-y     : 9rem !important;
  }

  .xl\:hover\:translate-y-40:hover{
    --transform-translate-y     : 10rem !important;
  }

  .xl\:hover\:translate-y-44:hover{
    --transform-translate-y     : 11rem !important;
  }

  .xl\:hover\:translate-y-48:hover{
    --transform-translate-y     : 12rem !important;
  }

  .xl\:hover\:translate-y-52:hover{
    --transform-translate-y     : 13rem !important;
  }

  .xl\:hover\:translate-y-56:hover{
    --transform-translate-y     : 14rem !important;
  }

  .xl\:hover\:translate-y-60:hover{
    --transform-translate-y     : 15rem !important;
  }

  .xl\:hover\:translate-y-64:hover{
    --transform-translate-y     : 16rem !important;
  }

  .xl\:hover\:translate-y-72:hover{
    --transform-translate-y     : 18rem !important;
  }

  .xl\:hover\:translate-y-80:hover{
    --transform-translate-y     : 20rem !important;
  }

  .xl\:hover\:translate-y-96:hover{
    --transform-translate-y     : 24rem !important;
  }

  .xl\:hover\:translate-y-px:hover{
    --transform-translate-y     : 1px !important;
  }

  .xl\:hover\:translate-y-0\.5:hover{
    --transform-translate-y     : 0.125rem !important;
  }

  .xl\:hover\:translate-y-1\.5:hover{
    --transform-translate-y     : 0.375rem !important;
  }

  .xl\:hover\:translate-y-2\.5:hover{
    --transform-translate-y     : 0.625rem !important;
  }

  .xl\:hover\:translate-y-3\.5:hover{
    --transform-translate-y     : 0.875rem !important;
  }

  .xl\:hover\:translate-y-1\/2:hover{
    --transform-translate-y     : 50% !important;
  }

  .xl\:hover\:translate-y-1\/3:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:hover\:translate-y-2\/3:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:hover\:translate-y-1\/4:hover{
    --transform-translate-y     : 25% !important;
  }

  .xl\:hover\:translate-y-2\/4:hover{
    --transform-translate-y     : 50% !important;
  }

  .xl\:hover\:translate-y-3\/4:hover{
    --transform-translate-y     : 75% !important;
  }

  .xl\:hover\:translate-y-1\/5:hover{
    --transform-translate-y     : 20% !important;
  }

  .xl\:hover\:translate-y-2\/5:hover{
    --transform-translate-y     : 40% !important;
  }

  .xl\:hover\:translate-y-3\/5:hover{
    --transform-translate-y     : 60% !important;
  }

  .xl\:hover\:translate-y-4\/5:hover{
    --transform-translate-y     : 80% !important;
  }

  .xl\:hover\:translate-y-1\/6:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:hover\:translate-y-2\/6:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:hover\:translate-y-3\/6:hover{
    --transform-translate-y     : 50% !important;
  }

  .xl\:hover\:translate-y-4\/6:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:hover\:translate-y-5\/6:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:hover\:translate-y-1\/12:hover{
    --transform-translate-y     : 8.333333% !important;
  }

  .xl\:hover\:translate-y-2\/12:hover{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:hover\:translate-y-3\/12:hover{
    --transform-translate-y     : 25% !important;
  }

  .xl\:hover\:translate-y-4\/12:hover{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:hover\:translate-y-5\/12:hover{
    --transform-translate-y     : 41.666667% !important;
  }

  .xl\:hover\:translate-y-6\/12:hover{
    --transform-translate-y     : 50% !important;
  }

  .xl\:hover\:translate-y-7\/12:hover{
    --transform-translate-y     : 58.333333% !important;
  }

  .xl\:hover\:translate-y-8\/12:hover{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:hover\:translate-y-9\/12:hover{
    --transform-translate-y     : 75% !important;
  }

  .xl\:hover\:translate-y-10\/12:hover{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:hover\:translate-y-11\/12:hover{
    --transform-translate-y     : 91.666667% !important;
  }

  .xl\:hover\:translate-y-full:hover{
    --transform-translate-y     : 100% !important;
  }

  .xl\:hover\:-translate-y-1:hover{
    --transform-translate-y     : -0.25rem !important;
  }

  .xl\:hover\:-translate-y-2:hover{
    --transform-translate-y     : -0.5rem !important;
  }

  .xl\:hover\:-translate-y-3:hover{
    --transform-translate-y     : -0.75rem !important;
  }

  .xl\:hover\:-translate-y-4:hover{
    --transform-translate-y     : -1rem !important;
  }

  .xl\:hover\:-translate-y-5:hover{
    --transform-translate-y     : -1.25rem !important;
  }

  .xl\:hover\:-translate-y-6:hover{
    --transform-translate-y     : -1.5rem !important;
  }

  .xl\:hover\:-translate-y-7:hover{
    --transform-translate-y     : -1.75rem !important;
  }

  .xl\:hover\:-translate-y-8:hover{
    --transform-translate-y     : -2rem !important;
  }

  .xl\:hover\:-translate-y-9:hover{
    --transform-translate-y     : -2.25rem !important;
  }

  .xl\:hover\:-translate-y-10:hover{
    --transform-translate-y     : -2.5rem !important;
  }

  .xl\:hover\:-translate-y-11:hover{
    --transform-translate-y     : -2.75rem !important;
  }

  .xl\:hover\:-translate-y-12:hover{
    --transform-translate-y     : -3rem !important;
  }

  .xl\:hover\:-translate-y-13:hover{
    --transform-translate-y     : -3.25rem !important;
  }

  .xl\:hover\:-translate-y-14:hover{
    --transform-translate-y     : -3.5rem !important;
  }

  .xl\:hover\:-translate-y-15:hover{
    --transform-translate-y     : -3.75rem !important;
  }

  .xl\:hover\:-translate-y-16:hover{
    --transform-translate-y     : -4rem !important;
  }

  .xl\:hover\:-translate-y-20:hover{
    --transform-translate-y     : -5rem !important;
  }

  .xl\:hover\:-translate-y-24:hover{
    --transform-translate-y     : -6rem !important;
  }

  .xl\:hover\:-translate-y-28:hover{
    --transform-translate-y     : -7rem !important;
  }

  .xl\:hover\:-translate-y-32:hover{
    --transform-translate-y     : -8rem !important;
  }

  .xl\:hover\:-translate-y-36:hover{
    --transform-translate-y     : -9rem !important;
  }

  .xl\:hover\:-translate-y-40:hover{
    --transform-translate-y     : -10rem !important;
  }

  .xl\:hover\:-translate-y-44:hover{
    --transform-translate-y     : -11rem !important;
  }

  .xl\:hover\:-translate-y-48:hover{
    --transform-translate-y     : -12rem !important;
  }

  .xl\:hover\:-translate-y-52:hover{
    --transform-translate-y     : -13rem !important;
  }

  .xl\:hover\:-translate-y-56:hover{
    --transform-translate-y     : -14rem !important;
  }

  .xl\:hover\:-translate-y-60:hover{
    --transform-translate-y     : -15rem !important;
  }

  .xl\:hover\:-translate-y-64:hover{
    --transform-translate-y     : -16rem !important;
  }

  .xl\:hover\:-translate-y-72:hover{
    --transform-translate-y     : -18rem !important;
  }

  .xl\:hover\:-translate-y-80:hover{
    --transform-translate-y     : -20rem !important;
  }

  .xl\:hover\:-translate-y-96:hover{
    --transform-translate-y     : -24rem !important;
  }

  .xl\:hover\:-translate-y-px:hover{
    --transform-translate-y     : -1px !important;
  }

  .xl\:hover\:-translate-y-0\.5:hover{
    --transform-translate-y     : -0.125rem !important;
  }

  .xl\:hover\:-translate-y-1\.5:hover{
    --transform-translate-y     : -0.375rem !important;
  }

  .xl\:hover\:-translate-y-2\.5:hover{
    --transform-translate-y     : -0.625rem !important;
  }

  .xl\:hover\:-translate-y-3\.5:hover{
    --transform-translate-y     : -0.875rem !important;
  }

  .xl\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y     : -50% !important;
  }

  .xl\:hover\:-translate-y-1\/3:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:hover\:-translate-y-2\/3:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:hover\:-translate-y-1\/4:hover{
    --transform-translate-y     : -25% !important;
  }

  .xl\:hover\:-translate-y-2\/4:hover{
    --transform-translate-y     : -50% !important;
  }

  .xl\:hover\:-translate-y-3\/4:hover{
    --transform-translate-y     : -75% !important;
  }

  .xl\:hover\:-translate-y-1\/5:hover{
    --transform-translate-y     : -20% !important;
  }

  .xl\:hover\:-translate-y-2\/5:hover{
    --transform-translate-y     : -40% !important;
  }

  .xl\:hover\:-translate-y-3\/5:hover{
    --transform-translate-y     : -60% !important;
  }

  .xl\:hover\:-translate-y-4\/5:hover{
    --transform-translate-y     : -80% !important;
  }

  .xl\:hover\:-translate-y-1\/6:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:hover\:-translate-y-2\/6:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:hover\:-translate-y-3\/6:hover{
    --transform-translate-y     : -50% !important;
  }

  .xl\:hover\:-translate-y-4\/6:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:hover\:-translate-y-5\/6:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:hover\:-translate-y-1\/12:hover{
    --transform-translate-y     : -8.33333% !important;
  }

  .xl\:hover\:-translate-y-2\/12:hover{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:hover\:-translate-y-3\/12:hover{
    --transform-translate-y     : -25% !important;
  }

  .xl\:hover\:-translate-y-4\/12:hover{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:hover\:-translate-y-5\/12:hover{
    --transform-translate-y     : -41.66667% !important;
  }

  .xl\:hover\:-translate-y-6\/12:hover{
    --transform-translate-y     : -50% !important;
  }

  .xl\:hover\:-translate-y-7\/12:hover{
    --transform-translate-y     : -58.33333% !important;
  }

  .xl\:hover\:-translate-y-8\/12:hover{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:hover\:-translate-y-9\/12:hover{
    --transform-translate-y     : -75% !important;
  }

  .xl\:hover\:-translate-y-10\/12:hover{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:hover\:-translate-y-11\/12:hover{
    --transform-translate-y     : -91.66667% !important;
  }

  .xl\:hover\:-translate-y-full:hover{
    --transform-translate-y     : -100% !important;
  }

  .xl\:focus\:translate-x-0:focus{
    --transform-translate-x     : 0 !important;
  }

  .xl\:focus\:translate-x-1:focus{
    --transform-translate-x     : 0.25rem !important;
  }

  .xl\:focus\:translate-x-2:focus{
    --transform-translate-x     : 0.5rem !important;
  }

  .xl\:focus\:translate-x-3:focus{
    --transform-translate-x     : 0.75rem !important;
  }

  .xl\:focus\:translate-x-4:focus{
    --transform-translate-x     : 1rem !important;
  }

  .xl\:focus\:translate-x-5:focus{
    --transform-translate-x     : 1.25rem !important;
  }

  .xl\:focus\:translate-x-6:focus{
    --transform-translate-x     : 1.5rem !important;
  }

  .xl\:focus\:translate-x-7:focus{
    --transform-translate-x     : 1.75rem !important;
  }

  .xl\:focus\:translate-x-8:focus{
    --transform-translate-x     : 2rem !important;
  }

  .xl\:focus\:translate-x-9:focus{
    --transform-translate-x     : 2.25rem !important;
  }

  .xl\:focus\:translate-x-10:focus{
    --transform-translate-x     : 2.5rem !important;
  }

  .xl\:focus\:translate-x-11:focus{
    --transform-translate-x     : 2.75rem !important;
  }

  .xl\:focus\:translate-x-12:focus{
    --transform-translate-x     : 3rem !important;
  }

  .xl\:focus\:translate-x-13:focus{
    --transform-translate-x     : 3.25rem !important;
  }

  .xl\:focus\:translate-x-14:focus{
    --transform-translate-x     : 3.5rem !important;
  }

  .xl\:focus\:translate-x-15:focus{
    --transform-translate-x     : 3.75rem !important;
  }

  .xl\:focus\:translate-x-16:focus{
    --transform-translate-x     : 4rem !important;
  }

  .xl\:focus\:translate-x-20:focus{
    --transform-translate-x     : 5rem !important;
  }

  .xl\:focus\:translate-x-24:focus{
    --transform-translate-x     : 6rem !important;
  }

  .xl\:focus\:translate-x-28:focus{
    --transform-translate-x     : 7rem !important;
  }

  .xl\:focus\:translate-x-32:focus{
    --transform-translate-x     : 8rem !important;
  }

  .xl\:focus\:translate-x-36:focus{
    --transform-translate-x     : 9rem !important;
  }

  .xl\:focus\:translate-x-40:focus{
    --transform-translate-x     : 10rem !important;
  }

  .xl\:focus\:translate-x-44:focus{
    --transform-translate-x     : 11rem !important;
  }

  .xl\:focus\:translate-x-48:focus{
    --transform-translate-x     : 12rem !important;
  }

  .xl\:focus\:translate-x-52:focus{
    --transform-translate-x     : 13rem !important;
  }

  .xl\:focus\:translate-x-56:focus{
    --transform-translate-x     : 14rem !important;
  }

  .xl\:focus\:translate-x-60:focus{
    --transform-translate-x     : 15rem !important;
  }

  .xl\:focus\:translate-x-64:focus{
    --transform-translate-x     : 16rem !important;
  }

  .xl\:focus\:translate-x-72:focus{
    --transform-translate-x     : 18rem !important;
  }

  .xl\:focus\:translate-x-80:focus{
    --transform-translate-x     : 20rem !important;
  }

  .xl\:focus\:translate-x-96:focus{
    --transform-translate-x     : 24rem !important;
  }

  .xl\:focus\:translate-x-px:focus{
    --transform-translate-x     : 1px !important;
  }

  .xl\:focus\:translate-x-0\.5:focus{
    --transform-translate-x     : 0.125rem !important;
  }

  .xl\:focus\:translate-x-1\.5:focus{
    --transform-translate-x     : 0.375rem !important;
  }

  .xl\:focus\:translate-x-2\.5:focus{
    --transform-translate-x     : 0.625rem !important;
  }

  .xl\:focus\:translate-x-3\.5:focus{
    --transform-translate-x     : 0.875rem !important;
  }

  .xl\:focus\:translate-x-1\/2:focus{
    --transform-translate-x     : 50% !important;
  }

  .xl\:focus\:translate-x-1\/3:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:focus\:translate-x-2\/3:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:focus\:translate-x-1\/4:focus{
    --transform-translate-x     : 25% !important;
  }

  .xl\:focus\:translate-x-2\/4:focus{
    --transform-translate-x     : 50% !important;
  }

  .xl\:focus\:translate-x-3\/4:focus{
    --transform-translate-x     : 75% !important;
  }

  .xl\:focus\:translate-x-1\/5:focus{
    --transform-translate-x     : 20% !important;
  }

  .xl\:focus\:translate-x-2\/5:focus{
    --transform-translate-x     : 40% !important;
  }

  .xl\:focus\:translate-x-3\/5:focus{
    --transform-translate-x     : 60% !important;
  }

  .xl\:focus\:translate-x-4\/5:focus{
    --transform-translate-x     : 80% !important;
  }

  .xl\:focus\:translate-x-1\/6:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:focus\:translate-x-2\/6:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:focus\:translate-x-3\/6:focus{
    --transform-translate-x     : 50% !important;
  }

  .xl\:focus\:translate-x-4\/6:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:focus\:translate-x-5\/6:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:focus\:translate-x-1\/12:focus{
    --transform-translate-x     : 8.333333% !important;
  }

  .xl\:focus\:translate-x-2\/12:focus{
    --transform-translate-x     : 16.666667% !important;
  }

  .xl\:focus\:translate-x-3\/12:focus{
    --transform-translate-x     : 25% !important;
  }

  .xl\:focus\:translate-x-4\/12:focus{
    --transform-translate-x     : 33.333333% !important;
  }

  .xl\:focus\:translate-x-5\/12:focus{
    --transform-translate-x     : 41.666667% !important;
  }

  .xl\:focus\:translate-x-6\/12:focus{
    --transform-translate-x     : 50% !important;
  }

  .xl\:focus\:translate-x-7\/12:focus{
    --transform-translate-x     : 58.333333% !important;
  }

  .xl\:focus\:translate-x-8\/12:focus{
    --transform-translate-x     : 66.666667% !important;
  }

  .xl\:focus\:translate-x-9\/12:focus{
    --transform-translate-x     : 75% !important;
  }

  .xl\:focus\:translate-x-10\/12:focus{
    --transform-translate-x     : 83.333333% !important;
  }

  .xl\:focus\:translate-x-11\/12:focus{
    --transform-translate-x     : 91.666667% !important;
  }

  .xl\:focus\:translate-x-full:focus{
    --transform-translate-x     : 100% !important;
  }

  .xl\:focus\:-translate-x-1:focus{
    --transform-translate-x     : -0.25rem !important;
  }

  .xl\:focus\:-translate-x-2:focus{
    --transform-translate-x     : -0.5rem !important;
  }

  .xl\:focus\:-translate-x-3:focus{
    --transform-translate-x     : -0.75rem !important;
  }

  .xl\:focus\:-translate-x-4:focus{
    --transform-translate-x     : -1rem !important;
  }

  .xl\:focus\:-translate-x-5:focus{
    --transform-translate-x     : -1.25rem !important;
  }

  .xl\:focus\:-translate-x-6:focus{
    --transform-translate-x     : -1.5rem !important;
  }

  .xl\:focus\:-translate-x-7:focus{
    --transform-translate-x     : -1.75rem !important;
  }

  .xl\:focus\:-translate-x-8:focus{
    --transform-translate-x     : -2rem !important;
  }

  .xl\:focus\:-translate-x-9:focus{
    --transform-translate-x     : -2.25rem !important;
  }

  .xl\:focus\:-translate-x-10:focus{
    --transform-translate-x     : -2.5rem !important;
  }

  .xl\:focus\:-translate-x-11:focus{
    --transform-translate-x     : -2.75rem !important;
  }

  .xl\:focus\:-translate-x-12:focus{
    --transform-translate-x     : -3rem !important;
  }

  .xl\:focus\:-translate-x-13:focus{
    --transform-translate-x     : -3.25rem !important;
  }

  .xl\:focus\:-translate-x-14:focus{
    --transform-translate-x     : -3.5rem !important;
  }

  .xl\:focus\:-translate-x-15:focus{
    --transform-translate-x     : -3.75rem !important;
  }

  .xl\:focus\:-translate-x-16:focus{
    --transform-translate-x     : -4rem !important;
  }

  .xl\:focus\:-translate-x-20:focus{
    --transform-translate-x     : -5rem !important;
  }

  .xl\:focus\:-translate-x-24:focus{
    --transform-translate-x     : -6rem !important;
  }

  .xl\:focus\:-translate-x-28:focus{
    --transform-translate-x     : -7rem !important;
  }

  .xl\:focus\:-translate-x-32:focus{
    --transform-translate-x     : -8rem !important;
  }

  .xl\:focus\:-translate-x-36:focus{
    --transform-translate-x     : -9rem !important;
  }

  .xl\:focus\:-translate-x-40:focus{
    --transform-translate-x     : -10rem !important;
  }

  .xl\:focus\:-translate-x-44:focus{
    --transform-translate-x     : -11rem !important;
  }

  .xl\:focus\:-translate-x-48:focus{
    --transform-translate-x     : -12rem !important;
  }

  .xl\:focus\:-translate-x-52:focus{
    --transform-translate-x     : -13rem !important;
  }

  .xl\:focus\:-translate-x-56:focus{
    --transform-translate-x     : -14rem !important;
  }

  .xl\:focus\:-translate-x-60:focus{
    --transform-translate-x     : -15rem !important;
  }

  .xl\:focus\:-translate-x-64:focus{
    --transform-translate-x     : -16rem !important;
  }

  .xl\:focus\:-translate-x-72:focus{
    --transform-translate-x     : -18rem !important;
  }

  .xl\:focus\:-translate-x-80:focus{
    --transform-translate-x     : -20rem !important;
  }

  .xl\:focus\:-translate-x-96:focus{
    --transform-translate-x     : -24rem !important;
  }

  .xl\:focus\:-translate-x-px:focus{
    --transform-translate-x     : -1px !important;
  }

  .xl\:focus\:-translate-x-0\.5:focus{
    --transform-translate-x     : -0.125rem !important;
  }

  .xl\:focus\:-translate-x-1\.5:focus{
    --transform-translate-x     : -0.375rem !important;
  }

  .xl\:focus\:-translate-x-2\.5:focus{
    --transform-translate-x     : -0.625rem !important;
  }

  .xl\:focus\:-translate-x-3\.5:focus{
    --transform-translate-x     : -0.875rem !important;
  }

  .xl\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x     : -50% !important;
  }

  .xl\:focus\:-translate-x-1\/3:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:focus\:-translate-x-2\/3:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:focus\:-translate-x-1\/4:focus{
    --transform-translate-x     : -25% !important;
  }

  .xl\:focus\:-translate-x-2\/4:focus{
    --transform-translate-x     : -50% !important;
  }

  .xl\:focus\:-translate-x-3\/4:focus{
    --transform-translate-x     : -75% !important;
  }

  .xl\:focus\:-translate-x-1\/5:focus{
    --transform-translate-x     : -20% !important;
  }

  .xl\:focus\:-translate-x-2\/5:focus{
    --transform-translate-x     : -40% !important;
  }

  .xl\:focus\:-translate-x-3\/5:focus{
    --transform-translate-x     : -60% !important;
  }

  .xl\:focus\:-translate-x-4\/5:focus{
    --transform-translate-x     : -80% !important;
  }

  .xl\:focus\:-translate-x-1\/6:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:focus\:-translate-x-2\/6:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:focus\:-translate-x-3\/6:focus{
    --transform-translate-x     : -50% !important;
  }

  .xl\:focus\:-translate-x-4\/6:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:focus\:-translate-x-5\/6:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:focus\:-translate-x-1\/12:focus{
    --transform-translate-x     : -8.33333% !important;
  }

  .xl\:focus\:-translate-x-2\/12:focus{
    --transform-translate-x     : -16.66667% !important;
  }

  .xl\:focus\:-translate-x-3\/12:focus{
    --transform-translate-x     : -25% !important;
  }

  .xl\:focus\:-translate-x-4\/12:focus{
    --transform-translate-x     : -33.33333% !important;
  }

  .xl\:focus\:-translate-x-5\/12:focus{
    --transform-translate-x     : -41.66667% !important;
  }

  .xl\:focus\:-translate-x-6\/12:focus{
    --transform-translate-x     : -50% !important;
  }

  .xl\:focus\:-translate-x-7\/12:focus{
    --transform-translate-x     : -58.33333% !important;
  }

  .xl\:focus\:-translate-x-8\/12:focus{
    --transform-translate-x     : -66.66667% !important;
  }

  .xl\:focus\:-translate-x-9\/12:focus{
    --transform-translate-x     : -75% !important;
  }

  .xl\:focus\:-translate-x-10\/12:focus{
    --transform-translate-x     : -83.33333% !important;
  }

  .xl\:focus\:-translate-x-11\/12:focus{
    --transform-translate-x     : -91.66667% !important;
  }

  .xl\:focus\:-translate-x-full:focus{
    --transform-translate-x     : -100% !important;
  }

  .xl\:focus\:translate-y-0:focus{
    --transform-translate-y     : 0 !important;
  }

  .xl\:focus\:translate-y-1:focus{
    --transform-translate-y     : 0.25rem !important;
  }

  .xl\:focus\:translate-y-2:focus{
    --transform-translate-y     : 0.5rem !important;
  }

  .xl\:focus\:translate-y-3:focus{
    --transform-translate-y     : 0.75rem !important;
  }

  .xl\:focus\:translate-y-4:focus{
    --transform-translate-y     : 1rem !important;
  }

  .xl\:focus\:translate-y-5:focus{
    --transform-translate-y     : 1.25rem !important;
  }

  .xl\:focus\:translate-y-6:focus{
    --transform-translate-y     : 1.5rem !important;
  }

  .xl\:focus\:translate-y-7:focus{
    --transform-translate-y     : 1.75rem !important;
  }

  .xl\:focus\:translate-y-8:focus{
    --transform-translate-y     : 2rem !important;
  }

  .xl\:focus\:translate-y-9:focus{
    --transform-translate-y     : 2.25rem !important;
  }

  .xl\:focus\:translate-y-10:focus{
    --transform-translate-y     : 2.5rem !important;
  }

  .xl\:focus\:translate-y-11:focus{
    --transform-translate-y     : 2.75rem !important;
  }

  .xl\:focus\:translate-y-12:focus{
    --transform-translate-y     : 3rem !important;
  }

  .xl\:focus\:translate-y-13:focus{
    --transform-translate-y     : 3.25rem !important;
  }

  .xl\:focus\:translate-y-14:focus{
    --transform-translate-y     : 3.5rem !important;
  }

  .xl\:focus\:translate-y-15:focus{
    --transform-translate-y     : 3.75rem !important;
  }

  .xl\:focus\:translate-y-16:focus{
    --transform-translate-y     : 4rem !important;
  }

  .xl\:focus\:translate-y-20:focus{
    --transform-translate-y     : 5rem !important;
  }

  .xl\:focus\:translate-y-24:focus{
    --transform-translate-y     : 6rem !important;
  }

  .xl\:focus\:translate-y-28:focus{
    --transform-translate-y     : 7rem !important;
  }

  .xl\:focus\:translate-y-32:focus{
    --transform-translate-y     : 8rem !important;
  }

  .xl\:focus\:translate-y-36:focus{
    --transform-translate-y     : 9rem !important;
  }

  .xl\:focus\:translate-y-40:focus{
    --transform-translate-y     : 10rem !important;
  }

  .xl\:focus\:translate-y-44:focus{
    --transform-translate-y     : 11rem !important;
  }

  .xl\:focus\:translate-y-48:focus{
    --transform-translate-y     : 12rem !important;
  }

  .xl\:focus\:translate-y-52:focus{
    --transform-translate-y     : 13rem !important;
  }

  .xl\:focus\:translate-y-56:focus{
    --transform-translate-y     : 14rem !important;
  }

  .xl\:focus\:translate-y-60:focus{
    --transform-translate-y     : 15rem !important;
  }

  .xl\:focus\:translate-y-64:focus{
    --transform-translate-y     : 16rem !important;
  }

  .xl\:focus\:translate-y-72:focus{
    --transform-translate-y     : 18rem !important;
  }

  .xl\:focus\:translate-y-80:focus{
    --transform-translate-y     : 20rem !important;
  }

  .xl\:focus\:translate-y-96:focus{
    --transform-translate-y     : 24rem !important;
  }

  .xl\:focus\:translate-y-px:focus{
    --transform-translate-y     : 1px !important;
  }

  .xl\:focus\:translate-y-0\.5:focus{
    --transform-translate-y     : 0.125rem !important;
  }

  .xl\:focus\:translate-y-1\.5:focus{
    --transform-translate-y     : 0.375rem !important;
  }

  .xl\:focus\:translate-y-2\.5:focus{
    --transform-translate-y     : 0.625rem !important;
  }

  .xl\:focus\:translate-y-3\.5:focus{
    --transform-translate-y     : 0.875rem !important;
  }

  .xl\:focus\:translate-y-1\/2:focus{
    --transform-translate-y     : 50% !important;
  }

  .xl\:focus\:translate-y-1\/3:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:focus\:translate-y-2\/3:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:focus\:translate-y-1\/4:focus{
    --transform-translate-y     : 25% !important;
  }

  .xl\:focus\:translate-y-2\/4:focus{
    --transform-translate-y     : 50% !important;
  }

  .xl\:focus\:translate-y-3\/4:focus{
    --transform-translate-y     : 75% !important;
  }

  .xl\:focus\:translate-y-1\/5:focus{
    --transform-translate-y     : 20% !important;
  }

  .xl\:focus\:translate-y-2\/5:focus{
    --transform-translate-y     : 40% !important;
  }

  .xl\:focus\:translate-y-3\/5:focus{
    --transform-translate-y     : 60% !important;
  }

  .xl\:focus\:translate-y-4\/5:focus{
    --transform-translate-y     : 80% !important;
  }

  .xl\:focus\:translate-y-1\/6:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:focus\:translate-y-2\/6:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:focus\:translate-y-3\/6:focus{
    --transform-translate-y     : 50% !important;
  }

  .xl\:focus\:translate-y-4\/6:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:focus\:translate-y-5\/6:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:focus\:translate-y-1\/12:focus{
    --transform-translate-y     : 8.333333% !important;
  }

  .xl\:focus\:translate-y-2\/12:focus{
    --transform-translate-y     : 16.666667% !important;
  }

  .xl\:focus\:translate-y-3\/12:focus{
    --transform-translate-y     : 25% !important;
  }

  .xl\:focus\:translate-y-4\/12:focus{
    --transform-translate-y     : 33.333333% !important;
  }

  .xl\:focus\:translate-y-5\/12:focus{
    --transform-translate-y     : 41.666667% !important;
  }

  .xl\:focus\:translate-y-6\/12:focus{
    --transform-translate-y     : 50% !important;
  }

  .xl\:focus\:translate-y-7\/12:focus{
    --transform-translate-y     : 58.333333% !important;
  }

  .xl\:focus\:translate-y-8\/12:focus{
    --transform-translate-y     : 66.666667% !important;
  }

  .xl\:focus\:translate-y-9\/12:focus{
    --transform-translate-y     : 75% !important;
  }

  .xl\:focus\:translate-y-10\/12:focus{
    --transform-translate-y     : 83.333333% !important;
  }

  .xl\:focus\:translate-y-11\/12:focus{
    --transform-translate-y     : 91.666667% !important;
  }

  .xl\:focus\:translate-y-full:focus{
    --transform-translate-y     : 100% !important;
  }

  .xl\:focus\:-translate-y-1:focus{
    --transform-translate-y     : -0.25rem !important;
  }

  .xl\:focus\:-translate-y-2:focus{
    --transform-translate-y     : -0.5rem !important;
  }

  .xl\:focus\:-translate-y-3:focus{
    --transform-translate-y     : -0.75rem !important;
  }

  .xl\:focus\:-translate-y-4:focus{
    --transform-translate-y     : -1rem !important;
  }

  .xl\:focus\:-translate-y-5:focus{
    --transform-translate-y     : -1.25rem !important;
  }

  .xl\:focus\:-translate-y-6:focus{
    --transform-translate-y     : -1.5rem !important;
  }

  .xl\:focus\:-translate-y-7:focus{
    --transform-translate-y     : -1.75rem !important;
  }

  .xl\:focus\:-translate-y-8:focus{
    --transform-translate-y     : -2rem !important;
  }

  .xl\:focus\:-translate-y-9:focus{
    --transform-translate-y     : -2.25rem !important;
  }

  .xl\:focus\:-translate-y-10:focus{
    --transform-translate-y     : -2.5rem !important;
  }

  .xl\:focus\:-translate-y-11:focus{
    --transform-translate-y     : -2.75rem !important;
  }

  .xl\:focus\:-translate-y-12:focus{
    --transform-translate-y     : -3rem !important;
  }

  .xl\:focus\:-translate-y-13:focus{
    --transform-translate-y     : -3.25rem !important;
  }

  .xl\:focus\:-translate-y-14:focus{
    --transform-translate-y     : -3.5rem !important;
  }

  .xl\:focus\:-translate-y-15:focus{
    --transform-translate-y     : -3.75rem !important;
  }

  .xl\:focus\:-translate-y-16:focus{
    --transform-translate-y     : -4rem !important;
  }

  .xl\:focus\:-translate-y-20:focus{
    --transform-translate-y     : -5rem !important;
  }

  .xl\:focus\:-translate-y-24:focus{
    --transform-translate-y     : -6rem !important;
  }

  .xl\:focus\:-translate-y-28:focus{
    --transform-translate-y     : -7rem !important;
  }

  .xl\:focus\:-translate-y-32:focus{
    --transform-translate-y     : -8rem !important;
  }

  .xl\:focus\:-translate-y-36:focus{
    --transform-translate-y     : -9rem !important;
  }

  .xl\:focus\:-translate-y-40:focus{
    --transform-translate-y     : -10rem !important;
  }

  .xl\:focus\:-translate-y-44:focus{
    --transform-translate-y     : -11rem !important;
  }

  .xl\:focus\:-translate-y-48:focus{
    --transform-translate-y     : -12rem !important;
  }

  .xl\:focus\:-translate-y-52:focus{
    --transform-translate-y     : -13rem !important;
  }

  .xl\:focus\:-translate-y-56:focus{
    --transform-translate-y     : -14rem !important;
  }

  .xl\:focus\:-translate-y-60:focus{
    --transform-translate-y     : -15rem !important;
  }

  .xl\:focus\:-translate-y-64:focus{
    --transform-translate-y     : -16rem !important;
  }

  .xl\:focus\:-translate-y-72:focus{
    --transform-translate-y     : -18rem !important;
  }

  .xl\:focus\:-translate-y-80:focus{
    --transform-translate-y     : -20rem !important;
  }

  .xl\:focus\:-translate-y-96:focus{
    --transform-translate-y     : -24rem !important;
  }

  .xl\:focus\:-translate-y-px:focus{
    --transform-translate-y     : -1px !important;
  }

  .xl\:focus\:-translate-y-0\.5:focus{
    --transform-translate-y     : -0.125rem !important;
  }

  .xl\:focus\:-translate-y-1\.5:focus{
    --transform-translate-y     : -0.375rem !important;
  }

  .xl\:focus\:-translate-y-2\.5:focus{
    --transform-translate-y     : -0.625rem !important;
  }

  .xl\:focus\:-translate-y-3\.5:focus{
    --transform-translate-y     : -0.875rem !important;
  }

  .xl\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y     : -50% !important;
  }

  .xl\:focus\:-translate-y-1\/3:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:focus\:-translate-y-2\/3:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:focus\:-translate-y-1\/4:focus{
    --transform-translate-y     : -25% !important;
  }

  .xl\:focus\:-translate-y-2\/4:focus{
    --transform-translate-y     : -50% !important;
  }

  .xl\:focus\:-translate-y-3\/4:focus{
    --transform-translate-y     : -75% !important;
  }

  .xl\:focus\:-translate-y-1\/5:focus{
    --transform-translate-y     : -20% !important;
  }

  .xl\:focus\:-translate-y-2\/5:focus{
    --transform-translate-y     : -40% !important;
  }

  .xl\:focus\:-translate-y-3\/5:focus{
    --transform-translate-y     : -60% !important;
  }

  .xl\:focus\:-translate-y-4\/5:focus{
    --transform-translate-y     : -80% !important;
  }

  .xl\:focus\:-translate-y-1\/6:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:focus\:-translate-y-2\/6:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:focus\:-translate-y-3\/6:focus{
    --transform-translate-y     : -50% !important;
  }

  .xl\:focus\:-translate-y-4\/6:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:focus\:-translate-y-5\/6:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:focus\:-translate-y-1\/12:focus{
    --transform-translate-y     : -8.33333% !important;
  }

  .xl\:focus\:-translate-y-2\/12:focus{
    --transform-translate-y     : -16.66667% !important;
  }

  .xl\:focus\:-translate-y-3\/12:focus{
    --transform-translate-y     : -25% !important;
  }

  .xl\:focus\:-translate-y-4\/12:focus{
    --transform-translate-y     : -33.33333% !important;
  }

  .xl\:focus\:-translate-y-5\/12:focus{
    --transform-translate-y     : -41.66667% !important;
  }

  .xl\:focus\:-translate-y-6\/12:focus{
    --transform-translate-y     : -50% !important;
  }

  .xl\:focus\:-translate-y-7\/12:focus{
    --transform-translate-y     : -58.33333% !important;
  }

  .xl\:focus\:-translate-y-8\/12:focus{
    --transform-translate-y     : -66.66667% !important;
  }

  .xl\:focus\:-translate-y-9\/12:focus{
    --transform-translate-y     : -75% !important;
  }

  .xl\:focus\:-translate-y-10\/12:focus{
    --transform-translate-y     : -83.33333% !important;
  }

  .xl\:focus\:-translate-y-11\/12:focus{
    --transform-translate-y     : -91.66667% !important;
  }

  .xl\:focus\:-translate-y-full:focus{
    --transform-translate-y     : -100% !important;
  }

  .xl\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .xl\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .xl\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .xl\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .xl\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .xl\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .xl\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .xl\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .xl\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .xl\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .xl\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .xl\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .xl\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .xl\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .group:hover .xl\:group-hover\:skew-x-0{
    --transform-skew-x     : 0 !important;
  }

  .group:hover .xl\:group-hover\:skew-x-3{
    --transform-skew-x     : 3deg !important;
  }

  .group:hover .xl\:group-hover\:skew-x-6{
    --transform-skew-x     : 6deg !important;
  }

  .group:hover .xl\:group-hover\:skew-x-12{
    --transform-skew-x     : 12deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-x-12{
    --transform-skew-x     : -12deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-x-6{
    --transform-skew-x     : -6deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-x-3{
    --transform-skew-x     : -3deg !important;
  }

  .group:hover .xl\:group-hover\:skew-y-0{
    --transform-skew-y     : 0 !important;
  }

  .group:hover .xl\:group-hover\:skew-y-3{
    --transform-skew-y     : 3deg !important;
  }

  .group:hover .xl\:group-hover\:skew-y-6{
    --transform-skew-y     : 6deg !important;
  }

  .group:hover .xl\:group-hover\:skew-y-12{
    --transform-skew-y     : 12deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-y-12{
    --transform-skew-y     : -12deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-y-6{
    --transform-skew-y     : -6deg !important;
  }

  .group:hover .xl\:group-hover\:-skew-y-3{
    --transform-skew-y     : -3deg !important;
  }

  .xl\:hover\:skew-x-0:hover{
    --transform-skew-x     : 0 !important;
  }

  .xl\:hover\:skew-x-3:hover{
    --transform-skew-x     : 3deg !important;
  }

  .xl\:hover\:skew-x-6:hover{
    --transform-skew-x     : 6deg !important;
  }

  .xl\:hover\:skew-x-12:hover{
    --transform-skew-x     : 12deg !important;
  }

  .xl\:hover\:-skew-x-12:hover{
    --transform-skew-x     : -12deg !important;
  }

  .xl\:hover\:-skew-x-6:hover{
    --transform-skew-x     : -6deg !important;
  }

  .xl\:hover\:-skew-x-3:hover{
    --transform-skew-x     : -3deg !important;
  }

  .xl\:hover\:skew-y-0:hover{
    --transform-skew-y     : 0 !important;
  }

  .xl\:hover\:skew-y-3:hover{
    --transform-skew-y     : 3deg !important;
  }

  .xl\:hover\:skew-y-6:hover{
    --transform-skew-y     : 6deg !important;
  }

  .xl\:hover\:skew-y-12:hover{
    --transform-skew-y     : 12deg !important;
  }

  .xl\:hover\:-skew-y-12:hover{
    --transform-skew-y     : -12deg !important;
  }

  .xl\:hover\:-skew-y-6:hover{
    --transform-skew-y     : -6deg !important;
  }

  .xl\:hover\:-skew-y-3:hover{
    --transform-skew-y     : -3deg !important;
  }

  .xl\:focus\:skew-x-0:focus{
    --transform-skew-x     : 0 !important;
  }

  .xl\:focus\:skew-x-3:focus{
    --transform-skew-x     : 3deg !important;
  }

  .xl\:focus\:skew-x-6:focus{
    --transform-skew-x     : 6deg !important;
  }

  .xl\:focus\:skew-x-12:focus{
    --transform-skew-x     : 12deg !important;
  }

  .xl\:focus\:-skew-x-12:focus{
    --transform-skew-x     : -12deg !important;
  }

  .xl\:focus\:-skew-x-6:focus{
    --transform-skew-x     : -6deg !important;
  }

  .xl\:focus\:-skew-x-3:focus{
    --transform-skew-x     : -3deg !important;
  }

  .xl\:focus\:skew-y-0:focus{
    --transform-skew-y     : 0 !important;
  }

  .xl\:focus\:skew-y-3:focus{
    --transform-skew-y     : 3deg !important;
  }

  .xl\:focus\:skew-y-6:focus{
    --transform-skew-y     : 6deg !important;
  }

  .xl\:focus\:skew-y-12:focus{
    --transform-skew-y     : 12deg !important;
  }

  .xl\:focus\:-skew-y-12:focus{
    --transform-skew-y     : -12deg !important;
  }

  .xl\:focus\:-skew-y-6:focus{
    --transform-skew-y     : -6deg !important;
  }

  .xl\:focus\:-skew-y-3:focus{
    --transform-skew-y     : -3deg !important;
  }

  .xl\:transition-none{
    transition-property     : none !important;
  }

  .xl\:transition-all{
    transition-property     : all !important;
  }

  .xl\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .xl\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .xl\:transition-opacity{
    transition-property     : opacity !important;
  }

  .xl\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .xl\:transition-transform{
    transition-property     : transform !important;
  }

  .group:hover .xl\:group-hover\:transition-none{
    transition-property     : none !important;
  }

  .group:hover .xl\:group-hover\:transition-all{
    transition-property     : all !important;
  }

  .group:hover .xl\:group-hover\:transition{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .group:hover .xl\:group-hover\:transition-colors{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .group:hover .xl\:group-hover\:transition-opacity{
    transition-property     : opacity !important;
  }

  .group:hover .xl\:group-hover\:transition-shadow{
    transition-property     : box-shadow !important;
  }

  .group:hover .xl\:group-hover\:transition-transform{
    transition-property     : transform !important;
  }

  .xl\:hover\:transition-none:hover{
    transition-property     : none !important;
  }

  .xl\:hover\:transition-all:hover{
    transition-property     : all !important;
  }

  .xl\:hover\:transition:hover{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .xl\:hover\:transition-colors:hover{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .xl\:hover\:transition-opacity:hover{
    transition-property     : opacity !important;
  }

  .xl\:hover\:transition-shadow:hover{
    transition-property     : box-shadow !important;
  }

  .xl\:hover\:transition-transform:hover{
    transition-property     : transform !important;
  }

  .xl\:focus\:transition-none:focus{
    transition-property     : none !important;
  }

  .xl\:focus\:transition-all:focus{
    transition-property     : all !important;
  }

  .xl\:focus\:transition:focus{
    transition-property     : background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .xl\:focus\:transition-colors:focus{
    transition-property     : background-color, border-color, color, fill, stroke !important;
  }

  .xl\:focus\:transition-opacity:focus{
    transition-property     : opacity !important;
  }

  .xl\:focus\:transition-shadow:focus{
    transition-property     : box-shadow !important;
  }

  .xl\:focus\:transition-transform:focus{
    transition-property     : transform !important;
  }

  .xl\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .xl\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .xl\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .xl\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .group:hover .xl\:group-hover\:ease-linear{
    transition-timing-function     : linear !important;
  }

  .group:hover .xl\:group-hover\:ease-in{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .group:hover .xl\:group-hover\:ease-out{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .group:hover .xl\:group-hover\:ease-in-out{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .xl\:hover\:ease-linear:hover{
    transition-timing-function     : linear !important;
  }

  .xl\:hover\:ease-in:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .xl\:hover\:ease-out:hover{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .xl\:hover\:ease-in-out:hover{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .xl\:focus\:ease-linear:focus{
    transition-timing-function     : linear !important;
  }

  .xl\:focus\:ease-in:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .xl\:focus\:ease-out:focus{
    transition-timing-function     : cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .xl\:focus\:ease-in-out:focus{
    transition-timing-function     : cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .xl\:duration-75{
    transition-duration     : 75ms !important;
  }

  .xl\:duration-100{
    transition-duration     : 100ms !important;
  }

  .xl\:duration-150{
    transition-duration     : 150ms !important;
  }

  .xl\:duration-200{
    transition-duration     : 200ms !important;
  }

  .xl\:duration-300{
    transition-duration     : 300ms !important;
  }

  .xl\:duration-500{
    transition-duration     : 500ms !important;
  }

  .xl\:duration-700{
    transition-duration     : 700ms !important;
  }

  .xl\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .group:hover .xl\:group-hover\:duration-75{
    transition-duration     : 75ms !important;
  }

  .group:hover .xl\:group-hover\:duration-100{
    transition-duration     : 100ms !important;
  }

  .group:hover .xl\:group-hover\:duration-150{
    transition-duration     : 150ms !important;
  }

  .group:hover .xl\:group-hover\:duration-200{
    transition-duration     : 200ms !important;
  }

  .group:hover .xl\:group-hover\:duration-300{
    transition-duration     : 300ms !important;
  }

  .group:hover .xl\:group-hover\:duration-500{
    transition-duration     : 500ms !important;
  }

  .group:hover .xl\:group-hover\:duration-700{
    transition-duration     : 700ms !important;
  }

  .group:hover .xl\:group-hover\:duration-1000{
    transition-duration     : 1000ms !important;
  }

  .xl\:hover\:duration-75:hover{
    transition-duration     : 75ms !important;
  }

  .xl\:hover\:duration-100:hover{
    transition-duration     : 100ms !important;
  }

  .xl\:hover\:duration-150:hover{
    transition-duration     : 150ms !important;
  }

  .xl\:hover\:duration-200:hover{
    transition-duration     : 200ms !important;
  }

  .xl\:hover\:duration-300:hover{
    transition-duration     : 300ms !important;
  }

  .xl\:hover\:duration-500:hover{
    transition-duration     : 500ms !important;
  }

  .xl\:hover\:duration-700:hover{
    transition-duration     : 700ms !important;
  }

  .xl\:hover\:duration-1000:hover{
    transition-duration     : 1000ms !important;
  }

  .xl\:focus\:duration-75:focus{
    transition-duration     : 75ms !important;
  }

  .xl\:focus\:duration-100:focus{
    transition-duration     : 100ms !important;
  }

  .xl\:focus\:duration-150:focus{
    transition-duration     : 150ms !important;
  }

  .xl\:focus\:duration-200:focus{
    transition-duration     : 200ms !important;
  }

  .xl\:focus\:duration-300:focus{
    transition-duration     : 300ms !important;
  }

  .xl\:focus\:duration-500:focus{
    transition-duration     : 500ms !important;
  }

  .xl\:focus\:duration-700:focus{
    transition-duration     : 700ms !important;
  }

  .xl\:focus\:duration-1000:focus{
    transition-duration     : 1000ms !important;
  }

  .xl\:delay-75{
    transition-delay     : 75ms !important;
  }

  .xl\:delay-100{
    transition-delay     : 100ms !important;
  }

  .xl\:delay-150{
    transition-delay     : 150ms !important;
  }

  .xl\:delay-200{
    transition-delay     : 200ms !important;
  }

  .xl\:delay-300{
    transition-delay     : 300ms !important;
  }

  .xl\:delay-500{
    transition-delay     : 500ms !important;
  }

  .xl\:delay-700{
    transition-delay     : 700ms !important;
  }

  .xl\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .group:hover .xl\:group-hover\:delay-75{
    transition-delay     : 75ms !important;
  }

  .group:hover .xl\:group-hover\:delay-100{
    transition-delay     : 100ms !important;
  }

  .group:hover .xl\:group-hover\:delay-150{
    transition-delay     : 150ms !important;
  }

  .group:hover .xl\:group-hover\:delay-200{
    transition-delay     : 200ms !important;
  }

  .group:hover .xl\:group-hover\:delay-300{
    transition-delay     : 300ms !important;
  }

  .group:hover .xl\:group-hover\:delay-500{
    transition-delay     : 500ms !important;
  }

  .group:hover .xl\:group-hover\:delay-700{
    transition-delay     : 700ms !important;
  }

  .group:hover .xl\:group-hover\:delay-1000{
    transition-delay     : 1000ms !important;
  }

  .xl\:hover\:delay-75:hover{
    transition-delay     : 75ms !important;
  }

  .xl\:hover\:delay-100:hover{
    transition-delay     : 100ms !important;
  }

  .xl\:hover\:delay-150:hover{
    transition-delay     : 150ms !important;
  }

  .xl\:hover\:delay-200:hover{
    transition-delay     : 200ms !important;
  }

  .xl\:hover\:delay-300:hover{
    transition-delay     : 300ms !important;
  }

  .xl\:hover\:delay-500:hover{
    transition-delay     : 500ms !important;
  }

  .xl\:hover\:delay-700:hover{
    transition-delay     : 700ms !important;
  }

  .xl\:hover\:delay-1000:hover{
    transition-delay     : 1000ms !important;
  }

  .xl\:focus\:delay-75:focus{
    transition-delay     : 75ms !important;
  }

  .xl\:focus\:delay-100:focus{
    transition-delay     : 100ms !important;
  }

  .xl\:focus\:delay-150:focus{
    transition-delay     : 150ms !important;
  }

  .xl\:focus\:delay-200:focus{
    transition-delay     : 200ms !important;
  }

  .xl\:focus\:delay-300:focus{
    transition-delay     : 300ms !important;
  }

  .xl\:focus\:delay-500:focus{
    transition-delay     : 500ms !important;
  }

  .xl\:focus\:delay-700:focus{
    transition-delay     : 700ms !important;
  }

  .xl\:focus\:delay-1000:focus{
    transition-delay     : 1000ms !important;
  }

  .xl\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .xl\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .xl\: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;
  }

  .xl\: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;
  }

  .xl\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .group:hover .xl\:group-hover\:animate-none{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .group:hover .xl\:group-hover\:animate-spin{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\: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;
  }

  .group:hover .xl\:group-hover\:animate-bounce{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .xl\:hover\:animate-none:hover{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .xl\:hover\:animate-spin:hover{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .xl\:hover\:animate-ping:hover{
    -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;
  }

  .xl\:hover\:animate-pulse:hover{
    -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;
  }

  .xl\:hover\:animate-bounce:hover{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }

  .xl\:focus\:animate-none:focus{
    -webkit-animation     : none !important;
            animation     : none !important;
  }

  .xl\:focus\:animate-spin:focus{
    -webkit-animation     : spin 1s linear infinite !important;
            animation     : spin 1s linear infinite !important;
  }

  .xl\:focus\:animate-ping:focus{
    -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;
  }

  .xl\:focus\:animate-pulse:focus{
    -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;
  }

  .xl\:focus\:animate-bounce:focus{
    -webkit-animation     : bounce 1s infinite !important;
            animation     : bounce 1s infinite !important;
  }
}